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