public static enum CoprocessorViolation.Severity extends Enum<CoprocessorViolation.Severity>
Modifier and Type | Method and Description |
---|---|
static CoprocessorViolation.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoprocessorViolation.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoprocessorViolation.Severity WARNING
public static final CoprocessorViolation.Severity ERROR
public static CoprocessorViolation.Severity[] values()
for (CoprocessorViolation.Severity c : CoprocessorViolation.Severity.values()) System.out.println(c);
public static CoprocessorViolation.Severity 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 © 2007–2020 The Apache Software Foundation. All rights reserved.