| Package | Description |
|---|---|
| org.osgl | |
| org.osgl.util |
| Modifier and Type | Field and Description |
|---|---|
static Lang.TypeConverter<Appendable,Output> |
Lang.TypeConverter.APPENDABLE_TO_OUTPUT |
static Lang.TypeConverter<Output,Writer> |
Lang.TypeConverter.OUTPUT_TO_WRITER |
static Lang.TypeConverter<Writer,Output> |
Lang.TypeConverter.WRITER_TO_OUTPUT |
| Modifier and Type | Class and Description |
|---|---|
class |
BufferedOutput
This class implements a buffered output.
|
class |
OutputStreamOutput |
class |
WriterOutput |
| Modifier and Type | Method and Description |
|---|---|
Output |
WriterOutput.append(byte b) |
Output |
BufferedOutput.append(byte b) |
Output |
Output.append(byte b)
Appends a byte to this
Output. |
Output |
OutputStreamOutput.append(byte b) |
Output |
WriterOutput.append(byte[] bytes) |
Output |
BufferedOutput.append(byte[] bytes) |
Output |
Output.append(byte[] bytes)
Appends a byte array to this
Output. |
Output |
OutputStreamOutput.append(byte[] bytes) |
Output |
WriterOutput.append(byte[] bytes,
int start,
int end) |
Output |
BufferedOutput.append(byte[] bytes,
int start,
int end) |
Output |
Output.append(byte[] bytes,
int start,
int end)
Appends a subsequence of the specified byte array to this Output.
|
Output |
OutputStreamOutput.append(byte[] bytes,
int start,
int end) |
Output |
WriterOutput.append(ByteBuffer buffer) |
Output |
BufferedOutput.append(ByteBuffer buffer) |
Output |
Output.append(ByteBuffer buffer)
Appends the specified buffer into this Appendable.
|
Output |
OutputStreamOutput.append(ByteBuffer buffer) |
Output |
WriterOutput.append(char c) |
Output |
BufferedOutput.append(char c) |
Output |
Output.append(char c)
Appends the specified character to this Output.
|
Output |
OutputStreamOutput.append(char c) |
Output |
BufferedOutput.append(char[] chars,
int start,
int end) |
Output |
WriterOutput.append(CharSequence csq) |
Output |
BufferedOutput.append(CharSequence csq) |
Output |
Output.append(CharSequence csq)
Appends the specified character sequence to this Output.
|
Output |
OutputStreamOutput.append(CharSequence csq) |
Output |
WriterOutput.append(CharSequence csq,
int start,
int end) |
Output |
BufferedOutput.append(CharSequence csq,
int start,
int end) |
Output |
Output.append(CharSequence csq,
int start,
int end)
Appends a subsequence of the specified character sequence to this Output.
|
Output |
OutputStreamOutput.append(CharSequence csq,
int start,
int end) |
static Output |
Output.Adaptors.of(Appendable appendable) |
static Output |
Output.Adaptors.of(OutputStream os) |
static Output |
Output.Adaptors.of(Writer w) |
static Output |
BufferedOutput.wrap(Output output) |
| Modifier and Type | Method and Description |
|---|---|
static OutputStream |
Output.Adaptors.asOutputStream(Output output) |
static Writer |
Output.Adaptors.asWriter(Output output) |
static Output |
BufferedOutput.wrap(Output output) |
Copyright © 2014–2021 OSGL (Open Source General Library). All rights reserved.