public enum LoadingStrategy extends java.lang.Enum<LoadingStrategy>
Enum Constant and Description |
---|
LOAD_IN_BATCHES |
LOAD_IN_SINGLE_QUERY |
Modifier and Type | Method and Description |
---|---|
static LoadingStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoadingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadingStrategy LOAD_IN_BATCHES
public static final LoadingStrategy LOAD_IN_SINGLE_QUERY
public static LoadingStrategy[] values()
for (LoadingStrategy c : LoadingStrategy.values()) System.out.println(c);
public static LoadingStrategy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null