|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<PropertiesFormat> de.smartics.properties.config.transfer.filesystem.PropertiesFormat
public enum PropertiesFormat
An enumeration of valid properties formats.
Enum Constant Summary | |
---|---|
NATIVE The native properties format. |
|
XML The XML format defined by the Properties implementation. |
Method Summary | |
---|---|
String |
adjustPath(String path) Adjusts the file name in this way that it contains the correct extension for the given type. |
static PropertiesFormat |
fromString(String type) Returns the properties format identifier by the case-insensitive identifier of the enumeration element. |
static PropertiesFormat |
valueOf(String name) Returns the enum constant of this type with the specified name. |
static PropertiesFormat[] |
values() Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PropertiesFormat NATIVE
public static final PropertiesFormat XML
Properties
implementation.
Method Detail |
---|
public static PropertiesFormat[] values()
for (PropertiesFormat c : PropertiesFormat.values()) System.out.println(c);
public static PropertiesFormat valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant with the specified name
NullPointerException
- if the argument is null
public String adjustPath(String path)
path
- the path to adjust if needed.
public static PropertiesFormat fromString(String type)
type
- the name of the enumeration element. The value is case insensitive.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |