public enum Verbosity extends Enum<Verbosity>
Verbosity
enumeration is used to specify a verbosity
preference for the resulting XML. Typically the verbosity preference
is used when serializing an object that does not have explicit XML
annotations associated with a type. In such a scenario this will
indicate whether a high verbosity level is required or a low one.Format
Enum Constant and Description |
---|
HIGH
This specifies a preference for elements over attributes.
|
LOW
This specifies a preference for attributes over elements.
|
Modifier and Type | Method and Description |
---|---|
static Verbosity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Verbosity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Verbosity[] values()
for (Verbosity c : Verbosity.values()) System.out.println(c);
public static Verbosity 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 null