public enum HINT extends Enum<HINT>
Enum Constant and Description |
---|
HINT_NONE
No hint.
|
HINT_NOT_TAKEN
Condition will be not taken (unlikely).
|
HINT_TAKEN
Condition will be taken (likely).
|
Modifier and Type | Method and Description |
---|---|
int |
value() |
static HINT |
valueOf(int value) |
static HINT |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HINT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HINT HINT_NONE
public static final HINT HINT_TAKEN
public static final HINT HINT_NOT_TAKEN
public static HINT[] values()
for (HINT c : HINT.values()) System.out.println(c);
public static HINT 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 final int value()
public static final HINT valueOf(int value)
Copyright © 2017. All rights reserved.