public enum NPriority extends Enum<NPriority>
| Enum Constant and Description |
|---|
CRITICAL |
HIGH |
LOW |
MEDIUM |
NONE |
NORMAL |
URGENT |
| Modifier and Type | Method and Description |
|---|---|
NPriority |
higher() |
NPriority |
lower() |
static NPriority |
parse(String v) |
static NPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NPriority NONE
public static final NPriority LOW
public static final NPriority MEDIUM
public static final NPriority NORMAL
public static final NPriority HIGH
public static final NPriority URGENT
public static final NPriority CRITICAL
public static NPriority[] values()
for (NPriority c : NPriority.values()) System.out.println(c);
public static NPriority 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 nullpublic NPriority higher()
public NPriority lower()
Copyright © 2022 vpc open source initiative. All rights reserved.