public enum ContainmentComparisonType extends Enum<ContainmentComparisonType>
Java class for ContainmentComparisonType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ContainmentComparisonType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Exact"/>
<enumeration value="IgnoreCase"/>
<enumeration value="IgnoreNonSpacingCharacters"/>
<enumeration value="Loose"/>
<enumeration value="IgnoreCaseAndNonSpacingCharacters"/>
<enumeration value="LooseAndIgnoreCase"/>
<enumeration value="LooseAndIgnoreNonSpace"/>
<enumeration value="LooseAndIgnoreCaseAndIgnoreNonSpace"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
EXACT |
IGNORE_CASE |
IGNORE_CASE_AND_NON_SPACING_CHARACTERS |
IGNORE_NON_SPACING_CHARACTERS |
LOOSE |
LOOSE_AND_IGNORE_CASE |
LOOSE_AND_IGNORE_CASE_AND_IGNORE_NON_SPACE |
LOOSE_AND_IGNORE_NON_SPACE |
| Modifier and Type | Method and Description |
|---|---|
static ContainmentComparisonType |
fromValue(String v) |
String |
value() |
static ContainmentComparisonType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainmentComparisonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainmentComparisonType EXACT
public static final ContainmentComparisonType IGNORE_CASE
public static final ContainmentComparisonType IGNORE_NON_SPACING_CHARACTERS
public static final ContainmentComparisonType LOOSE
public static final ContainmentComparisonType IGNORE_CASE_AND_NON_SPACING_CHARACTERS
public static final ContainmentComparisonType LOOSE_AND_IGNORE_CASE
public static final ContainmentComparisonType LOOSE_AND_IGNORE_NON_SPACE
public static final ContainmentComparisonType LOOSE_AND_IGNORE_CASE_AND_IGNORE_NON_SPACE
public static ContainmentComparisonType[] values()
for (ContainmentComparisonType c : ContainmentComparisonType.values()) System.out.println(c);
public static ContainmentComparisonType 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 ContainmentComparisonType fromValue(String v)
Copyright © 2017 Apereo. All Rights Reserved.