public static enum IIterationFlowNode.IterationFlowKind extends Enum<IIterationFlowNode.IterationFlowKind>
Enum Constant and Description |
---|
BREAK
Represents a break statement
|
CONTINUE
Represents a continue statement
|
GOTO
Represents a goto statement
|
Modifier and Type | Method and Description |
---|---|
static IIterationFlowNode.IterationFlowKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IIterationFlowNode.IterationFlowKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IIterationFlowNode.IterationFlowKind CONTINUE
public static final IIterationFlowNode.IterationFlowKind BREAK
public static final IIterationFlowNode.IterationFlowKind GOTO
public static IIterationFlowNode.IterationFlowKind[] values()
for (IIterationFlowNode.IterationFlowKind c : IIterationFlowNode.IterationFlowKind.values()) System.out.println(c);
public static IIterationFlowNode.IterationFlowKind 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 © 2016 The Apache Software Foundation. All rights reserved.