public enum ConcurrencyMode extends Enum<ConcurrencyMode>
Enum Constant and Description |
---|
ALL
Use all the columns (except Lobs).
|
NONE
No concurrency checking.
|
VERSION
Use a version column.
|
Modifier and Type | Method and Description |
---|---|
static ConcurrencyMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConcurrencyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConcurrencyMode NONE
public static final ConcurrencyMode VERSION
public static final ConcurrencyMode ALL
public static ConcurrencyMode[] values()
for (ConcurrencyMode c : ConcurrencyMode.values()) System.out.println(c);
public static ConcurrencyMode 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 © 2015. All Rights Reserved.