public static enum ModifierTree.Kind extends Enum<ModifierTree.Kind>
| Modifier and Type | Method and Description |
|---|---|
static ModifierTree.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModifierTree.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModifierTree.Kind PUBLIC
public static final ModifierTree.Kind PRIVATE
public static ModifierTree.Kind[] values()
for (ModifierTree.Kind c : ModifierTree.Kind.values()) System.out.println(c);
public static ModifierTree.Kind 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 © 2009–2018 SonarSource. All rights reserved.