public static enum Issue.Priority extends Enum<Issue.Priority>
Enum Constant and Description |
---|
CRITICAL |
HIGH |
LOW |
MEDIUM |
NECESSARILY |
Modifier and Type | Method and Description |
---|---|
static Issue.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Issue.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Issue.Priority CRITICAL
public static final Issue.Priority HIGH
public static final Issue.Priority MEDIUM
public static final Issue.Priority LOW
public static final Issue.Priority NECESSARILY
public static Issue.Priority[] values()
for (Issue.Priority c : Issue.Priority.values()) System.out.println(c);
public static Issue.Priority 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 © 2018 Terra Software Informatics LLC.. All rights reserved.