Enum Class XmlToken

java.lang.Object
java.lang.Enum<XmlToken>
us.irdev.bedrock.bag.scanner.XmlToken
All Implemented Interfaces:
Serializable, Comparable<XmlToken>, Constable

public enum XmlToken extends Enum<XmlToken>
  • Enum Constant Details

    • ERROR

      public static final XmlToken ERROR
    • WHITESPACE

      public static final XmlToken WHITESPACE
    • CONTENT

      public static final XmlToken CONTENT
    • BEGIN_OPEN_ELEMENT

      public static final XmlToken BEGIN_OPEN_ELEMENT
    • OPEN_ELEMENT_NAME

      public static final XmlToken OPEN_ELEMENT_NAME
    • END_OPEN_ELEMENT

      public static final XmlToken END_OPEN_ELEMENT
    • ATTRIBUTE_NAME

      public static final XmlToken ATTRIBUTE_NAME
    • ATTRIBUTE_EQ

      public static final XmlToken ATTRIBUTE_EQ
    • ATTRIBUTE_VALUE

      public static final XmlToken ATTRIBUTE_VALUE
    • OPEN_QUOTE

      public static final XmlToken OPEN_QUOTE
    • CLOSE_QUOTE

      public static final XmlToken CLOSE_QUOTE
    • BEGIN_CLOSE_ELEMENT

      public static final XmlToken BEGIN_CLOSE_ELEMENT
    • CLOSE_ELEMENT_NAME

      public static final XmlToken CLOSE_ELEMENT_NAME
    • CLOSE_ELEMENT_ANONYMOUS

      public static final XmlToken CLOSE_ELEMENT_ANONYMOUS
    • END_CLOSE_ELEMENT

      public static final XmlToken END_CLOSE_ELEMENT
    • EMPTY_ELEMENT

      public static final XmlToken EMPTY_ELEMENT
    • PROLOG

      public static final XmlToken PROLOG
    • DECL

      public static final XmlToken DECL
    • COMMENT

      public static final XmlToken COMMENT
  • Method Details

    • values

      public static XmlToken[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static XmlToken valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null