Package org.jline.style
Interface StyleSource
-
- All Known Implementing Classes:
MemoryStyleSource,NopStyleSource
public interface StyleSourceProvides the source of style configuration.- Since:
- 3.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclear()Clear all styles.java.lang.Stringget(java.lang.String group, java.lang.String name)Returns the appropriate style for the given style-group and style-name, ornullif missing.java.lang.Iterable<java.lang.String>groups()Returns configured style-group names.voidremove(java.lang.String group)Remove all styles for given style-group.voidremove(java.lang.String group, java.lang.String name)Remove a specific style from style-group.voidset(java.lang.String group, java.lang.String name, java.lang.String style)Set a specific style in a style-group.java.util.Map<java.lang.String,java.lang.String>styles(java.lang.String group)Returns configured styles for given style-group.
-
-
-
Method Detail
-
get
@Nullable java.lang.String get(java.lang.String group, java.lang.String name)Returns the appropriate style for the given style-group and style-name, ornullif missing.- Parameters:
group- the groupname- the style name- Returns:
- the style
-
set
void set(java.lang.String group, java.lang.String name, java.lang.String style)Set a specific style in a style-group.- Parameters:
group- the groupname- the style namestyle- the style to set
-
remove
void remove(java.lang.String group)
Remove all styles for given style-group.- Parameters:
group- the group
-
remove
void remove(java.lang.String group, java.lang.String name)Remove a specific style from style-group.- Parameters:
group- the groupname- the style name to remove
-
clear
void clear()
Clear all styles.
-
groups
java.lang.Iterable<java.lang.String> groups()
Returns configured style-group names.- Returns:
- Immutable collection.
-
styles
java.util.Map<java.lang.String,java.lang.String> styles(java.lang.String group)
Returns configured styles for given style-group.- Parameters:
group- the style group- Returns:
- Immutable map.
-
-