public enum RowExistenceExpectation extends Enum<RowExistenceExpectation>
| 枚举常量和说明 |
|---|
EXPECT_EXIST
Expect the row to exist.
|
EXPECT_NOT_EXIST
Expect this row not to exist.
|
IGNORE
Makes no judgment on whether the row exists.
|
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 - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2025. All Rights Reserved.