Package org.eclipse.jetty.util
Class CharsetStringBuilder.Iso88591StringBuilder
- java.lang.Object
-
- org.eclipse.jetty.util.CharsetStringBuilder.Iso88591StringBuilder
-
- All Implemented Interfaces:
CharsetStringBuilder
- Enclosing interface:
- CharsetStringBuilder
@Deprecated(since="2021-05-27") public static class CharsetStringBuilder.Iso88591StringBuilder extends java.lang.Object implements CharsetStringBuilder
Deprecated.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.CharsetStringBuilder
CharsetStringBuilder.DecoderStringBuilder, CharsetStringBuilder.Iso88591StringBuilder, CharsetStringBuilder.UsAsciiStringBuilder
-
-
Constructor Summary
Constructors Constructor Description Iso88591StringBuilder()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidappend(byte b)Deprecated.voidappend(char c)Deprecated.voidappend(java.lang.CharSequence chars, int offset, int length)Deprecated.java.lang.Stringbuild()Deprecated.Build the completed string and reset the buffer.voidreset()Deprecated.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.jetty.util.CharsetStringBuilder
append, append, append
-
-
-
-
Method Detail
-
append
public void append(byte b)
Deprecated.- Specified by:
appendin interfaceCharsetStringBuilder- Parameters:
b- An encoded byte to append
-
append
public void append(char c)
Deprecated.- Specified by:
appendin interfaceCharsetStringBuilder- Parameters:
c- A decoded character to append
-
append
public void append(java.lang.CharSequence chars, int offset, int length)Deprecated.- Specified by:
appendin interfaceCharsetStringBuilder- Parameters:
chars- sequence of decoded charactersoffset- offset into the arraylength- the number of character to append from the sequence.
-
build
public java.lang.String build()
Deprecated.Description copied from interface:CharsetStringBuilderBuild the completed string and reset the buffer.
- Specified by:
buildin interfaceCharsetStringBuilder- Returns:
- The decoded built string which must be complete in regard to any multibyte sequences.
-
reset
public void reset()
Deprecated.- Specified by:
resetin interfaceCharsetStringBuilder
-
-