public enum CriteriaSelection extends Enum<CriteriaSelection>
Java class for CriteriaSelection.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CriteriaSelection">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NONE"/>
<enumeration value="AND"/>
<enumeration value="OR"/>
<enumeration value="CUSTOM"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static CriteriaSelection |
fromValue(String v) |
String |
value() |
static CriteriaSelection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CriteriaSelection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CriteriaSelection NONE
public static final CriteriaSelection AND
public static final CriteriaSelection OR
public static final CriteriaSelection CUSTOM
public static CriteriaSelection[] values()
for (CriteriaSelection c : CriteriaSelection.values()) System.out.println(c);
public static CriteriaSelection 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 CriteriaSelection fromValue(String v)
Copyright © 2025 MuleSoft, Inc.. All rights reserved.