public static enum BasicCommandLauncher.Output extends Enum<BasicCommandLauncher.Output> implements BasicCommandLauncher.OutputConsumer
Enum Constant and Description |
---|
LOGGING
Print via logger.
|
NOTHING
Print nothing.
|
STANDARD
Print to standard outputs.
|
Modifier and Type | Method and Description |
---|---|
static BasicCommandLauncher.Output |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BasicCommandLauncher.Output[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
accept
public static final BasicCommandLauncher.Output STANDARD
public static final BasicCommandLauncher.Output LOGGING
public static final BasicCommandLauncher.Output NOTHING
public static BasicCommandLauncher.Output[] values()
for (BasicCommandLauncher.Output c : BasicCommandLauncher.Output.values()) System.out.println(c);
public static BasicCommandLauncher.Output 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 © 2011–2019 Asakusa Framework Team. All rights reserved.