Package picocli
Class CommandLine.Help.ColorScheme
java.lang.Object
picocli.CommandLine.Help.ColorScheme
- Enclosing class:
CommandLine.Help
All usage help message are generated with a color scheme that assigns certain styles and colors to common
parts of a usage message: the command name, options, positional parameters and option parameters.
Users may customize these styles by creating Help with a custom color scheme.
Note that these options and styles may not be rendered if ANSI escape codes are not enabled.
From 4.0, instances of this class are immutable.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Builder class to createColorScheme
instances. -
Method Summary
Modifier and TypeMethodDescriptionansi()
Returns theAnsi
setting of this color scheme.apply
(String plainText, List<CommandLine.Help.Ansi.IStyle> styles) Returns a new Text object where all the specified styles are applied to the full length of the specified plain text.Returns the registered styles for commands in this color scheme.commandText
(String command) Returns a Text with all command styles applied to the specified command string.Returns the custom mapping from markup names (the names of theCommandLine.Help.Ansi.Style
enum constants, like bold, italic, fg_blue, bg_green, etc) toCommandLine.Help.Ansi.IStyle
objects in this color scheme.boolean
Returns the registered styles for errors in this color scheme.Returns a Text with all error styles applied to the specified error string.int
hashCode()
Returns the registered styles for option parameters in this color scheme.optionParamText
(String optionParam) Returns a Text with all optionParam styles applied to the specified optionParam string.Returns the registered styles for options in this color scheme.optionText
(String option) Returns a Text with all option styles applied to the specified option string.Returns the registered styles for positional parameters in this color scheme.parameterText
(String parameter) Returns a Text with all parameter styles applied to the specified parameter string.Converts the specified markup styles to an array ofCommandLine.Help.Ansi.IStyle
objects.Returns the style that "resets" the style state to neutral.Returns a String with theerror styles
applied to the stack trace lines showing the throwable class name and error message (including "Caused by:..." lines), and thestack trace styles
applied to the remaining stack trace of lines the specified Throwable.Returns the registered styles for stack traces in this color scheme.stackTraceText
(String stackTrace) Returns a Text with all stackTrace styles applied to all lines in the specified stackTrace string.Returns a Text with all stackTrace styles applied to all lines in the stack trace of the specified Throwable.Returns a String where any markup like@|bg(red),white,underline some text|@
is converted to the styles defined in this ColorScheme (if its Ansi mode is ON), or to the plain text without the markup (if this ColorScheme's Ansi mode is OFF).Returns a new Text object for this ColorScheme, encapsulating the specified string which may contain markup like@|bg(red),white,underline some text|@
.toString()
-
Method Details
-
commandText
Returns a Text with all command styles applied to the specified command string.- Parameters:
command
- the command string to apply the registered command styles to- Returns:
- a Text with all command styles applied to the specified command string
-
optionText
Returns a Text with all option styles applied to the specified option string.- Parameters:
option
- the option string to apply the registered option styles to- Returns:
- a Text with all option styles applied to the specified option string
-
parameterText
Returns a Text with all parameter styles applied to the specified parameter string.- Parameters:
parameter
- the parameter string to apply the registered parameter styles to- Returns:
- a Text with all parameter styles applied to the specified parameter string
-
optionParamText
Returns a Text with all optionParam styles applied to the specified optionParam string.- Parameters:
optionParam
- the option parameter string to apply the registered option parameter styles to- Returns:
- a Text with all option parameter styles applied to the specified option parameter string
-
errorText
Returns a Text with all error styles applied to the specified error string.- Parameters:
error
- the error string to apply the registered error styles to- Returns:
- a Text with all error styles applied to the specified error string
- Since:
- 4.3
-
stackTraceText
Returns a Text with all stackTrace styles applied to all lines in the specified stackTrace string.- Parameters:
stackTrace
- the stack trace string to apply the registered stack trace styles to- Returns:
- a Text with all stack trace styles applied to the specified stack trace string
- Since:
- 4.3
-
stackTraceText
Returns a Text with all stackTrace styles applied to all lines in the stack trace of the specified Throwable.- Parameters:
t
- the Throwable whose stack trace string to apply the registered stack trace styles to- Returns:
- a Text with all stack trace styles applied to the stack trace of the specified Throwable
- Since:
- 4.5
-
richStackTraceString
Returns a String with theerror styles
applied to the stack trace lines showing the throwable class name and error message (including "Caused by:..." lines), and thestack trace styles
applied to the remaining stack trace of lines the specified Throwable.- Parameters:
t
- the Throwable whose stack trace string to apply the error and stack trace styles to- Returns:
- a String with error and stack trace styles applied to the stack trace of the specified Throwable
- Since:
- 4.5
-
ansi
Returns theAnsi
setting of this color scheme. -
commandStyles
Returns the registered styles for commands in this color scheme.- Since:
- 4.0
-
optionStyles
Returns the registered styles for options in this color scheme.- Since:
- 4.0
-
parameterStyles
Returns the registered styles for positional parameters in this color scheme.- Since:
- 4.0
-
optionParamStyles
Returns the registered styles for option parameters in this color scheme.- Since:
- 4.0
-
errorStyles
Returns the registered styles for errors in this color scheme.- Since:
- 4.3
-
stackTraceStyles
Returns the registered styles for stack traces in this color scheme.- Since:
- 4.3
-
customMarkupMap
Returns the custom mapping from markup names (the names of theCommandLine.Help.Ansi.Style
enum constants, like bold, italic, fg_blue, bg_green, etc) toCommandLine.Help.Ansi.IStyle
objects in this color scheme. By default this returns an empty map, unless a custom map was configured.- Since:
- 4.2
-
parse
Converts the specified markup styles to an array ofCommandLine.Help.Ansi.IStyle
objects. If no custom markup mapping is specified, this method delegates toCommandLine.Help.Ansi.Style.parse(String)
, otherwise it returns the styles found in the custom mapping for the specified markup styles.- Parameters:
commaSeparatedCodes
- a string with a comma-separated list of markup styles (for example,"bold,underline,bg_red"
- Since:
- 4.2
-
resetStyle
Returns the style that "resets" the style state to neutral.- Returns:
CommandLine.Help.Ansi.Style.reset
if no customMarkupMap() is defined, otherwise either the style registered with the "reset" name or an emptyIStyle
if no such style is registered.- Since:
- 4.2
-
equals
-
hashCode
public int hashCode() -
toString
-
apply
public CommandLine.Help.Ansi.Text apply(String plainText, List<CommandLine.Help.Ansi.IStyle> styles) Returns a new Text object where all the specified styles are applied to the full length of the specified plain text.- Parameters:
plainText
- the string to apply all styles to. Must not contain markup!styles
- the styles to apply to the full plain text- Returns:
- a new Text object
- Since:
- 4.2
-
text
Returns a new Text object for this ColorScheme, encapsulating the specified string which may contain markup like@|bg(red),white,underline some text|@
.Calling
toString()
on the returned Text will convert the markup to the styles defined in this ColorScheme (if its Ansi mode is ON), or to the plain text without the markup (if this ColorScheme's Ansi mode is OFF).Equivalent to
this.ansi().new Text(stringWithMarkup, this)
.- Since:
- 4.2
- See Also:
-
string
Returns a String where any markup like@|bg(red),white,underline some text|@
is converted to the styles defined in this ColorScheme (if its Ansi mode is ON), or to the plain text without the markup (if this ColorScheme's Ansi mode is OFF).Equivalent to
this.ansi().new Text(stringWithMarkup, this).toString()
.- Since:
- 4.2
- See Also:
-