net.aethersanctum.curlyml
Enum Scanner.Token

java.lang.Object
  extended by java.lang.Enum<Scanner.Token>
      extended by net.aethersanctum.curlyml.Scanner.Token
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Scanner.Token>
Enclosing class:
Scanner

public static enum Scanner.Token
extends java.lang.Enum<Scanner.Token>

types of tokens we are interested in.


Enum Constant Summary
CLOSE_CURLY
           
EOF
           
ERROR
           
OPEN_CURLY
           
QUOTED_STRING
           
WORD
           
 
Method Summary
static Scanner.Token valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Scanner.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

OPEN_CURLY

public static final Scanner.Token OPEN_CURLY

CLOSE_CURLY

public static final Scanner.Token CLOSE_CURLY

WORD

public static final Scanner.Token WORD

QUOTED_STRING

public static final Scanner.Token QUOTED_STRING

ERROR

public static final Scanner.Token ERROR

EOF

public static final Scanner.Token EOF
Method Detail

values

public static final Scanner.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(Scanner.Token c : Scanner.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 Scanner.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