public enum XSDWhiteSpace extends java.lang.Enum<XSDWhiteSpace> implements Enumerator
Enum Constant and Description |
---|
COLLAPSE_LITERAL
The 'Collapse' literal object.
|
PRESERVE_LITERAL
The 'Preserve' literal object.
|
REPLACE_LITERAL
The 'Replace' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
COLLAPSE
The 'Collapse' literal value.
|
static int |
PRESERVE
The 'Preserve' literal value.
|
static int |
REPLACE
The 'Replace' literal value.
|
static java.util.List<XSDWhiteSpace> |
VALUES
A public read-only list of all the 'White Space' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static XSDWhiteSpace |
get(int value)
Returns the 'White Space' literal with the specified integer value.
|
static XSDWhiteSpace |
get(java.lang.String literal)
Returns the 'White Space' literal with the specified literal value.
|
static XSDWhiteSpace |
getByName(java.lang.String name)
Returns the 'White Space' 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 XSDWhiteSpace |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XSDWhiteSpace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XSDWhiteSpace PRESERVE_LITERAL
PRESERVE
public static final XSDWhiteSpace REPLACE_LITERAL
REPLACE
public static final XSDWhiteSpace COLLAPSE_LITERAL
COLLAPSE
public static final int PRESERVE
This is used to indicate the white space is preserved.
PRESERVE_LITERAL
,
Constant Field Valuespublic static final int REPLACE
This is used to indicate the white space is replaced.
REPLACE_LITERAL
,
Constant Field Valuespublic static final int COLLAPSE
This is used to indicate the white space is collapsed.
COLLAPSE_LITERAL
,
Constant Field Valuespublic static final java.util.List<XSDWhiteSpace> VALUES
public static XSDWhiteSpace[] values()
for (XSDWhiteSpace c : XSDWhiteSpace.values()) System.out.println(c);
public static XSDWhiteSpace 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 XSDWhiteSpace get(java.lang.String literal)
public static XSDWhiteSpace getByName(java.lang.String name)
public static XSDWhiteSpace 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<XSDWhiteSpace>