|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<BoolTFType>
net.ogdf.ogml.BoolTFType
public enum BoolTFType
A representation of the literals of the enumeration 'Bool TF Type', and utility methods for working with them.
OgmlPackage.getBoolTFType()
extendedMetaData | = | name='boolTF.type' |
Enum Constant Summary | |
---|---|
FALSE
The 'False' literal object. |
|
TRUE
The 'True' literal object. |
Field Summary | |
---|---|
static int |
FALSE_VALUE
The 'False' literal value. |
static int |
TRUE_VALUE
The 'True' literal value. |
static List<BoolTFType> |
VALUES
A public read-only list of all the 'Bool TF Type' enumerators. |
Method Summary | |
---|---|
static BoolTFType |
get(int value)
Returns the 'Bool TF Type' literal with the specified integer value. |
static BoolTFType |
get(String literal)
Returns the 'Bool TF Type' literal with the specified literal value. |
static BoolTFType |
getByName(String name)
Returns the 'Bool TF Type' literal with the specified name. |
String |
getLiteral()
|
String |
getName()
|
int |
getValue()
|
String |
toString()
Returns the literal value of the enumerator, which is its string representation. |
static BoolTFType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static BoolTFType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final BoolTFType TRUE
TRUE_VALUE
public static final BoolTFType FALSE
FALSE_VALUE
Field Detail |
---|
public static final int TRUE_VALUE
If the meaning of 'True' literal object isn't clear, there really should be more of a description here...
TRUE
,
Constant Field Valuesname | = | true |
public static final int FALSE_VALUE
If the meaning of 'False' literal object isn't clear, there really should be more of a description here...
FALSE
,
Constant Field Valuesname | = | false |
public static final List<BoolTFType> VALUES
Method Detail |
---|
public static BoolTFType[] values()
for (BoolTFType c : BoolTFType.values()) System.out.println(c);
public static BoolTFType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static BoolTFType get(String literal)
public static BoolTFType getByName(String name)
public static BoolTFType get(int value)
public int getValue()
getValue
in interface Enumerator
public String getName()
getName
in interface Enumerator
public String getLiteral()
getLiteral
in interface Enumerator
public String toString()
toString
in class Enum<BoolTFType>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |