public enum FilterOperation extends Enum<FilterOperation>
Enum Constant and Description |
---|
contains |
equals |
present |
startsWith |
Modifier and Type | Method and Description |
---|---|
static FilterOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOperation contains
public static final FilterOperation equals
public static final FilterOperation startsWith
public static final FilterOperation present
public static FilterOperation[] values()
for (FilterOperation c : FilterOperation.values()) System.out.println(c);
public static FilterOperation 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 © 2023 WSO2. All Rights Reserved.