@Deprecated public enum Priority extends Enum<Priority>
NONE
could be used to cancel an inherited
@Audited
annotation.
From 7.0 onward, specifying a Priority
on Audited
events is optional, and internally
any Priority
specified will be ignored. This class and Audited
will be removed in 8.0.
Consumers are recommended to use Auditable
instead, and specify the relevant CoverageLevel
and CoverageArea
for the event.
Audited
Enum Constant and Description |
---|
HIGH
Deprecated.
|
LOW
Deprecated.
|
MEDIUM
Deprecated.
|
NONE
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
int |
getWeight()
Deprecated.
Retrieves the weight of this priority relative to other priorities.
|
static Priority |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Priority[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Priority HIGH
public static final Priority MEDIUM
public static final Priority LOW
public static final Priority NONE
public static Priority[] values()
for (Priority c : Priority.values()) System.out.println(c);
public static 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 nullpublic int getWeight()
Copyright © 2022 Atlassian. All rights reserved.