public static enum Query.ForUpdate extends Enum<Query.ForUpdate>
| Enum Constant and Description | 
|---|
BASE
Standard For update clause. 
 | 
NOWAIT
For update with No Wait option. 
 | 
SKIPLOCKED
For update with Skip Locked option. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Query.ForUpdate | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Query.ForUpdate[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Query.ForUpdate BASE
public static final Query.ForUpdate NOWAIT
public static final Query.ForUpdate SKIPLOCKED
public static Query.ForUpdate[] values()
for (Query.ForUpdate c : Query.ForUpdate.values()) System.out.println(c);
public static Query.ForUpdate 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 © 2019. All rights reserved.