public enum RowExistenceExpectation extends Enum<RowExistenceExpectation>
| Enum Constant and Description |
|---|
EXPECT_EXIST
期望该行存在。
|
EXPECT_NOT_EXIST
期望该行不存在。
|
IGNORE
不对行是否存在做任何判断。
|
| Modifier and Type | Method and Description |
|---|---|
static RowExistenceExpectation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RowExistenceExpectation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowExistenceExpectation IGNORE
public static final RowExistenceExpectation EXPECT_EXIST
public static final RowExistenceExpectation EXPECT_NOT_EXIST
public static RowExistenceExpectation[] values()
for (RowExistenceExpectation c : RowExistenceExpectation.values()) System.out.println(c);
public static RowExistenceExpectation 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 © 2024. All Rights Reserved.