public enum QueryInterpretationOfNoValueType extends Enum<QueryInterpretationOfNoValueType>
Java class for QueryInterpretationOfNoValueType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="QueryInterpretationOfNoValueType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="filterEqualNull"/>
<enumeration value="filterUndefined"/>
<enumeration value="filterNone"/>
<enumeration value="filterAll"/>
<enumeration value="error"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ERROR
Error will be thrown if the expression results in
empty (null) values.
|
FILTER_ALL
The expression will be intepreted as an NONE filter.
|
FILTER_EQUAL_NULL
The expression will be intepreted as an EQUAL filter
that looks for entries with no (null) value.
|
FILTER_NONE
The expression will be intepreted as an NONE filter.
|
FILTER_UNDEFINED
The expression will be intepreted as an UNDEFINED filter.
|
| Modifier and Type | Method and Description |
|---|---|
static QueryInterpretationOfNoValueType |
fromValue(String v) |
String |
value() |
static QueryInterpretationOfNoValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryInterpretationOfNoValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryInterpretationOfNoValueType FILTER_EQUAL_NULL
public static final QueryInterpretationOfNoValueType FILTER_UNDEFINED
public static final QueryInterpretationOfNoValueType FILTER_NONE
public static final QueryInterpretationOfNoValueType FILTER_ALL
public static final QueryInterpretationOfNoValueType ERROR
public static QueryInterpretationOfNoValueType[] values()
for (QueryInterpretationOfNoValueType c : QueryInterpretationOfNoValueType.values()) System.out.println(c);
public static QueryInterpretationOfNoValueType 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 value()
public static QueryInterpretationOfNoValueType fromValue(String v)
Copyright © 2016 Evolveum. All rights reserved.