public enum SonarPriority extends Enum<SonarPriority>
| Enum Constant and Description |
|---|
BLOCKER |
CRITICAL |
INFO |
MAJOR |
MINOR |
| Modifier and Type | Method and Description |
|---|---|
static String |
getPriorityValueByNameJson() |
static SonarPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SonarPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SonarPriority INFO
public static final SonarPriority MINOR
public static final SonarPriority MAJOR
public static final SonarPriority CRITICAL
public static final SonarPriority BLOCKER
public static SonarPriority[] values()
for (SonarPriority c : SonarPriority.values()) System.out.println(c);
public static SonarPriority 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 static String getPriorityValueByNameJson()
Copyright © 2004-2015. All Rights Reserved.