public enum IntentionGroup extends java.lang.Enum<IntentionGroup>
Enum Constant and Description |
---|
EMPTY_ACTION |
ERROR |
GUTTER |
INSPECTION |
NOTIFICATION |
OTHER |
Modifier and Type | Method and Description |
---|---|
int |
getPriority() |
static IntentionGroup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntentionGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntentionGroup ERROR
public static final IntentionGroup INSPECTION
public static final IntentionGroup NOTIFICATION
public static final IntentionGroup GUTTER
public static final IntentionGroup EMPTY_ACTION
public static final IntentionGroup OTHER
public static IntentionGroup[] values()
for (IntentionGroup c : IntentionGroup.values()) System.out.println(c);
public static IntentionGroup valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getPriority()