public static enum stream.flags extends Enum<stream.flags>
| Enum Constant and Description |
|---|
default_flags
Default stream configuration.
|
default_order
Default order execution.
|
in_order
In-order execution.
|
out_of_order
Out-of-order execution.
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
stream.flags |
intern() |
String |
toString() |
static stream.flags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static stream.flags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final stream.flags default_order
public static final stream.flags in_order
public static final stream.flags out_of_order
public static final stream.flags default_flags
public static stream.flags[] values()
for (stream.flags c : stream.flags.values()) System.out.println(c);
public static stream.flags 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 nullpublic stream.flags intern()
public String toString()
toString in class Enum<stream.flags>Copyright © 2020. All rights reserved.