public enum EBXType extends Enum<EBXType>
| Enum Constant and Description |
|---|
ASSOCIATION |
COMPLEX |
DATA_TYPE |
DATA_VALUE |
DOMAIN |
FIELD |
GROUP_FIELD |
NOT_EBX |
TABLE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isAssociation()
Returns
true if the Logical data type is Association. |
boolean |
isComplexType()
Returns
true if the Logical data type is COMPLEX. |
boolean |
isDataType()
Returns
true if the Logical data type is DATA TYPE. |
boolean |
isDataValue()
Returns
true if the Logical data type is DATA VALUE. |
boolean |
isDomain()
Returns
true if the Logical data type is DOMAIN. |
boolean |
isField()
Returns
true if the Logical data type is FIELD. |
boolean |
isGroupField()
Returns
true if the Logical data type is GROUP OF FIELD. |
boolean |
isNotEBX()
Returns
true if the Logical data type is NotEBX. |
boolean |
isTable()
Returns
true if the Logical data type is TABLE. |
static EBXType |
parse(String value)
Returns the Logical data type instance corresponding to the value specified.
|
String |
toString()
Returns the
String value of the Logical data type. |
static EBXType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EBXType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EBXType TABLE
public static final EBXType FIELD
public static final EBXType GROUP_FIELD
public static final EBXType COMPLEX
public static final EBXType DOMAIN
public static final EBXType DATA_TYPE
public static final EBXType DATA_VALUE
public static final EBXType ASSOCIATION
public static final EBXType NOT_EBX
public static EBXType[] values()
for (EBXType c : EBXType.values()) System.out.println(c);
public static EBXType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static EBXType parse(String value)
public boolean isTable()
true if the Logical data type is TABLE.public boolean isField()
true if the Logical data type is FIELD.public boolean isGroupField()
true if the Logical data type is GROUP OF FIELD.public boolean isComplexType()
true if the Logical data type is COMPLEX.public boolean isDomain()
true if the Logical data type is DOMAIN.public boolean isDataType()
true if the Logical data type is DATA TYPE.public boolean isDataValue()
true if the Logical data type is DATA VALUE.public boolean isAssociation()
true if the Logical data type is Association.public boolean isNotEBX()
true if the Logical data type is NotEBX.