public enum ExtensionFileTypes extends java.lang.Enum<ExtensionFileTypes>
| Enum Constant and Description |
|---|
JAR
Jar files.
|
XML
The xml file.
|
YML
the yml file.
|
| Modifier and Type | Method and Description |
|---|---|
java.io.FileFilter |
getFilter()
Gets the field filter.
|
static ExtensionFileTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExtensionFileTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtensionFileTypes XML
public static final ExtensionFileTypes YML
public static final ExtensionFileTypes JAR
public static ExtensionFileTypes[] values()
for (ExtensionFileTypes c : ExtensionFileTypes.values()) System.out.println(c);
public static ExtensionFileTypes 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 nullpublic java.io.FileFilter getFilter()