public enum Comparator extends Enum<Comparator>
| Modifier and Type | Method and Description |
|---|---|
abstract Comparator |
not()
not
|
abstract Comparator |
swap()
swap
|
String |
toString() |
static Comparator |
valueOf(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 EQ
public static final Comparator NE
public static final Comparator LT
public static final Comparator LE
public static final Comparator GT
public static final Comparator GE
public static Comparator[] values()
for (Comparator c : Comparator.values()) System.out.println(c);
public static Comparator 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 abstract Comparator not()
not
Comparator object.public abstract Comparator swap()
swap
Comparator object.public String toString()
toString in class Enum<Comparator>Copyright © 2010–2017 EvoSuite. All rights reserved.