public enum XSDIdentityConstraintCategory extends java.lang.Enum<XSDIdentityConstraintCategory> implements Enumerator
Enum Constant and Description |
---|
KEY_LITERAL
The 'Key' literal object.
|
KEYREF_LITERAL
The 'Keyref' literal object.
|
UNIQUE_LITERAL
The 'Unique' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
KEY
The 'Key' literal value.
|
static int |
KEYREF
The 'Keyref' literal value.
|
static int |
UNIQUE
The 'Unique' literal value.
|
static java.util.List<XSDIdentityConstraintCategory> |
VALUES
A public read-only list of all the 'Identity Constraint Category' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static XSDIdentityConstraintCategory |
get(int value)
Returns the 'Identity Constraint Category' literal with the specified integer value.
|
static XSDIdentityConstraintCategory |
get(java.lang.String literal)
Returns the 'Identity Constraint Category' literal with the specified literal value.
|
static XSDIdentityConstraintCategory |
getByName(java.lang.String name)
Returns the 'Identity Constraint Category' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static XSDIdentityConstraintCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XSDIdentityConstraintCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XSDIdentityConstraintCategory KEY_LITERAL
KEY
public static final XSDIdentityConstraintCategory KEYREF_LITERAL
KEYREF
public static final XSDIdentityConstraintCategory UNIQUE_LITERAL
UNIQUE
public static final int KEY
This is used to indicate that an identity constraint definition is a key.
KEY_LITERAL
,
Constant Field Valuespublic static final int KEYREF
This is used to indicate that an identity constraint definition is a keyRef.
KEYREF_LITERAL
,
Constant Field Valuespublic static final int UNIQUE
This is used to indicate that an identity constraint definition is a unique.
UNIQUE_LITERAL
,
Constant Field Valuespublic static final java.util.List<XSDIdentityConstraintCategory> VALUES
public static XSDIdentityConstraintCategory[] values()
for (XSDIdentityConstraintCategory c : XSDIdentityConstraintCategory.values()) System.out.println(c);
public static XSDIdentityConstraintCategory valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static XSDIdentityConstraintCategory get(java.lang.String literal)
public static XSDIdentityConstraintCategory getByName(java.lang.String name)
public static XSDIdentityConstraintCategory get(int value)
public int getValue()
getValue
in interface Enumerator
public java.lang.String getName()
getName
in interface Enumerator
public java.lang.String getLiteral()
getLiteral
in interface Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<XSDIdentityConstraintCategory>