Package org.eclipse.jetty.util
Class CharsetStringBuilder.UsAsciiStringBuilder
java.lang.Object
org.eclipse.jetty.util.CharsetStringBuilder.UsAsciiStringBuilder
- All Implemented Interfaces:
CharsetStringBuilder
- Enclosing interface:
- CharsetStringBuilder
public static class CharsetStringBuilder.UsAsciiStringBuilder
extends Object
implements CharsetStringBuilder
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.CharsetStringBuilder
CharsetStringBuilder.DecoderStringBuilder, CharsetStringBuilder.Iso88591StringBuilder, CharsetStringBuilder.UsAsciiStringBuilder
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
append
(byte b) void
append
(char c) void
append
(CharSequence chars, int offset, int length) build()
Build the completed string and reset the buffer.build
(boolean ignored) Attempt to build the completed string and reset the buffer, returning a partial string if there are encoding errorsint
length()
void
reset()
Resets this sequence to be empty.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.jetty.util.CharsetStringBuilder
append, append, append, hasCodingErrors, replaceIncomplete
-
Constructor Details
-
UsAsciiStringBuilder
public UsAsciiStringBuilder()
-
-
Method Details
-
append
public void append(byte b) - Specified by:
append
in interfaceCharsetStringBuilder
- Parameters:
b
- An encoded byte to append
-
append
public void append(char c) - Specified by:
append
in interfaceCharsetStringBuilder
- Parameters:
c
- A decoded character to append
-
append
- Specified by:
append
in interfaceCharsetStringBuilder
- Parameters:
chars
- sequence of decoded charactersoffset
- offset into the arraylength
- the number of character to append from the sequence.
-
build
Description copied from interface:CharsetStringBuilder
Build the completed string and reset the buffer.
- Specified by:
build
in interfaceCharsetStringBuilder
- Returns:
- The decoded built string which must be complete in regard to any multibyte sequences.
-
build
Description copied from interface:CharsetStringBuilder
Attempt to build the completed string and reset the buffer, returning a partial string if there are encoding errors
Note, only some implementations support the
allowPartialString
parameter- Specified by:
build
in interfaceCharsetStringBuilder
- Parameters:
ignored
- true if a partial string is allowed to be returned, false means if complete string cannot be returned, an exception is thrown.- Returns:
- The available string (complete or partial)
-
length
public int length()- Specified by:
length
in interfaceCharsetStringBuilder
- Returns:
- the length in characters
-
reset
public void reset()Description copied from interface:CharsetStringBuilder
Resets this sequence to be empty.
- Specified by:
reset
in interfaceCharsetStringBuilder
-