public enum TokenType extends Enum<TokenType>
Modifier and Type | Method and Description |
---|---|
static TokenType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TokenType StartCommentTag
public static final TokenType Comment
public static final TokenType EndCommentTag
public static final TokenType CDATATagOpen
public static final TokenType CDATAContent
public static final TokenType CDATATagClose
public static final TokenType StartTagOpen
public static final TokenType StartTagClose
public static final TokenType StartTagSelfClose
public static final TokenType StartTag
public static final TokenType EndTagOpen
public static final TokenType EndTagClose
public static final TokenType EndTag
public static final TokenType DelimiterAssign
public static final TokenType AttributeName
public static final TokenType AttributeValue
public static final TokenType StartPrologOrPI
public static final TokenType PrologName
public static final TokenType PIName
public static final TokenType PIContent
public static final TokenType PIEnd
public static final TokenType PrologEnd
public static final TokenType Content
public static final TokenType Whitespace
public static final TokenType Unknown
public static final TokenType EOS
public static final TokenType DTDStartDoctypeTag
public static final TokenType DTDDoctypeName
public static final TokenType DTDDocTypeKindPUBLIC
public static final TokenType DTDDocTypeKindSYSTEM
public static final TokenType DTDDoctypePublicId
public static final TokenType DTDDoctypeSystemId
public static final TokenType DTDEndDoctypeTag
public static final TokenType DTDStartInternalSubset
public static final TokenType DTDEndInternalSubset
public static final TokenType DTDStartElement
public static final TokenType DTDElementDeclName
public static final TokenType DTDElementCategory
public static final TokenType DTDStartElementContent
public static final TokenType DTDElementContent
public static final TokenType DTDEndElementContent
public static final TokenType DTDStartAttlist
public static final TokenType DTDAttlistElementName
public static final TokenType DTDAttlistAttributeValue
public static final TokenType DTDAttlistAttributeType
public static final TokenType DTDAttlistAttributeName
public static final TokenType DTDStartEntity
public static final TokenType DTDEntityPercent
public static final TokenType DTDEntityKindPUBLIC
public static final TokenType DTDEntityKindSYSTEM
public static final TokenType DTDEntityPublicId
public static final TokenType DTDEntitySystemId
public static final TokenType DTDEntityName
public static final TokenType DTDEntityValue
public static final TokenType DTDStartNotation
public static final TokenType DTDNotationName
public static final TokenType DTDNotationKindPUBLIC
public static final TokenType DTDNotationKindSYSTEM
public static final TokenType DTDNotationPublicId
public static final TokenType DTDNotationSystemId
public static final TokenType DTDUnrecognizedParameters
public static final TokenType DTDEndTag
public static TokenType[] values()
for (TokenType c : TokenType.values()) System.out.println(c);
public static TokenType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.