Enum Constant and Description |
---|
ENTRY
Entry into a function.
|
NONE
No function boundary crossed.
|
RETURN
Return from a function.
|
Modifier and Type | Method and Description |
---|---|
static Flow.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Flow.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flow.Kind ENTRY
public static final Flow.Kind RETURN
public static final Flow.Kind NONE
public static Flow.Kind[] values()
for (Flow.Kind c : Flow.Kind.values()) System.out.println(c);
public static Flow.Kind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null