public static enum PropertyListWriter.Format extends java.lang.Enum<PropertyListWriter.Format>
Enum Constant and Description |
---|
BINARY
Represents the binary property list format
|
JSON
Represents the JSON property list format
|
XML
Represents the XML property list format
|
Modifier and Type | Method and Description |
---|---|
static PropertyListWriter.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyListWriter.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyListWriter.Format JSON
public static final PropertyListWriter.Format XML
public static final PropertyListWriter.Format BINARY
public static PropertyListWriter.Format[] values()
for (PropertyListWriter.Format c : PropertyListWriter.Format.values()) System.out.println(c);
public static PropertyListWriter.Format 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