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