public enum ComparativeOperator extends Enum<ComparativeOperator>
| Modifier and Type | Method and Description |
|---|---|
static ComparativeOperator |
findByAbbreviation(String abbreviation) |
static ComparativeOperator |
findByInteger(int value) |
static ComparativeOperator |
findByName(String name) |
String |
getAbbreviation() |
static Set<ComparativeOperator> |
getAll() |
int |
getIntValue() |
static ComparativeOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparativeOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparativeOperator EQUAL
public static final ComparativeOperator GREATER
public static final ComparativeOperator LESS
public static final ComparativeOperator APPROX
public static ComparativeOperator[] values()
for (ComparativeOperator c : ComparativeOperator.values()) System.out.println(c);
public static ComparativeOperator 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 int getIntValue()
public String getAbbreviation()
public static Set<ComparativeOperator> getAll()
public static ComparativeOperator findByInteger(int value)
public static ComparativeOperator findByAbbreviation(String abbreviation)
public static ComparativeOperator findByName(String name)
Copyright © 2020. All rights reserved.