public enum ChecksStatus extends Enum<ChecksStatus>
| Enum Constant and Description |
|---|
COMPLETED |
IN_PROGRESS |
NONE |
QUEUED |
| Modifier and Type | Method and Description |
|---|---|
static ChecksStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChecksStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChecksStatus NONE
public static final ChecksStatus QUEUED
public static final ChecksStatus IN_PROGRESS
public static final ChecksStatus COMPLETED
public static ChecksStatus[] values()
for (ChecksStatus c : ChecksStatus.values()) System.out.println(c);
public static ChecksStatus 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 © 2016–2020. All rights reserved.