public static enum ConformanceRules.ConformanceResult extends Enum<ConformanceRules.ConformanceResult>
Enum Constant and Description |
---|
CONFORMANCE |
POSSIBLE_VIOLATION |
VIOLATION |
Modifier and Type | Method and Description |
---|---|
static ConformanceRules.ConformanceResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConformanceRules.ConformanceResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConformanceRules.ConformanceResult CONFORMANCE
public static final ConformanceRules.ConformanceResult POSSIBLE_VIOLATION
public static final ConformanceRules.ConformanceResult VIOLATION
public static ConformanceRules.ConformanceResult[] values()
for (ConformanceRules.ConformanceResult c : ConformanceRules.ConformanceResult.values()) System.out.println(c);
public static ConformanceRules.ConformanceResult 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 © 2009-2015 Google. All Rights Reserved.