AttributedStringBuilder |
AttributedStringBuilder.altCharset(java.lang.String altIn,
java.lang.String altOut) |
Sets the alternate character set sequences for this builder.
|
AttributedStringBuilder |
AttributedStringBuilder.ansiAppend(java.lang.String ansi) |
Appends the specified ANSI-encoded string to this builder.
|
AttributedStringBuilder |
AttributedStringBuilder.append(char c) |
Appends the specified character to this builder.
|
AttributedStringBuilder |
AttributedStringBuilder.append(char c,
int repeat) |
Appends the specified character to this builder multiple times.
|
AttributedStringBuilder |
AttributedStringBuilder.append(java.lang.CharSequence csq) |
Appends the specified character sequence to this builder.
|
AttributedStringBuilder |
AttributedStringBuilder.append(java.lang.CharSequence csq,
int start,
int end) |
Appends a subsequence of the specified character sequence to this builder.
|
AttributedStringBuilder |
AttributedStringBuilder.append(java.lang.CharSequence csq,
AttributedStyle style) |
Appends the specified character sequence to this builder with the specified style.
|
AttributedStringBuilder |
AttributedStringBuilder.append(AttributedCharSequence str) |
Appends the specified AttributedCharSequence to this builder.
|
AttributedStringBuilder |
AttributedStringBuilder.append(AttributedCharSequence str,
int start,
int end) |
Appends a subsequence of the specified AttributedCharSequence to this builder.
|
AttributedStringBuilder |
AttributedStringBuilder.append(AttributedString str) |
Appends the specified AttributedString to this builder.
|
AttributedStringBuilder |
AttributedStringBuilder.append(AttributedString str,
int start,
int end) |
Appends a subsequence of the specified AttributedString to this builder.
|
AttributedStringBuilder |
AttributedStringBuilder.style(java.util.function.Function<AttributedStyle,AttributedStyle> style) |
Updates the current style for this builder using a function.
|
AttributedStringBuilder |
AttributedStringBuilder.style(AttributedStyle style) |
Sets the current style for this builder.
|
AttributedStringBuilder |
AttributedStringBuilder.styled(java.util.function.Function<AttributedStyle,AttributedStyle> style,
java.lang.CharSequence cs) |
Appends the specified character sequence with a temporarily modified style.
|
AttributedStringBuilder |
AttributedStringBuilder.styled(java.util.function.Function<AttributedStyle,AttributedStyle> style,
java.util.function.Consumer<AttributedStringBuilder> consumer) |
Performs operations with a temporarily modified style.
|
AttributedStringBuilder |
AttributedStringBuilder.styled(AttributedStyle style,
java.lang.CharSequence cs) |
Appends the specified character sequence with the specified style.
|
AttributedStringBuilder |
AttributedStringBuilder.styleMatches(java.util.regex.Pattern pattern,
java.util.List<AttributedStyle> styles) |
Applies different styles to different capture groups in pattern matches.
|
AttributedStringBuilder |
AttributedStringBuilder.styleMatches(java.util.regex.Pattern pattern,
AttributedStyle s) |
Applies the specified style to all matches of the pattern in this builder.
|
AttributedStringBuilder |
AttributedStringBuilder.tabs(int tabsize) |
Set the number of spaces a tab is expanded to.
|
AttributedStringBuilder |
AttributedStringBuilder.tabs(java.util.List<java.lang.Integer> tabs) |
Sets the tab stops for this attributed string builder.
|