public static enum DirFollow.ErrorBehavior extends Enum<DirFollow.ErrorBehavior>
| Enum Constant and Description |
|---|
Continue
Продолжить выполнение
|
Stop
Завершить работу
|
| Modifier and Type | Method and Description |
|---|---|
static DirFollow.ErrorBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DirFollow.ErrorBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirFollow.ErrorBehavior Continue
public static final DirFollow.ErrorBehavior Stop
public static DirFollow.ErrorBehavior[] values()
for (DirFollow.ErrorBehavior c : DirFollow.ErrorBehavior.values()) System.out.println(c);
public static DirFollow.ErrorBehavior 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.