public enum Store extends Enum<Store>
| Enum Constant and Description |
|---|
BINARY_JDBC |
CUSTOM |
FILE |
JDBC |
MIXED_JDBC |
REMOTE |
| Modifier and Type | Method and Description |
|---|---|
static Store |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Store[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Store BINARY_JDBC
public static final Store CUSTOM
public static final Store FILE
public static final Store JDBC
public static final Store MIXED_JDBC
public static final Store REMOTE
public static Store[] values()
for (Store c : Store.values()) System.out.println(c);
public static Store 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 JBoss, a division of Red Hat. All rights reserved.