public static enum FindFile.Match extends java.lang.Enum<FindFile.Match>
| Enum Constant and Description |
|---|
FULL_PATH
Full, absolute path.
|
NAME
Just file name.
|
RELATIVE_PATH
Relative path from current root.
|
| Modifier and Type | Method and Description |
|---|---|
static FindFile.Match |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FindFile.Match[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FindFile.Match FULL_PATH
public static final FindFile.Match RELATIVE_PATH
public static final FindFile.Match NAME
public static FindFile.Match[] values()
for (FindFile.Match c : FindFile.Match.values()) System.out.println(c);
public static FindFile.Match 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 nullCopyright © 2003-present Jodd Team