public static enum Utilities.StreamStatus extends Enum<Utilities.StreamStatus>
| Enum Constant and Description |
|---|
EOF |
TERMINATED |
| Modifier and Type | Method and Description |
|---|---|
static Utilities.StreamStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Utilities.StreamStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Utilities.StreamStatus EOF
public static final Utilities.StreamStatus TERMINATED
public static Utilities.StreamStatus[] values()
for (Utilities.StreamStatus c : Utilities.StreamStatus.values()) System.out.println(c);
public static Utilities.StreamStatus 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 © 2019 The Apache Software Foundation. All Rights Reserved.