public static enum Filter.Operationen extends java.lang.Enum<Filter.Operationen>
Enum Constant and Description |
---|
keinOperator |
Textbeginntmit |
Textendetmit |
Textenthält |
Textgleich |
Wertistgleich |
Wertistgrößer |
Wertistgrößerodergleich |
Wertistkleiner |
Wertistkleinerodergleich |
Modifier and Type | Method and Description |
---|---|
static Filter.Operationen |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Filter.Operationen[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Filter.Operationen Wertistgleich
public static final Filter.Operationen Wertistkleiner
public static final Filter.Operationen Wertistgrößer
public static final Filter.Operationen Wertistkleinerodergleich
public static final Filter.Operationen Wertistgrößerodergleich
public static final Filter.Operationen Textgleich
public static final Filter.Operationen Textenthält
public static final Filter.Operationen Textbeginntmit
public static final Filter.Operationen Textendetmit
public static final Filter.Operationen keinOperator
public static Filter.Operationen[] values()
for (Filter.Operationen c : Filter.Operationen.values()) System.out.println(c);
public static Filter.Operationen 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 null