public enum EWhenMakeEntries extends Enum<EWhenMakeEntries>
When Make Entries.
| Enum Constant and Description |
|---|
IMMEDIATELY
When document saved into database.
|
ON_DEMAND
On demand.
|
| Modifier and Type | Method and Description |
|---|---|
static EWhenMakeEntries |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EWhenMakeEntries[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EWhenMakeEntries IMMEDIATELY
When document saved into database. This approach not recommended in "High load" case.
public static final EWhenMakeEntries ON_DEMAND
On demand.
public static EWhenMakeEntries[] values()
for (EWhenMakeEntries c : EWhenMakeEntries.values()) System.out.println(c);
public static EWhenMakeEntries 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 © 2016–2018. All rights reserved.