public static enum FilterParam.FilterType extends Enum<FilterParam.FilterType>
| Enum Constant and Description |
|---|
equals |
equivalence |
equivalence_left |
equivalence_right |
greater |
greater_or_equals |
lesser |
lesser_or_equals |
not_equals |
| Modifier and Type | Method and Description |
|---|---|
String |
getStr() |
static FilterParam.FilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterParam.FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterParam.FilterType equals
public static final FilterParam.FilterType greater
public static final FilterParam.FilterType lesser
public static final FilterParam.FilterType greater_or_equals
public static final FilterParam.FilterType lesser_or_equals
public static final FilterParam.FilterType not_equals
public static final FilterParam.FilterType equivalence
public static final FilterParam.FilterType equivalence_left
public static final FilterParam.FilterType equivalence_right
public static FilterParam.FilterType[] values()
for (FilterParam.FilterType c : FilterParam.FilterType.values()) System.out.println(c);
public static FilterParam.FilterType 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 getStr()
Copyright © 2024. All rights reserved.