public enum SchemaMode extends Enum<SchemaMode>
| Enum Constant and Description |
|---|
ALWAYS
Always add schema to the jaxb marshaller or unmarshaller.
|
EXTERNAL_XSD
Add only a schema to the marshaller or unmarshaller if an external schema specification is
used.
|
MARSHAL
Add always a schema to the jaxb marshaller, but not to the unmarshaller.
|
NEVER
Never add a schema to the jaxb marshaller or unmarshaller.
|
UNMARSHAL
Add always a schema to the jaxb unmarshaller, but not to the marshaller.
|
| Modifier and Type | Method and Description |
|---|---|
static SchemaMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaMode NEVER
public static final SchemaMode ALWAYS
public static final SchemaMode MARSHAL
public static final SchemaMode UNMARSHAL
public static final SchemaMode EXTERNAL_XSD
public static SchemaMode[] values()
for (SchemaMode c : SchemaMode.values()) System.out.println(c);
public static SchemaMode 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 © 2020 bremersee.org. All rights reserved.