public static enum Check.CheckStatus extends java.lang.Enum<Check.CheckStatus>
| Modifier and Type | Method and Description |
|---|---|
static Check.CheckStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Check.CheckStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="unknown") public static final Check.CheckStatus UNKNOWN
@SerializedName(value="passing") public static final Check.CheckStatus PASSING
@SerializedName(value="warning") public static final Check.CheckStatus WARNING
@SerializedName(value="critical") public static final Check.CheckStatus CRITICAL
public static Check.CheckStatus[] values()
for (Check.CheckStatus c : Check.CheckStatus.values()) System.out.println(c);
public static Check.CheckStatus 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