public enum ParamImportance extends java.lang.Enum<ParamImportance>
Enum Constant and Description |
---|
CRITICAL |
EXPERT |
SECONDARY |
UNIMPORTANT |
Modifier and Type | Field and Description |
---|---|
java.lang.String |
help |
java.lang.String |
title
Printable name
|
Modifier and Type | Method and Description |
---|---|
static ParamImportance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParamImportance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamImportance UNIMPORTANT
public static final ParamImportance CRITICAL
public static final ParamImportance SECONDARY
public static final ParamImportance EXPERT
public final java.lang.String title
public final java.lang.String help
public static ParamImportance[] values()
for (ParamImportance c : ParamImportance.values()) System.out.println(c);
public static ParamImportance valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null