public static enum TerminalBuilder.SystemOutput extends Enum<TerminalBuilder.SystemOutput>
| Enum Constant and Description |
|---|
SysErr |
SysErrOrSysOut |
SysOut |
SysOutOrSysErr |
| Modifier and Type | Method and Description |
|---|---|
static TerminalBuilder.SystemOutput |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TerminalBuilder.SystemOutput[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TerminalBuilder.SystemOutput SysOut
public static final TerminalBuilder.SystemOutput SysErr
public static final TerminalBuilder.SystemOutput SysOutOrSysErr
public static final TerminalBuilder.SystemOutput SysErrOrSysOut
public static TerminalBuilder.SystemOutput[] values()
for (TerminalBuilder.SystemOutput c : TerminalBuilder.SystemOutput.values()) System.out.println(c);
public static TerminalBuilder.SystemOutput 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 © 2023. All rights reserved.