public enum PropertiesFileTypeExtensions extends java.lang.Enum<PropertiesFileTypeExtensions>
PropertiesFileTypeExtensions.| Enum Constant and Description |
|---|
PROPERTIES
The file type with the extension '.properties'.
|
UTF8_PROPERTIES
The file type with the extension '.utf8.properties'.
|
XML
The file type with the extension '.properties.xml'.
|
| Modifier and Type | Method and Description |
|---|---|
static PropertiesFileTypeExtensions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertiesFileTypeExtensions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertiesFileTypeExtensions PROPERTIES
public static final PropertiesFileTypeExtensions UTF8_PROPERTIES
public static final PropertiesFileTypeExtensions XML
public static PropertiesFileTypeExtensions[] values()
for (PropertiesFileTypeExtensions c : PropertiesFileTypeExtensions.values()) System.out.println(c);
public static PropertiesFileTypeExtensions 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