public static enum JumpTree.JumpKind extends Enum<JumpTree.JumpKind>
| Modifier and Type | Method and Description |
|---|---|
static JumpTree.JumpKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JumpTree.JumpKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JumpTree.JumpKind BREAK
public static final JumpTree.JumpKind CONTINUE
public static JumpTree.JumpKind[] values()
for (JumpTree.JumpKind c : JumpTree.JumpKind.values()) System.out.println(c);
public static JumpTree.JumpKind 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.