org.eclipse.gmf.mappings
Enum Language

java.lang.Object
  extended by java.lang.Enum<Language>
      extended by org.eclipse.gmf.mappings.Language
All Implemented Interfaces:
Serializable, Comparable<Language>, org.eclipse.emf.common.util.Enumerator

public enum Language
extends Enum<Language>
implements org.eclipse.emf.common.util.Enumerator

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

See Also:
GMFMapPackage.getLanguage()
Generated
Model Properties:

Enum Constant Summary
JAVA_LITERAL
          The 'Java' literal object.
LITERAL_LITERAL
          The 'Literal' literal object.
NREGEXP_LITERAL
          The 'Nregexp' literal object.
OCL_LITERAL
          The 'Ocl' literal object.
REGEXP_LITERAL
          The 'Regexp' literal object.
 
Field Summary
static int JAVA
          The 'Java' literal value.
static int LITERAL
          The 'Literal' literal value.
static int NREGEXP
          The 'Nregexp' literal value.
static int OCL
          The 'Ocl' literal value.
static int REGEXP
          The 'Regexp' literal value.
static List<Language> VALUES
          A public read-only list of all the 'Language' enumerators.
 
Method Summary
static Language get(int value)
          Returns the 'Language' literal with the specified integer value.
static Language get(String literal)
          Returns the 'Language' literal with the specified literal value.
static Language getByName(String name)
          Returns the 'Language' 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 Language valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Language[] 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

OCL_LITERAL

public static final Language OCL_LITERAL
The 'Ocl' literal object.

See Also:
OCL
Generated
Ordered

JAVA_LITERAL

public static final Language JAVA_LITERAL
The 'Java' literal object.

See Also:
JAVA
Generated
Ordered

REGEXP_LITERAL

public static final Language REGEXP_LITERAL
The 'Regexp' literal object.

See Also:
REGEXP
Generated
Ordered

NREGEXP_LITERAL

public static final Language NREGEXP_LITERAL
The 'Nregexp' literal object.

See Also:
NREGEXP
Generated
Ordered

LITERAL_LITERAL

public static final Language LITERAL_LITERAL
The 'Literal' literal object.

See Also:
LITERAL
Generated
Ordered
Field Detail

OCL

public static final int OCL
The 'Ocl' literal value.

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

See Also:
OCL_LITERAL, Constant Field Values
Generated
Ordered
Model Properties:
name="ocl"

JAVA

public static final int JAVA
The 'Java' literal value.

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

See Also:
JAVA_LITERAL, Constant Field Values
Generated
Ordered
Model Properties:
name="java"

REGEXP

public static final int REGEXP
The 'Regexp' literal value.

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

See Also:
REGEXP_LITERAL, Constant Field Values
Generated
Ordered
Model Properties:
name="regexp"

NREGEXP

public static final int NREGEXP
The 'Nregexp' literal value.

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

See Also:
NREGEXP_LITERAL, Constant Field Values
Generated
Ordered
Model Properties:
name="nregexp"

LITERAL

public static final int LITERAL
The 'Literal' literal value.

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

See Also:
LITERAL_LITERAL, Constant Field Values
Generated
Ordered
Model Properties:
name="literal"

VALUES

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

Generated
Method Detail

values

public static Language[] 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 (Language c : Language.values())
    System.out.println(c);

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

valueOf

public static Language 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 Language get(String literal)
Returns the 'Language' literal with the specified literal value.

Generated

getByName

public static Language getByName(String name)
Returns the 'Language' literal with the specified name.

Generated

get

public static Language get(int value)
Returns the 'Language' literal with the specified integer value.

Generated

getValue

public int getValue()

Specified by:
getValue in interface org.eclipse.emf.common.util.Enumerator
Generated

getName

public String getName()

Specified by:
getName in interface org.eclipse.emf.common.util.Enumerator
Generated

getLiteral

public String getLiteral()

Specified by:
getLiteral in interface org.eclipse.emf.common.util.Enumerator
Generated

toString

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

Overrides:
toString in class Enum<Language>
Generated


Copyright © 2012. All Rights Reserved.