public enum Stream extends Enum<Stream>
| Enum Constant and Description |
|---|
FILE
Output to a specific file.
|
ROTATED_FILE
Output to a specific rotating file, controlled by the various file rotation options.
|
STDERR
Output to the Mixer process' standard error stream.
|
STDOUT
Output to the Mixer process' standard output stream.
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static Stream |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Stream[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stream STDOUT
public static final Stream STDERR
public static final Stream FILE
public static final Stream ROTATED_FILE
public static Stream[] values()
for (Stream c : Stream.values()) System.out.println(c);
public static Stream 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 int value()
Copyright © 2017–2018 Red Hat. All rights reserved.