public static enum Ordering.OrderingRelation extends Enum<Ordering.OrderingRelation>
| Modifier and Type | Method and Description |
|---|---|
static Ordering.OrderingRelation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ordering.OrderingRelation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ordering.OrderingRelation EQUAL
public static final Ordering.OrderingRelation BEFORE
public static final Ordering.OrderingRelation AFTER
public static final Ordering.OrderingRelation UNDEFINED
public static Ordering.OrderingRelation[] values()
for (Ordering.OrderingRelation c : Ordering.OrderingRelation.values()) System.out.println(c);
public static Ordering.OrderingRelation 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 nullCopyright © 2019 Glasnost. All rights reserved.