public enum SQLServerTableHints extends java.lang.Enum<SQLServerTableHints>
Enum Constant and Description |
---|
FASTFIRSTROW |
FORCESEEK |
HOLDLOCK |
NOEXPAND |
NOLOCK |
NOWAIT |
PAGLOCK |
READCOMMITTED |
READCOMMITTEDLOCK |
READPAST |
READUNCOMMITTED |
REPEATABLEREAD |
ROWLOCK |
SERIALIZABLE |
TABLOCK |
TABLOCKX |
UPDLOCK |
XLOCK |
Modifier and Type | Method and Description |
---|---|
static SQLServerTableHints |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SQLServerTableHints[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLServerTableHints NOEXPAND
public static final SQLServerTableHints FASTFIRSTROW
public static final SQLServerTableHints FORCESEEK
public static final SQLServerTableHints HOLDLOCK
public static final SQLServerTableHints NOLOCK
public static final SQLServerTableHints NOWAIT
public static final SQLServerTableHints PAGLOCK
public static final SQLServerTableHints READCOMMITTED
public static final SQLServerTableHints READCOMMITTEDLOCK
public static final SQLServerTableHints READPAST
public static final SQLServerTableHints READUNCOMMITTED
public static final SQLServerTableHints REPEATABLEREAD
public static final SQLServerTableHints ROWLOCK
public static final SQLServerTableHints SERIALIZABLE
public static final SQLServerTableHints TABLOCK
public static final SQLServerTableHints TABLOCKX
public static final SQLServerTableHints UPDLOCK
public static final SQLServerTableHints XLOCK
public static SQLServerTableHints[] values()
for (SQLServerTableHints c : SQLServerTableHints.values()) System.out.println(c);
public static SQLServerTableHints 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 nullCopyright © 2007-2013 Mysema Ltd. All Rights Reserved.