public static enum ProblemRule.Type extends Enum<ProblemRule.Type>
Enum Constant and Description |
---|
NOT_APPLICABLE
Rule not applicable
|
NOT_ENABLED
Rule not enabled
|
NOT_FOUND
Rule not found
|
Modifier and Type | Method and Description |
---|---|
static ProblemRule.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProblemRule.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProblemRule.Type NOT_FOUND
public static final ProblemRule.Type NOT_ENABLED
public static final ProblemRule.Type NOT_APPLICABLE
public static ProblemRule.Type[] values()
for (ProblemRule.Type c : ProblemRule.Type.values()) System.out.println(c);
public static ProblemRule.Type 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 © 2013–2019. All rights reserved.