public static enum ConformanceRules.ConformanceLevel extends java.lang.Enum<ConformanceRules.ConformanceLevel>
| Enum Constant and Description |
|---|
CONFORMANCE |
POSSIBLE_VIOLATION |
VIOLATION |
| Modifier and Type | Method and Description |
|---|---|
static ConformanceRules.ConformanceLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConformanceRules.ConformanceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConformanceRules.ConformanceLevel CONFORMANCE
public static final ConformanceRules.ConformanceLevel POSSIBLE_VIOLATION
public static final ConformanceRules.ConformanceLevel VIOLATION
public static ConformanceRules.ConformanceLevel[] values()
for (ConformanceRules.ConformanceLevel c : ConformanceRules.ConformanceLevel.values()) System.out.println(c);
public static ConformanceRules.ConformanceLevel valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2009-2020 Google. All Rights Reserved.