public enum ConceptOperator extends Enum<ConceptOperator>
| Enum Constant and Description |
|---|
BETWEEN |
EQUAL |
GREATER_THAN |
IN |
LIKE |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
String |
getSQLOperator() |
static ConceptOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConceptOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConceptOperator LIKE
public static final ConceptOperator EQUAL
public static final ConceptOperator GREATER_THAN
public static final ConceptOperator BETWEEN
public static final ConceptOperator IN
public static final ConceptOperator NOT_EQUAL
public static ConceptOperator[] values()
for (ConceptOperator c : ConceptOperator.values()) System.out.println(c);
public static ConceptOperator 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 getSQLOperator()
Copyright © 2012–2018 Emory University. All rights reserved.