public enum XSDProcessContents extends java.lang.Enum<XSDProcessContents> implements Enumerator
Enum Constant and Description |
---|
LAX_LITERAL
The 'Lax' literal object.
|
SKIP_LITERAL
The 'Skip' literal object.
|
STRICT_LITERAL
The 'Strict' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
LAX
The 'Lax' literal value.
|
static int |
SKIP
The 'Skip' literal value.
|
static int |
STRICT
The 'Strict' literal value.
|
static java.util.List<XSDProcessContents> |
VALUES
A public read-only list of all the 'Process Contents' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static XSDProcessContents |
get(int value)
Returns the 'Process Contents' literal with the specified integer value.
|
static XSDProcessContents |
get(java.lang.String literal)
Returns the 'Process Contents' literal with the specified literal value.
|
static XSDProcessContents |
getByName(java.lang.String name)
Returns the 'Process Contents' 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 XSDProcessContents |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XSDProcessContents[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XSDProcessContents STRICT_LITERAL
STRICT
public static final XSDProcessContents LAX_LITERAL
LAX
public static final XSDProcessContents SKIP_LITERAL
SKIP
public static final int STRICT
This is used to indicate that content must be strictly valid.
STRICT_LITERAL
,
Constant Field Valuespublic static final int LAX
This is used to indicate that content may be strictly valid but need not be.
LAX_LITERAL
,
Constant Field Valuespublic static final int SKIP
This is used to indicate that content is not validated at all.
SKIP_LITERAL
,
Constant Field Valuespublic static final java.util.List<XSDProcessContents> VALUES
public static XSDProcessContents[] values()
for (XSDProcessContents c : XSDProcessContents.values()) System.out.println(c);
public static XSDProcessContents 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 XSDProcessContents get(java.lang.String literal)
public static XSDProcessContents getByName(java.lang.String name)
public static XSDProcessContents 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<XSDProcessContents>