com.springsource.bundlor.support.propertysubstitution
Enum Token.TokenKind

java.lang.Object
  extended by java.lang.Enum<Token.TokenKind>
      extended by com.springsource.bundlor.support.propertysubstitution.Token.TokenKind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Token.TokenKind>
Enclosing class:
Token

static enum Token.TokenKind
extends java.lang.Enum<Token.TokenKind>


Enum Constant Summary
COMMA
           
DOT
           
ENDEXCLUSIVE
           
ENDINCLUSIVE
           
EQUALS
           
NEGATIVENUMBER
           
NUMBER
           
PLUSNUMBER
           
STARTEXCLUSIVE
           
STARTINCLUSIVE
           
WORD
           
 
Method Summary
static Token.TokenKind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Token.TokenKind[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DOT

public static final Token.TokenKind DOT

EQUALS

public static final Token.TokenKind EQUALS

COMMA

public static final Token.TokenKind COMMA

WORD

public static final Token.TokenKind WORD

NUMBER

public static final Token.TokenKind NUMBER

PLUSNUMBER

public static final Token.TokenKind PLUSNUMBER

NEGATIVENUMBER

public static final Token.TokenKind NEGATIVENUMBER

STARTINCLUSIVE

public static final Token.TokenKind STARTINCLUSIVE

ENDINCLUSIVE

public static final Token.TokenKind ENDINCLUSIVE

STARTEXCLUSIVE

public static final Token.TokenKind STARTEXCLUSIVE

ENDEXCLUSIVE

public static final Token.TokenKind ENDEXCLUSIVE
Method Detail

values

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

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

valueOf

public static Token.TokenKind 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
java.lang.NullPointerException - if the argument is null