public enum SaveToStringFormat extends java.lang.Enum<SaveToStringFormat>
saveToString
method.Enum Constant and Description |
---|
Base64
Indicates Base64 ASCII encoding.
|
CompressedXml
Indicates compressed XML output.
|
Xml
Indicates non-compressed XML output.
|
Modifier and Type | Method and Description |
---|---|
static SaveToStringFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SaveToStringFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveToStringFormat Base64
public static final SaveToStringFormat Xml
public static final SaveToStringFormat CompressedXml
public static SaveToStringFormat[] values()
for (SaveToStringFormat c : SaveToStringFormat.values()) System.out.println(c);
public static SaveToStringFormat 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 namejava.lang.NullPointerException
- if the argument is null