public enum PropertiesFormatType extends Enum<PropertiesFormatType>
Enum Constant and Description |
---|
PLAIN
Plain format.
|
XML
XML format.
|
Modifier and Type | Method and Description |
---|---|
static PropertiesFormatType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertiesFormatType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertiesFormatType PLAIN
public static final PropertiesFormatType XML
public static PropertiesFormatType[] values()
for (PropertiesFormatType c : PropertiesFormatType.values()) System.out.println(c);
public static PropertiesFormatType 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 © 2005-2013 The JOMC Project. All Rights Reserved.