public static enum NavuContextBase.UnSetCaseInChoice extends Enum<NavuContextBase.UnSetCaseInChoice>
Enum Constant and Description |
---|
ERROR_EXCEPTION
Threat a unset case as a error
throws exception NavuException.
|
MUTE
Mute all warning messages in the log and
no exception will be thrown.
|
WARN_LOG
Print warn message in the log
no exception will be thrown.
|
WARN_LOG_EXCEPTION
Print warn message in the log
and print the stacktrace as WARN
in the the logger.
|
Modifier and Type | Method and Description |
---|---|
static NavuContextBase.UnSetCaseInChoice |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NavuContextBase.UnSetCaseInChoice[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NavuContextBase.UnSetCaseInChoice MUTE
public static final NavuContextBase.UnSetCaseInChoice WARN_LOG
public static final NavuContextBase.UnSetCaseInChoice WARN_LOG_EXCEPTION
public static final NavuContextBase.UnSetCaseInChoice ERROR_EXCEPTION
public static NavuContextBase.UnSetCaseInChoice[] values()
for (NavuContextBase.UnSetCaseInChoice c : NavuContextBase.UnSetCaseInChoice.values()) System.out.println(c);
public static NavuContextBase.UnSetCaseInChoice 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 null