public enum EDIFValueType extends Enum<EDIFValueType>
| Modifier and Type | Field and Description |
|---|---|
static EDIFValueType[] |
values |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static EDIFValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EDIFValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EDIFValueType STRING
public static final EDIFValueType INTEGER
public static final EDIFValueType BOOLEAN
public static final EDIFValueType[] values
public static EDIFValueType[] values()
for (EDIFValueType c : EDIFValueType.values()) System.out.println(c);
public static EDIFValueType 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 String toString()
toString in class Enum<EDIFValueType>