public static enum RowFilter.FilterType extends Enum<RowFilter.FilterType>
| Enum Constant and Description |
|---|
EQUAL
Accept values that are equal to the filter value.
|
GREATER_THAN
Accept values that are greater than the filter value.
|
LESS_THAN
Accept values that are less than the filter value.
|
NOT_EQUAL
Accept values that are not equal to the filter value.
|
| Modifier and Type | Method and Description |
|---|---|
static RowFilter.FilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RowFilter.FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowFilter.FilterType LESS_THAN
public static final RowFilter.FilterType GREATER_THAN
public static final RowFilter.FilterType EQUAL
public static final RowFilter.FilterType NOT_EQUAL
public static RowFilter.FilterType[] values()
for (RowFilter.FilterType c : RowFilter.FilterType.values()) System.out.println(c);
public static RowFilter.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 nullCopyright © 2006–2017 Esito AS. All rights reserved.