protected static enum BaseNativeQuery.ResultType extends Enum<BaseNativeQuery.ResultType>
| Enum Constant and Description |
|---|
COUNT |
LIST |
LIST_PAGE |
SINGLE_RESULT |
| Modifier and Type | Method and Description |
|---|---|
static BaseNativeQuery.ResultType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseNativeQuery.ResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseNativeQuery.ResultType LIST
public static final BaseNativeQuery.ResultType LIST_PAGE
public static final BaseNativeQuery.ResultType SINGLE_RESULT
public static final BaseNativeQuery.ResultType COUNT
public static BaseNativeQuery.ResultType[] values()
for (BaseNativeQuery.ResultType c : BaseNativeQuery.ResultType.values()) System.out.println(c);
public static BaseNativeQuery.ResultType 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 © 2017 Flowable. All rights reserved.