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