public enum ResultEstimationType extends Enum<ResultEstimationType>
Enum Constant and Description |
---|
APPROXIMATE
The number of results is not exact, but approximately the specified value.
|
EXACT
The number of results is exactly the specified value.
|
MORE_THAN
The number of results is unknown, but should be more than the specified value.
|
UNKNOWN
The number of results is completely unknown.
|
UP_TO
The number of results is unknown, but never bigger than the specified value.
|
Modifier and Type | Method and Description |
---|---|
static ResultEstimationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultEstimationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultEstimationType UNKNOWN
public static final ResultEstimationType APPROXIMATE
public static final ResultEstimationType UP_TO
public static final ResultEstimationType EXACT
public static final ResultEstimationType MORE_THAN
public static ResultEstimationType[] values()
for (ResultEstimationType c : ResultEstimationType.values()) System.out.println(c);
public static ResultEstimationType 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 © 2020 DataWeb Research. All rights reserved.