public enum SearchOrder extends Enum<SearchOrder>
| Enum Constant and Description |
|---|
CLASS_PATH
Look in classpath, this includes directory and the jar(s)
|
CUSTOM_PATH
Look in any given external path
|
SYSTEM_PATH
Look in system path (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static SearchOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchOrder CUSTOM_PATH
public static final SearchOrder CLASS_PATH
public static final SearchOrder SYSTEM_PATH
public static SearchOrder[] values()
for (SearchOrder c : SearchOrder.values()) System.out.println(c);
public static SearchOrder valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.