public static enum BasicCommandLauncher.OutputChannel extends Enum<BasicCommandLauncher.OutputChannel>
Enum Constant and Description |
---|
STANDARD_ERROR_OUTPUT
Standard error output.
|
STANDARD_OUTPUT
Standard output.
|
Modifier and Type | Method and Description |
---|---|
String |
getSymbol()
Returns the symbol.
|
String |
toString() |
static BasicCommandLauncher.OutputChannel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BasicCommandLauncher.OutputChannel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicCommandLauncher.OutputChannel STANDARD_OUTPUT
public static final BasicCommandLauncher.OutputChannel STANDARD_ERROR_OUTPUT
public static BasicCommandLauncher.OutputChannel[] values()
for (BasicCommandLauncher.OutputChannel c : BasicCommandLauncher.OutputChannel.values()) System.out.println(c);
public static BasicCommandLauncher.OutputChannel 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 String getSymbol()
public String toString()
toString
in class Enum<BasicCommandLauncher.OutputChannel>
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.