public enum FilterFunction extends Enum<FilterFunction>
Enum Constant and Description |
---|
EQUALS |
GREATER_EQUALS |
GREATER_THAN |
LESSER_EQUALS |
LESSER_THAN |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
String |
getFunction() |
static FilterFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterFunction EQUALS
public static final FilterFunction NOT_EQUALS
public static final FilterFunction GREATER_THAN
public static final FilterFunction GREATER_EQUALS
public static final FilterFunction LESSER_THAN
public static final FilterFunction LESSER_EQUALS
public static FilterFunction[] values()
for (FilterFunction c : FilterFunction.values()) System.out.println(c);
public static FilterFunction 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 getFunction()
Copyright © 2018 SAP SE. All rights reserved.