|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Verbosity>
org.simpleframework.xml.stream.Verbosity
public enum Verbosity
The 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 Summary | |
|---|---|
HIGH
This specifies a preference for elements over attributes. |
|
LOW
This specifies a preference for attributes over elements. |
|
| Method Summary | |
|---|---|
static Verbosity |
valueOf(java.lang.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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Verbosity HIGH
public static final Verbosity LOW
| Method Detail |
|---|
public static Verbosity[] values()
for (Verbosity c : Verbosity.values()) System.out.println(c);
public static Verbosity 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 name
java.lang.NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||