public static enum SimpleColumnFilter.ComparisonType extends java.lang.Enum<SimpleColumnFilter.ComparisonType>
Enum Constant and Description |
---|
BETWEEN |
EQUAL |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
IN |
LESS_THAN |
LESS_THAN_OR_EQUAL |
LIKE |
NOT_EQUAL |
NOT_IN |
NOT_LIKE |
Modifier and Type | Field and Description |
---|---|
protected int |
intValue |
protected java.lang.String |
label |
Modifier and Type | Method and Description |
---|---|
int |
getIntValue() |
java.lang.String |
getLabel() |
static java.lang.String |
getLabelFromIntValue(int intValue)
If `intValue` is not a valid choice, returns its text value
|
static SimpleColumnFilter.ComparisonType[] |
getValues() |
static SimpleColumnFilter.ComparisonType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimpleColumnFilter.ComparisonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleColumnFilter.ComparisonType GREATER_THAN
public static final SimpleColumnFilter.ComparisonType LESS_THAN
public static final SimpleColumnFilter.ComparisonType GREATER_THAN_OR_EQUAL
public static final SimpleColumnFilter.ComparisonType LESS_THAN_OR_EQUAL
public static final SimpleColumnFilter.ComparisonType EQUAL
public static final SimpleColumnFilter.ComparisonType NOT_EQUAL
public static final SimpleColumnFilter.ComparisonType IN
public static final SimpleColumnFilter.ComparisonType NOT_IN
public static final SimpleColumnFilter.ComparisonType BETWEEN
public static final SimpleColumnFilter.ComparisonType LIKE
public static final SimpleColumnFilter.ComparisonType NOT_LIKE
public static SimpleColumnFilter.ComparisonType[] values()
for (SimpleColumnFilter.ComparisonType c : SimpleColumnFilter.ComparisonType.values()) System.out.println(c);
public static SimpleColumnFilter.ComparisonType 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 nullpublic int getIntValue()
public java.lang.String getLabel()
public static SimpleColumnFilter.ComparisonType[] getValues()
public static java.lang.String getLabelFromIntValue(int intValue)
Copyright © 2003-2023 Appian Corporation. All Rights Reserved.