public enum HintRules extends Enum<HintRules>
Enum Constant and Description |
---|
MOST_CARDS |
NEXT_USEFUL_THEN_MOST_CARDS |
NEXT_USEFUL_THEN_NEXT_USELESS_THEN_MOST_CARDS |
RANDOM |
Modifier and Type | Method and Description |
---|---|
static HintRules |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HintRules[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HintRules RANDOM
public static final HintRules MOST_CARDS
public static final HintRules NEXT_USEFUL_THEN_MOST_CARDS
public static final HintRules NEXT_USEFUL_THEN_NEXT_USELESS_THEN_MOST_CARDS
public static HintRules[] values()
for (HintRules c : HintRules.values()) System.out.println(c);
public static HintRules 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 © 2017 FOSS Galaxy. All rights reserved.