de.java2html.javasource
Enum ParseState

java.lang.Object
  extended by java.lang.Enum<ParseState>
      extended by de.java2html.javasource.ParseState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ParseState>

public enum ParseState
extends java.lang.Enum<ParseState>


Enum Constant Summary
CB
           
CBA
           
CBJ1
           
CBJ2
           
CH1
           
CH2
           
CH3
           
CH4
           
CH5
           
CH6
           
CJ
           
CJA
           
CL
           
COD
           
CODE_AWAIT_COMMENT
           
COMMENT
           
EXPONENT
           
FINISHED
           
HEXADECIMAL_CONSTANT
           
NEUTRAL
           
NUMERIC_CONSTANT
           
PARSESTATE_DA
           
QU
           
QUA
           
QUOTE
           
START
           
ZERO_EXPECTING_HEX
           
 
Method Summary
static ParseState valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ParseState[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FINISHED

public static final ParseState FINISHED

COD

public static final ParseState COD

CODE_AWAIT_COMMENT

public static final ParseState CODE_AWAIT_COMMENT

COMMENT

public static final ParseState COMMENT

CL

public static final ParseState CL

CBJ1

public static final ParseState CBJ1

CBJ2

public static final ParseState CBJ2

CB

public static final ParseState CB

CBA

public static final ParseState CBA

CJ

public static final ParseState CJ

CJA

public static final ParseState CJA

QUOTE

public static final ParseState QUOTE

QU

public static final ParseState QU

QUA

public static final ParseState QUA

CH1

public static final ParseState CH1

CH2

public static final ParseState CH2

CH3

public static final ParseState CH3

CH4

public static final ParseState CH4

CH5

public static final ParseState CH5

CH6

public static final ParseState CH6

START

public static final ParseState START

NEUTRAL

public static final ParseState NEUTRAL

PARSESTATE_DA

public static final ParseState PARSESTATE_DA

NUMERIC_CONSTANT

public static final ParseState NUMERIC_CONSTANT

EXPONENT

public static final ParseState EXPONENT

HEXADECIMAL_CONSTANT

public static final ParseState HEXADECIMAL_CONSTANT

ZERO_EXPECTING_HEX

public static final ParseState ZERO_EXPECTING_HEX
Method Detail

values

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

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

valueOf

public static ParseState 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


Copyright © 2003 - 2006