public enum XmlSchemaUse extends java.lang.Enum<XmlSchemaUse>
| Enum Constant and Description |
|---|
NONE |
OPTIONAL |
PROHIBITED |
REQUIRED |
| Modifier and Type | Method and Description |
|---|---|
static XmlSchemaUse |
schemaValueOf(java.lang.String name) |
java.lang.String |
toString() |
static XmlSchemaUse |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XmlSchemaUse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlSchemaUse NONE
public static final XmlSchemaUse OPTIONAL
public static final XmlSchemaUse PROHIBITED
public static final XmlSchemaUse REQUIRED
public static XmlSchemaUse[] values()
for (XmlSchemaUse c : XmlSchemaUse.values()) System.out.println(c);
public static XmlSchemaUse 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 XmlSchemaUse schemaValueOf(java.lang.String name)
public java.lang.String toString()
toString in class java.lang.Enum<XmlSchemaUse>