
public static enum AppErrorProperties.SearchStrategy extends Enum<AppErrorProperties.SearchStrategy>
| Enum Constant and Description |
|---|
HIERARCHY_FIRST |
ORDER_FIRST |
| Modifier and Type | Method and Description |
|---|---|
static AppErrorProperties.SearchStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppErrorProperties.SearchStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppErrorProperties.SearchStrategy ORDER_FIRST
public static final AppErrorProperties.SearchStrategy HIERARCHY_FIRST
public static AppErrorProperties.SearchStrategy[] values()
for (AppErrorProperties.SearchStrategy c : AppErrorProperties.SearchStrategy.values()) System.out.println(c);
public static AppErrorProperties.SearchStrategy 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 © 2017. All rights reserved.