public enum ChecksConclusion extends Enum<ChecksConclusion>
NONE, which is used to
represent "no conclusion yet") should be provided when the ChecksStatus of a check is set to
ChecksStatus.COMPLETED.| Enum Constant and Description |
|---|
ACTION_REQUIRED |
CANCELED |
FAILURE |
NEUTRAL |
NONE |
SKIPPED |
SUCCESS |
TIME_OUT |
| Modifier and Type | Method and Description |
|---|---|
static ChecksConclusion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChecksConclusion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChecksConclusion NONE
public static final ChecksConclusion ACTION_REQUIRED
public static final ChecksConclusion SKIPPED
public static final ChecksConclusion CANCELED
public static final ChecksConclusion TIME_OUT
public static final ChecksConclusion FAILURE
public static final ChecksConclusion NEUTRAL
public static final ChecksConclusion SUCCESS
public static ChecksConclusion[] values()
for (ChecksConclusion c : ChecksConclusion.values()) System.out.println(c);
public static ChecksConclusion 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–2021. All rights reserved.