public static enum Stream.MODE extends Enum<Stream.MODE>
| Modifier and Type | Method and Description |
|---|---|
static Stream.MODE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Stream.MODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stream.MODE RAW
public static final Stream.MODE GENERAL
public static Stream.MODE[] values()
for (Stream.MODE c : Stream.MODE.values()) System.out.println(c);
public static Stream.MODE 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 © 2018 JBoss by Red Hat. All rights reserved.