public static enum DataSourceUniform.LimitType extends java.lang.Enum<DataSourceUniform.LimitType>
Enum Constant | Description |
---|---|
EXCLUSIVE |
Limit type indicating that specified limit is not included in the range, and that the
extreme value should be one full step from the specified limit.
|
HALF_STEP |
Limit type indicating that extreme value should be one half step from the specified limit.
|
INCLUSIVE |
Limit type indicating that limit is included in range, and that it equals the extreme value.
|
Modifier and Type | Method | Description |
---|---|---|
static DataSourceUniform.LimitType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static DataSourceUniform.LimitType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSourceUniform.LimitType INCLUSIVE
public static final DataSourceUniform.LimitType HALF_STEP
public static final DataSourceUniform.LimitType EXCLUSIVE
public static DataSourceUniform.LimitType[] values()
for (DataSourceUniform.LimitType c : DataSourceUniform.LimitType.values()) System.out.println(c);
public static DataSourceUniform.LimitType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null