public enum SimpleValueCondition extends Enum<SimpleValueCondition>
| Enum Constant and Description |
|---|
BETWEEN |
EQUALS |
GREATER |
GREATER_OR_EQUALS |
LESS |
LESS_OR_EQUALS |
NOT_EQUALS |
| Modifier and Type | Method and Description |
|---|---|
static SimpleValueCondition[] |
getConditionsForMdr(String mdrDataType)
Get the conditions for a mdr data type.
|
String |
getShortName() |
static SimpleValueCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleValueCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleValueCondition EQUALS
public static final SimpleValueCondition NOT_EQUALS
public static final SimpleValueCondition LESS
public static final SimpleValueCondition GREATER
public static final SimpleValueCondition LESS_OR_EQUALS
public static final SimpleValueCondition GREATER_OR_EQUALS
public static final SimpleValueCondition BETWEEN
public static SimpleValueCondition[] values()
for (SimpleValueCondition c : SimpleValueCondition.values()) System.out.println(c);
public static SimpleValueCondition 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 static SimpleValueCondition[] getConditionsForMdr(String mdrDataType)
mdrDataType - the mdr data typepublic String getShortName()
Copyright © 2021 Samply Community. All rights reserved.