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