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