public static enum LintFix.GroupType extends java.lang.Enum<LintFix.GroupType>
LintFix.LintFixGroup| Enum Constant and Description |
|---|
ALTERNATIVES
This group represents separate fix alternatives the user can choose between
|
COMPOSITE
This group represents a single fix where all the fixes should be applied as one
|
| Modifier and Type | Method and Description |
|---|---|
static LintFix.GroupType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LintFix.GroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LintFix.GroupType COMPOSITE
public static final LintFix.GroupType ALTERNATIVES
public static LintFix.GroupType[] values()
for (LintFix.GroupType c : LintFix.GroupType.values()) System.out.println(c);
public static LintFix.GroupType 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 null