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