public enum ContainmentComparison extends java.lang.Enum<ContainmentComparison>
| Enum Constant and Description |
|---|
EXACT
Specifies that the comparison must be exact.
|
IGNORE_CASE
Specifies that the comparison ignores casing.
|
IGNORE_CASE_AND_NON_SPACING_CHARACTERS
Specifies that the comparison ignores casing and non-spacing characters.
|
IGNORE_NON_SPACING_CHARACTERS
Specifies that the comparison ignores non-spacing characters.
|
LOOSE
To be removed.
|
LOOSE_AND_IGNORE_CASE
To be removed.
|
LOOSE_AND_IGNORE_CASE_AND_IGNORE_NON_SPACE
To be removed.
|
LOOSE_AND_IGNORE_NON_SPACE
To be removed.
|
NONE
None.
|
| Modifier and Type | Method and Description |
|---|---|
static ContainmentComparison |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContainmentComparison[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainmentComparison EXACT
public static final ContainmentComparison IGNORE_CASE
public static final ContainmentComparison IGNORE_NON_SPACING_CHARACTERS
public static final ContainmentComparison LOOSE
public static final ContainmentComparison IGNORE_CASE_AND_NON_SPACING_CHARACTERS
public static final ContainmentComparison LOOSE_AND_IGNORE_CASE
public static final ContainmentComparison LOOSE_AND_IGNORE_NON_SPACE
public static final ContainmentComparison LOOSE_AND_IGNORE_CASE_AND_IGNORE_NON_SPACE
public static final ContainmentComparison NONE
public static ContainmentComparison[] values()
for (ContainmentComparison c : ContainmentComparison.values()) System.out.println(c);
public static ContainmentComparison 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