public static enum Range.RangeOperator extends Enum<Range.RangeOperator>
| Enum Constant and Description |
|---|
EQ
The version and the requirement are equivalent
|
GT
The version is greater than the requirement
|
GTE
The version is greater than or equivalent to the requirement
|
LT
The version is lower than the requirent
|
LTE
The version is lower than or equivalent to the requirement
|
| Modifier and Type | Method and Description |
|---|---|
String |
asString() |
static Range.RangeOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Range.RangeOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Range.RangeOperator EQ
public static final Range.RangeOperator LT
public static final Range.RangeOperator LTE
public static final Range.RangeOperator GT
public static final Range.RangeOperator GTE
public static Range.RangeOperator[] values()
for (Range.RangeOperator c : Range.RangeOperator.values()) System.out.println(c);
public static Range.RangeOperator 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 String asString()
Copyright © 2021. All rights reserved.