public enum DNBAnalysisLevel extends java.lang.Enum<DNBAnalysisLevel>
| Enum Constant and Description |
|---|
DNBAnalysisLevelHighlight |
DNBAnalysisLevelInterrupt |
DNBAnalysisLevelOff |
DNBAnalysisLevelVerbose |
| Modifier and Type | Method and Description |
|---|---|
static DNBAnalysisLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DNBAnalysisLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DNBAnalysisLevel DNBAnalysisLevelOff
public static final DNBAnalysisLevel DNBAnalysisLevelHighlight
public static final DNBAnalysisLevel DNBAnalysisLevelVerbose
public static final DNBAnalysisLevel DNBAnalysisLevelInterrupt
public static DNBAnalysisLevel[] values()
for (DNBAnalysisLevel c : DNBAnalysisLevel.values()) System.out.println(c);
public static DNBAnalysisLevel 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