public enum AppDataRelativeBase extends Enum<AppDataRelativeBase>
| Enum Constant and Description |
|---|
CURRENT_DIR
Поиск относительно текущего каталога
|
USER_HOME_DIR
Поиск относительно домашнего каталога пользователя
|
| Modifier and Type | Method and Description |
|---|---|
static AppDataRelativeBase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppDataRelativeBase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppDataRelativeBase CURRENT_DIR
public static final AppDataRelativeBase USER_HOME_DIR
public static AppDataRelativeBase[] values()
for (AppDataRelativeBase c : AppDataRelativeBase.values()) System.out.println(c);
public static AppDataRelativeBase 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.