org.eclipse.xtext.util.formallang
Enum StringProduction.Token

java.lang.Object
  extended by java.lang.Enum<StringProduction.Token>
      extended by org.eclipse.xtext.util.formallang.StringProduction.Token
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StringProduction.Token>
Enclosing class:
StringProduction

protected static enum StringProduction.Token
extends java.lang.Enum<StringProduction.Token>


Enum Constant Summary
AND
           
COLON
           
EQ
           
ID
           
PIPE
           
PL
           
PLUS
           
PR
           
QM
           
STAR
           
STRING
           
 
Field Summary
 java.util.regex.Pattern pattern
           
 
Method Summary
static StringProduction.Token valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StringProduction.Token[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AND

public static final StringProduction.Token AND

COLON

public static final StringProduction.Token COLON

EQ

public static final StringProduction.Token EQ

ID

public static final StringProduction.Token ID

PIPE

public static final StringProduction.Token PIPE

PL

public static final StringProduction.Token PL

PLUS

public static final StringProduction.Token PLUS

PR

public static final StringProduction.Token PR

QM

public static final StringProduction.Token QM

STAR

public static final StringProduction.Token STAR

STRING

public static final StringProduction.Token STRING
Field Detail

pattern

public final java.util.regex.Pattern pattern
Method Detail

values

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

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

valueOf

public static StringProduction.Token valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name