public enum CommandLineOption extends Enum<CommandLineOption>
Enum Constant and Description |
---|
LOGGING_LEVEL_DEBUG |
LOGGING_LEVEL_ERROR |
LOGGING_LEVEL_INFO |
LOGGING_LEVEL_WARN |
REACTOR_FAIL_AT_END |
REACTOR_FAIL_FAST |
REACTOR_FAIL_NEVER |
SHOW_ERRORS |
Modifier and Type | Method and Description |
---|---|
static List<CommandLineOption> |
fromStrings(Collection<String> elements) |
static CommandLineOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommandLineOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandLineOption REACTOR_FAIL_FAST
public static final CommandLineOption REACTOR_FAIL_AT_END
public static final CommandLineOption REACTOR_FAIL_NEVER
public static final CommandLineOption SHOW_ERRORS
public static final CommandLineOption LOGGING_LEVEL_WARN
public static final CommandLineOption LOGGING_LEVEL_INFO
public static final CommandLineOption LOGGING_LEVEL_ERROR
public static final CommandLineOption LOGGING_LEVEL_DEBUG
public static CommandLineOption[] values()
for (CommandLineOption c : CommandLineOption.values()) System.out.println(c);
public static CommandLineOption 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 static List<CommandLineOption> fromStrings(Collection<String> elements)
Copyright © 2004–2024 The Apache Software Foundation. All rights reserved.