public static enum MarshallableOut.Padding extends Enum<MarshallableOut.Padding>
| Modifier and Type | Method and Description |
|---|---|
static MarshallableOut.Padding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MarshallableOut.Padding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarshallableOut.Padding ALWAYS
public static final MarshallableOut.Padding NEVER
public static final MarshallableOut.Padding SMART
public static MarshallableOut.Padding[] values()
for (MarshallableOut.Padding c : MarshallableOut.Padding.values()) System.out.println(c);
public static MarshallableOut.Padding 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 © 2018. All rights reserved.