public enum ThreatAssessmentStatus extends java.lang.Enum<ThreatAssessmentStatus>
Enum Constant and Description |
---|
COMPLETED
completed
|
PENDING
pending
|
UNEXPECTED_VALUE
For ThreatAssessmentStatus values that were not expected from the service
|
Modifier and Type | Method and Description |
---|---|
static ThreatAssessmentStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ThreatAssessmentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThreatAssessmentStatus PENDING
public static final ThreatAssessmentStatus COMPLETED
public static final ThreatAssessmentStatus UNEXPECTED_VALUE
public static ThreatAssessmentStatus[] values()
for (ThreatAssessmentStatus c : ThreatAssessmentStatus.values()) System.out.println(c);
public static ThreatAssessmentStatus 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