public static enum AdaptiveResolutionStrategy.AdaptiveState extends Enum<AdaptiveResolutionStrategy.AdaptiveState>
| Enum Constant and Description |
|---|
AGGRESSIVE
Aggressive: maximum inference and expansion
|
CONSERVATIVE
Conservative: minimal inference and expansion
|
NORMAL
Normal: standard inference and expansion
|
| Modifier and Type | Method and Description |
|---|---|
static AdaptiveResolutionStrategy.AdaptiveState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdaptiveResolutionStrategy.AdaptiveState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdaptiveResolutionStrategy.AdaptiveState CONSERVATIVE
public static final AdaptiveResolutionStrategy.AdaptiveState NORMAL
public static final AdaptiveResolutionStrategy.AdaptiveState AGGRESSIVE
public static AdaptiveResolutionStrategy.AdaptiveState[] values()
for (AdaptiveResolutionStrategy.AdaptiveState c : AdaptiveResolutionStrategy.AdaptiveState.values()) System.out.println(c);
public static AdaptiveResolutionStrategy.AdaptiveState 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 null