public enum Comparator extends java.lang.Enum<Comparator>
Enum Constant and Description |
---|
CONTAINS |
CONTAINS_ANY_OF |
ENDS_WITH |
EQUALS |
EQUALS_ANY_OF |
GREATER |
GREATER_OR_EQUALS |
MATCHES |
NOT_EQUALS |
RANGES_BETWEEN |
SMALLER |
SMALLER_OR_EQUALS |
STARTS_WITH |
TEXTUALLY_MATCHES |
Modifier and Type | Method and Description |
---|---|
static Comparator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Comparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Comparator EQUALS
public static final Comparator EQUALS_ANY_OF
public static final Comparator NOT_EQUALS
public static final Comparator GREATER
public static final Comparator GREATER_OR_EQUALS
public static final Comparator SMALLER
public static final Comparator SMALLER_OR_EQUALS
public static final Comparator STARTS_WITH
public static final Comparator ENDS_WITH
public static final Comparator CONTAINS
public static final Comparator CONTAINS_ANY_OF
public static final Comparator MATCHES
public static final Comparator TEXTUALLY_MATCHES
public static final Comparator RANGES_BETWEEN
public static Comparator[] values()
for (Comparator c : Comparator.values()) System.out.println(c);
public static Comparator 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 nullCopyright @ 2013-2018 VMware, Inc. All rights reserved.