|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TransformType>
net.ogdf.ogml.TransformType
public enum TransformType
A representation of the literals of the enumeration 'Transform Type', and utility methods for working with them.
OgmlPackage.getTransformType()
extendedMetaData | = | name='transform.type' |
Enum Constant Summary | |
---|---|
CAPITALIZE
The 'Capitalize' literal object. |
|
LOWERCASE
The 'Lowercase' literal object. |
|
NONE
The 'None' literal object. |
|
UPPERCASE
The 'Uppercase' literal object. |
Field Summary | |
---|---|
static int |
CAPITALIZE_VALUE
The 'Capitalize' literal value. |
static int |
LOWERCASE_VALUE
The 'Lowercase' literal value. |
static int |
NONE_VALUE
The 'None' literal value. |
static int |
UPPERCASE_VALUE
The 'Uppercase' literal value. |
static List<TransformType> |
VALUES
A public read-only list of all the 'Transform Type' enumerators. |
Method Summary | |
---|---|
static TransformType |
get(int value)
Returns the 'Transform Type' literal with the specified integer value. |
static TransformType |
get(String literal)
Returns the 'Transform Type' literal with the specified literal value. |
static TransformType |
getByName(String name)
Returns the 'Transform 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 TransformType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TransformType[] |
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 TransformType CAPITALIZE
CAPITALIZE_VALUE
public static final TransformType UPPERCASE
UPPERCASE_VALUE
public static final TransformType LOWERCASE
LOWERCASE_VALUE
public static final TransformType NONE
NONE_VALUE
Field Detail |
---|
public static final int CAPITALIZE_VALUE
If the meaning of 'Capitalize' literal object isn't clear, there really should be more of a description here...
CAPITALIZE
,
Constant Field Valuesname | = | capitalize |
public static final int UPPERCASE_VALUE
If the meaning of 'Uppercase' literal object isn't clear, there really should be more of a description here...
UPPERCASE
,
Constant Field Valuesname | = | uppercase |
public static final int LOWERCASE_VALUE
If the meaning of 'Lowercase' literal object isn't clear, there really should be more of a description here...
LOWERCASE
,
Constant Field Valuesname | = | lowercase |
public static final int NONE_VALUE
If the meaning of 'None' literal object isn't clear, there really should be more of a description here...
NONE
,
Constant Field Valuesname | = | none |
public static final List<TransformType> VALUES
Method Detail |
---|
public static TransformType[] values()
for (TransformType c : TransformType.values()) System.out.println(c);
public static TransformType 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 TransformType get(String literal)
public static TransformType getByName(String name)
public static TransformType 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<TransformType>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |