public enum KindSet extends Enum<KindSet> implements Kinds
| Enum Constant and Description |
|---|
ASSIGNMENT_KINDS |
EQUALITY_KINDS |
FUNCTION_KINDS |
INC_DEC_KINDS |
LITERAL_KINDS |
LOOP_KINDS |
| Modifier and Type | Method and Description |
|---|---|
boolean |
contains(Kinds other) |
Set<Tree.Kind> |
getSubKinds() |
static KindSet |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KindSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KindSet ASSIGNMENT_KINDS
public static final KindSet INC_DEC_KINDS
public static final KindSet EQUALITY_KINDS
public static final KindSet FUNCTION_KINDS
public static final KindSet LOOP_KINDS
public static final KindSet LITERAL_KINDS
public static KindSet[] values()
for (KindSet c : KindSet.values()) System.out.println(c);
public static KindSet 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 nullCopyright © 2011–2017 SonarSource and Eriks Nukis. All rights reserved.