Package org.jline.style
Class StyleFactory
- java.lang.Object
-
- org.jline.style.StyleFactory
-
public class StyleFactory extends java.lang.ObjectFactory to create styled strings.- Since:
- 3.4
-
-
Field Summary
Fields Modifier and Type Field Description private StyleResolverresolver
-
Constructor Summary
Constructors Constructor Description StyleFactory(StyleResolver resolver)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttributedStringevaluate(java.lang.String expression)Evaluate a style expression.AttributedStringevaluate(java.lang.String format, java.lang.Object... params)Evaluate a style expression with format.AttributedStringstyle(java.lang.String style, java.lang.String value)Encode string with style applying value.AttributedStringstyle(java.lang.String style, java.lang.String format, java.lang.Object... params)Encode string with style formatted value.
-
-
-
Field Detail
-
resolver
private final StyleResolver resolver
-
-
Constructor Detail
-
StyleFactory
public StyleFactory(StyleResolver resolver)
-
-
Method Detail
-
style
public AttributedString style(java.lang.String style, java.lang.String value)
Encode string with style applying value.- Parameters:
style- the stylevalue- the value- Returns:
- the result string
-
style
public AttributedString style(java.lang.String style, java.lang.String format, java.lang.Object... params)
Encode string with style formatted value.- Parameters:
style- the styleformat- the formatparams- the parameters- Returns:
- the result string
- See Also:
style(String, String)
-
evaluate
public AttributedString evaluate(java.lang.String expression)
Evaluate a style expression.- Parameters:
expression- the expression to evaluate- Returns:
- the result string
-
evaluate
public AttributedString evaluate(java.lang.String format, java.lang.Object... params)
Evaluate a style expression with format.- Parameters:
format- the formatparams- the parameters- Returns:
- the result string
- See Also:
evaluate(String)
-
-