public enum CheckerStatus extends Enum<CheckerStatus>
This status is a property of the checker's configuration; not to be confused with CheckState
, which is the state of an individual check performed by a checker against a specific
change.
Enum Constant and Description |
---|
DISABLED
The checker is disabled, meaning its checks are not displayed alongside any changes, and the
results are not considered when determining submit requirements.
|
ENABLED
The checker is enabled.
|
Modifier and Type | Method and Description |
---|---|
static CheckerStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckerStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckerStatus ENABLED
public static final CheckerStatus DISABLED
public static CheckerStatus[] values()
for (CheckerStatus c : CheckerStatus.values()) System.out.println(c);
public static CheckerStatus 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 © 2018–2024. All rights reserved.