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