public enum QueryDeletedMode extends Enum<QueryDeletedMode>
DeletableEntity| Enum Constant and Description |
|---|
ONLY_DELETED
查询结果中只查删除的数据
Query only the deleted data
|
WITH_DELETED
查询结果中包含已删除的数据
Query all data
|
WITHOUT_DELETED
查询结果中不包含已删除的数据
Query data that not be deleted.
|
| Modifier and Type | Method and Description |
|---|---|
static QueryDeletedMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryDeletedMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryDeletedMode WITH_DELETED
public static final QueryDeletedMode WITHOUT_DELETED
public static final QueryDeletedMode ONLY_DELETED
public static QueryDeletedMode[] values()
for (QueryDeletedMode c : QueryDeletedMode.values()) System.out.println(c);
public static QueryDeletedMode 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.