Enum Class XmlState

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

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

    • START

      public static final XmlState START
    • ERROR

      public static final XmlState ERROR
    • CONTENT

      public static final XmlState CONTENT
    • BEGIN_OPEN_ELEMENT

      public static final XmlState BEGIN_OPEN_ELEMENT
    • OPEN_ELEMENT

      public static final XmlState OPEN_ELEMENT
    • OPEN_ELEMENT_NAME

      public static final XmlState OPEN_ELEMENT_NAME
    • END_OPEN_ELEMENT

      public static final XmlState END_OPEN_ELEMENT
    • CLOSE_ELEMENT

      public static final XmlState CLOSE_ELEMENT
    • CLOSE_ELEMENT_NAME

      public static final XmlState CLOSE_ELEMENT_NAME
    • END_CLOSE_ELEMENT

      public static final XmlState END_CLOSE_ELEMENT
    • EMPTY_ELEMENT

      public static final XmlState EMPTY_ELEMENT
    • ATTRIBUTE_NAME

      public static final XmlState ATTRIBUTE_NAME
    • ATTRIBUTE_EQ

      public static final XmlState ATTRIBUTE_EQ
    • END_ATTRIBUTE_EQ

      public static final XmlState END_ATTRIBUTE_EQ
    • ATTRIBUTE_SINGLE_QUOTE_BODY

      public static final XmlState ATTRIBUTE_SINGLE_QUOTE_BODY
    • ATTRIBUTE_CLOSE_SINGLE_QUOTE

      public static final XmlState ATTRIBUTE_CLOSE_SINGLE_QUOTE
    • ATTRIBUTE_DOUBLE_QUOTE_BODY

      public static final XmlState ATTRIBUTE_DOUBLE_QUOTE_BODY
    • ATTRIBUTE_CLOSE_DOUBLE_QUOTE

      public static final XmlState ATTRIBUTE_CLOSE_DOUBLE_QUOTE
    • PROLOG

      public static final XmlState PROLOG
    • END_PROLOG

      public static final XmlState END_PROLOG
    • DECL_START

      public static final XmlState DECL_START
    • DECL_BODY

      public static final XmlState DECL_BODY
    • COMMENT_2

      public static final XmlState COMMENT_2
    • COMMENT_BODY

      public static final XmlState COMMENT_BODY
    • COMMENT_4

      public static final XmlState COMMENT_4
    • COMMENT_5

      public static final XmlState COMMENT_5
  • Method Details

    • values

      public static XmlState[] 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 XmlState 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