org.openstreetmap.josm.actions.search
Enum PushbackTokenizer.Token

java.lang.Object
  extended by java.lang.Enum<PushbackTokenizer.Token>
      extended by org.openstreetmap.josm.actions.search.PushbackTokenizer.Token
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PushbackTokenizer.Token>
Enclosing class:
PushbackTokenizer

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


Enum Constant Summary
COLON
           
EOF
           
EQUALS
           
KEY
           
LEFT_PARENT
           
NOT
           
OR
           
QUESTION_MARK
           
RIGHT_PARENT
           
XOR
           
 
Field Summary
private  java.lang.String name
           
 
Method Summary
 java.lang.String toString()
           
static PushbackTokenizer.Token valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PushbackTokenizer.Token[] 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

NOT

public static final PushbackTokenizer.Token NOT

OR

public static final PushbackTokenizer.Token OR

XOR

public static final PushbackTokenizer.Token XOR

LEFT_PARENT

public static final PushbackTokenizer.Token LEFT_PARENT

RIGHT_PARENT

public static final PushbackTokenizer.Token RIGHT_PARENT

COLON

public static final PushbackTokenizer.Token COLON

EQUALS

public static final PushbackTokenizer.Token EQUALS

KEY

public static final PushbackTokenizer.Token KEY

QUESTION_MARK

public static final PushbackTokenizer.Token QUESTION_MARK

EOF

public static final PushbackTokenizer.Token EOF
Field Detail

name

private final java.lang.String name
Method Detail

values

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

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

valueOf

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

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<PushbackTokenizer.Token>


JOSM