public static enum ObjectField.RelationshipType extends java.lang.Enum<ObjectField.RelationshipType>
Enum Constant and Description |
---|
ONE_TO_MANY |
ONE_TO_ONE |
Modifier and Type | Method and Description |
---|---|
static ObjectField.RelationshipType |
create(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static ObjectField.RelationshipType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectField.RelationshipType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectField.RelationshipType ONE_TO_MANY
public static final ObjectField.RelationshipType ONE_TO_ONE
public static ObjectField.RelationshipType[] values()
for (ObjectField.RelationshipType c : ObjectField.RelationshipType.values()) System.out.println(c);
public static ObjectField.RelationshipType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ObjectField.RelationshipType create(java.lang.String value)
public java.lang.String getValue()
public java.lang.String toString()
toString
in class java.lang.Enum<ObjectField.RelationshipType>