public enum Tradeoffs extends Enum<Tradeoffs>
| Enum Constant and Description |
|---|
FAST_REMOVE |
FAST_SORT |
| Modifier and Type | Method and Description |
|---|---|
static Tradeoffs |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tradeoffs[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tradeoffs FAST_SORT
public static final Tradeoffs FAST_REMOVE
public static Tradeoffs[] values()
for (Tradeoffs c : Tradeoffs.values()) System.out.println(c);
public static Tradeoffs 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 © 2016. All Rights Reserved.