public static enum WarningAnnotation.Severity extends Enum<WarningAnnotation.Severity>
Modifier and Type | Method and Description |
---|---|
static WarningAnnotation.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WarningAnnotation.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WarningAnnotation.Severity LOW
public static final WarningAnnotation.Severity NORMAL
public static final WarningAnnotation.Severity HIGH
public static WarningAnnotation.Severity[] values()
for (WarningAnnotation.Severity c : WarningAnnotation.Severity.values()) System.out.println(c);
public static WarningAnnotation.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 © 2021 Atlassian Software Systems Pty Ltd. All rights reserved.