public enum RehydratePriority extends Enum<RehydratePriority>
| Enum Constant and Description |
|---|
HIGH
The rehydrate priority is high.
|
STANDARD
The rehydrate priority is standard.
|
| Modifier and Type | Method and Description |
|---|---|
static RehydratePriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RehydratePriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RehydratePriority HIGH
public static final RehydratePriority STANDARD
public static RehydratePriority[] values()
for (RehydratePriority c : RehydratePriority.values()) System.out.println(c);
public static RehydratePriority 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 © 2021. All Rights Reserved.