public static enum Attribute.PersistentAttributeType extends java.lang.Enum<Attribute.PersistentAttributeType>
列挙型定数と説明 |
---|
BASIC
基本属性
|
ELEMENT_COLLECTION
要素コレクション
|
EMBEDDED
組み込み型属性
|
MANY_TO_MANY
多対多関連
|
MANY_TO_ONE
多対1関連
|
ONE_TO_MANY
1対多関連
|
ONE_TO_ONE
1対1関連
|
修飾子とタイプ | メソッドと説明 |
---|---|
static Attribute.PersistentAttributeType |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static Attribute.PersistentAttributeType[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final Attribute.PersistentAttributeType MANY_TO_ONE
public static final Attribute.PersistentAttributeType ONE_TO_ONE
public static final Attribute.PersistentAttributeType BASIC
public static final Attribute.PersistentAttributeType EMBEDDED
public static final Attribute.PersistentAttributeType MANY_TO_MANY
public static final Attribute.PersistentAttributeType ONE_TO_MANY
public static final Attribute.PersistentAttributeType ELEMENT_COLLECTION
public static Attribute.PersistentAttributeType[] values()
for(Attribute.PersistentAttributeType c: Attribute.PersistentAttributeType.values()) System.out.println(c);
public static Attribute.PersistentAttributeType valueOf(java.lang.String name)
name
- 返される列挙型定数の名前。java.lang.IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException
- 引数がnullの場合Translated by @megascus.