public enum ScanLimitBy extends Enum<ScanLimitBy>
| Enum Constant and Description |
|---|
LIMIT_INVALID |
LIMIT_RESULT_ROW |
LIMIT_RESULT_SIZE |
| Modifier and Type | Method and Description |
|---|---|
static ScanLimitBy |
fromInt(int e) |
static int |
toInt(int ordinal) |
static ScanLimitBy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScanLimitBy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanLimitBy LIMIT_RESULT_SIZE
public static final ScanLimitBy LIMIT_RESULT_ROW
public static final ScanLimitBy LIMIT_INVALID
public static ScanLimitBy[] values()
for (ScanLimitBy c : ScanLimitBy.values()) System.out.println(c);
public static ScanLimitBy 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 nullpublic static ScanLimitBy fromInt(int e)
public static int toInt(int ordinal)
Copyright © 2021. All rights reserved.