Enum Class JXEXInclude

java.lang.Object
java.lang.Enum<JXEXInclude>
com.io7m.jxe.core.JXEXInclude
All Implemented Interfaces:
Serializable, Comparable<JXEXInclude>, Constable

public enum JXEXInclude extends Enum<JXEXInclude>
A specification of whether or not XInclude should be enabled for parsers.
  • Enum Constant Details

    • XINCLUDE_ENABLED

      public static final JXEXInclude XINCLUDE_ENABLED
      XInclude is enabled.
    • XINCLUDE_DISABLED

      public static final JXEXInclude XINCLUDE_DISABLED
      XInclude is not enabled.
  • Method Details

    • values

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