|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SubstringFilenameFilter.PartOfName>
de.jstacs.io.SubstringFilenameFilter.PartOfName
public static enum SubstringFilenameFilter.PartOfName
This enum defines the different types of a String
that can be part of an other String, i.e. the different types of
substrings.
| Enum Constant Summary | |
|---|---|
INFIX
The String shall be infix. |
|
PREFIX
The String shall be prefix. |
|
SUFFIX
The String shall be suffix. |
|
| Method Summary | |
|---|---|
static SubstringFilenameFilter.PartOfName |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SubstringFilenameFilter.PartOfName[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final SubstringFilenameFilter.PartOfName PREFIX
String shall be prefix.
public static final SubstringFilenameFilter.PartOfName INFIX
String shall be infix.
public static final SubstringFilenameFilter.PartOfName SUFFIX
String shall be suffix.
| Method Detail |
|---|
public static final SubstringFilenameFilter.PartOfName[] values()
for(SubstringFilenameFilter.PartOfName c : SubstringFilenameFilter.PartOfName.values())
System.out.println(c);
public static SubstringFilenameFilter.PartOfName 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
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||