Package org.w3._2001.schema
Enum UseType
-
- All Implemented Interfaces:
Serializable,Comparable<UseType>,Enumerator
public enum UseType extends Enum<UseType> implements Enumerator
A representation of the literals of the enumeration 'Use Type', and utility methods for working with them.- See Also:
SchemaPackage.getUseType()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OPTIONALThe 'Optional' literal object.PROHIBITEDThe 'Prohibited' literal object.REQUIREDThe 'Required' literal object.
-
Field Summary
Fields Modifier and Type Field Description static intOPTIONAL_VALUEThe 'Optional' literal value.static intPROHIBITED_VALUEThe 'Prohibited' literal value.static intREQUIRED_VALUEThe 'Required' literal value.static List<UseType>VALUESA public read-only list of all the 'Use Type' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UseTypeget(int value)Returns the 'Use Type' literal with the specified integer value.static UseTypeget(String literal)Returns the 'Use Type' literal with the specified literal value.static UseTypegetByName(String name)Returns the 'Use Type' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static UseTypevalueOf(String name)Returns the enum constant of this type with the specified name.static UseType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROHIBITED
public static final UseType PROHIBITED
The 'Prohibited' literal object.- See Also:
PROHIBITED_VALUE
-
OPTIONAL
public static final UseType OPTIONAL
The 'Optional' literal object.- See Also:
OPTIONAL_VALUE
-
REQUIRED
public static final UseType REQUIRED
The 'Required' literal object.- See Also:
REQUIRED_VALUE
-
-
Field Detail
-
PROHIBITED_VALUE
public static final int PROHIBITED_VALUE
The 'Prohibited' literal value.- See Also:
PROHIBITED, Constant Field Values
-
OPTIONAL_VALUE
public static final int OPTIONAL_VALUE
The 'Optional' literal value.- See Also:
OPTIONAL, Constant Field Values
-
REQUIRED_VALUE
public static final int REQUIRED_VALUE
The 'Required' literal value.- See Also:
REQUIRED, Constant Field Values
-
-
Method Detail
-
values
public static UseType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UseType c : UseType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UseType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
get
public static UseType get(String literal)
Returns the 'Use Type' literal with the specified literal value.- Parameters:
literal- the literal.- Returns:
- the matching enumerator or
null.
-
getByName
public static UseType getByName(String name)
Returns the 'Use Type' literal with the specified name.- Parameters:
name- the name.- Returns:
- the matching enumerator or
null.
-
get
public static UseType get(int value)
Returns the 'Use Type' literal with the specified integer value.- Parameters:
value- the integer value.- Returns:
- the matching enumerator or
null.
-
getValue
public int getValue()
- Specified by:
getValuein interfaceEnumerator
-
getName
public String getName()
- Specified by:
getNamein interfaceEnumerator
-
getLiteral
public String getLiteral()
- Specified by:
getLiteralin interfaceEnumerator
-
-