public enum SchemaDocumentationType extends Enum<SchemaDocumentationType>
documentation
XSD documentation element
appinfo
XSD appinfo element
all
XSD documentation and appinfo elements
none
noneEnum Constant and Description |
---|
all |
appinfo |
documentation |
none |
Modifier and Type | Method and Description |
---|---|
static SchemaDocumentationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaDocumentationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaDocumentationType documentation
public static final SchemaDocumentationType appinfo
public static final SchemaDocumentationType all
public static final SchemaDocumentationType none
public static SchemaDocumentationType[] values()
for (SchemaDocumentationType c : SchemaDocumentationType.values()) System.out.println(c);
public static SchemaDocumentationType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.