Enum CommandException.Option
java.lang.Object
java.lang.Enum<CommandException.Option>
org.springframework.boot.cli.command.CommandException.Option
- All Implemented Interfaces:
Serializable
,Comparable<CommandException.Option>
,Constable
- Enclosing class:
- CommandException
Specific options understood by the
CommandRunner
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionHide the exception message.Re-throw the exception rather than dealing with it.Print basic CLI usage information.Print the stack-trace of the exception. -
Method Summary
Modifier and TypeMethodDescriptionstatic CommandException.Option
Returns the enum constant of this type with the specified name.static CommandException.Option[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
HIDE_MESSAGE
Hide the exception message. -
SHOW_USAGE
Print basic CLI usage information. -
STACK_TRACE
Print the stack-trace of the exception. -
RETHROW
Re-throw the exception rather than dealing with it.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-