net.ogdf.ogml
Enum TransformType

java.lang.Object
  extended by java.lang.Enum<TransformType>
      extended by net.ogdf.ogml.TransformType
All Implemented Interfaces:
Comparable<TransformType>, Enumerator

public enum TransformType
extends Enum<TransformType>
implements Enumerator

A representation of the literals of the enumeration 'Transform Type', and utility methods for working with them.

See Also:
OgmlPackage.getTransformType()
Rating red
Generated:
This code was automatically generated.
Model element:
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

CAPITALIZE

public static final TransformType CAPITALIZE
The 'Capitalize' literal object.

See Also:
CAPITALIZE_VALUE
Generated:
This code was automatically generated.
Ordered

UPPERCASE

public static final TransformType UPPERCASE
The 'Uppercase' literal object.

See Also:
UPPERCASE_VALUE
Generated:
This code was automatically generated.
Ordered

LOWERCASE

public static final TransformType LOWERCASE
The 'Lowercase' literal object.

See Also:
LOWERCASE_VALUE
Generated:
This code was automatically generated.
Ordered

NONE

public static final TransformType NONE
The 'None' literal object.

See Also:
NONE_VALUE
Generated:
This code was automatically generated.
Ordered
Field Detail

CAPITALIZE_VALUE

public static final int CAPITALIZE_VALUE
The 'Capitalize' literal value.

If the meaning of 'Capitalize' literal object isn't clear, there really should be more of a description here...

See Also:
CAPITALIZE, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=capitalize
Ordered

UPPERCASE_VALUE

public static final int UPPERCASE_VALUE
The 'Uppercase' literal value.

If the meaning of 'Uppercase' literal object isn't clear, there really should be more of a description here...

See Also:
UPPERCASE, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=uppercase
Ordered

LOWERCASE_VALUE

public static final int LOWERCASE_VALUE
The 'Lowercase' literal value.

If the meaning of 'Lowercase' literal object isn't clear, there really should be more of a description here...

See Also:
LOWERCASE, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=lowercase
Ordered

NONE_VALUE

public static final int NONE_VALUE
The 'None' literal value.

If the meaning of 'None' literal object isn't clear, there really should be more of a description here...

See Also:
NONE, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=none
Ordered

VALUES

public static final List<TransformType> VALUES
A public read-only list of all the 'Transform Type' enumerators.

Generated:
This code was automatically generated.
Method Detail

values

public static TransformType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (TransformType c : TransformType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static TransformType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

get

public static TransformType get(String literal)
Returns the 'Transform Type' literal with the specified literal value.

Generated:
This code was automatically generated.

getByName

public static TransformType getByName(String name)
Returns the 'Transform Type' literal with the specified name.

Generated:
This code was automatically generated.

get

public static TransformType get(int value)
Returns the 'Transform Type' literal with the specified integer value.

Generated:
This code was automatically generated.

getValue

public int getValue()

Specified by:
getValue in interface Enumerator
Generated:
This code was automatically generated.

getName

public String getName()

Specified by:
getName in interface Enumerator
Generated:
This code was automatically generated.

getLiteral

public String getLiteral()

Specified by:
getLiteral in interface Enumerator
Generated:
This code was automatically generated.

toString

public String toString()
Returns the literal value of the enumerator, which is its string representation.

Overrides:
toString in class Enum<TransformType>
Generated:
This code was automatically generated.