Class Attribute.Use.Enum

  • All Implemented Interfaces:
    java.io.Serializable
    Enclosing interface:
    Attribute.Use

    public static final class Attribute.Use.Enum
    extends StringEnumAbstractBase
    Enumeration value class for org.apache.xmlbeans.impl.xb.xsdschema.Attribute$Use. These enum values can be used as follows:
     enum.toString(); // returns the string value of the enum
     enum.intValue(); // returns an int value, useful for switches
     // e.g., case Enum.INT_PROHIBITED
     Enum.forString(s); // returns the enum value for a string
     Enum.forInt(i); // returns the enum value for an int
     
    Enumeration objects are immutable singleton objects that can be compared using == object equality. They have no public constructor. See the constants defined within this class for all the valid values.
    See Also:
    Serialized Form
    • Method Detail

      • forString

        public static Attribute.Use.Enum forString​(java.lang.String s)
        Returns the enum value for a string, or null if none.
      • forInt

        public static Attribute.Use.Enum forInt​(int i)
        Returns the enum value corresponding to an int, or null if none.