Package | Description |
---|---|
_templates.java.nio | |
_templates.javolution.io | |
_templates.javolution.text |
Modifier and Type | Class and Description |
---|---|
class |
CharBuffer
Class provided for the sole purpose of compiling the Readable interface.
|
Modifier and Type | Method and Description |
---|---|
void |
CharSequenceReader.read(Appendable dest)
Reads characters into the specified appendable.
|
void |
UTF8StreamReader.read(Appendable dest)
Reads characters into the specified appendable.
|
void |
UTF8ByteBufferReader.read(Appendable dest)
Reads characters into the specified appendable.
|
AppendableWriter |
AppendableWriter.setOutput(Appendable output)
Sets the appendable output being written to.
|
Modifier and Type | Class and Description |
---|---|
class |
TextBuilder
This class represents an
Appendable text whose capacity expands
gently without incurring expensive resize/copy operations ever. |
Modifier and Type | Method and Description |
---|---|
Appendable |
Appendable.append(char c)
Appends the specified character.
|
Appendable |
TextBuilder.append(char c)
Appends the specified character.
|
Appendable |
Appendable.append(CharSequence csq)
Appends the specified character sequence.
|
Appendable |
TextBuilder.append(CharSequence csq)
Appends the specified character sequence.
|
Appendable |
Appendable.append(CharSequence csq,
int start,
int end)
Appends a subsequence of the specified character sequence.
|
Appendable |
TextBuilder.append(CharSequence csq,
int start,
int end)
Appends a subsequence of the specified character sequence.
|
static Appendable |
TypeFormat.format(boolean b,
Appendable a)
Formats the specified
boolean and appends the resulting
text to the Appendable argument. |
static Appendable |
TypeFormat.format(double d,
Appendable a)
Formats the specified
double value (16 or 17 digits output). |
static Appendable |
TypeFormat.format(double d,
int digits,
boolean scientific,
boolean showZero,
Appendable a)
Formats the specified
double value according to the
specified formatting arguments. |
static Appendable |
TypeFormat.format(float f,
Appendable a)
Formats the specified
float value. |
static Appendable |
TypeFormat.format(int i,
Appendable a)
Formats the specified
int and appends the resulting
text (decimal representation) to the Appendable argument. |
static Appendable |
TypeFormat.format(int i,
int radix,
Appendable a)
Formats the specified
int in the specified radix and appends
the resulting text to the Appendable argument. |
static Appendable |
TypeFormat.format(long l,
Appendable a)
Formats the specified
long and appends the resulting
text (decimal representation) to the Appendable argument. |
static Appendable |
TypeFormat.format(long l,
int radix,
Appendable a)
Formats the specified
long in the specified radix and
appends the resulting text to the Appendable argument. |
abstract Appendable |
TextFormat.format(Object obj,
Appendable dest)
Formats the specified object into an
Appendable |
Modifier and Type | Method and Description |
---|---|
static Appendable |
TypeFormat.format(boolean b,
Appendable a)
Formats the specified
boolean and appends the resulting
text to the Appendable argument. |
static Appendable |
TypeFormat.format(double d,
Appendable a)
Formats the specified
double value (16 or 17 digits output). |
static Appendable |
TypeFormat.format(double d,
int digits,
boolean scientific,
boolean showZero,
Appendable a)
Formats the specified
double value according to the
specified formatting arguments. |
static Appendable |
TypeFormat.format(float f,
Appendable a)
Formats the specified
float value. |
static Appendable |
TypeFormat.format(int i,
Appendable a)
Formats the specified
int and appends the resulting
text (decimal representation) to the Appendable argument. |
static Appendable |
TypeFormat.format(int i,
int radix,
Appendable a)
Formats the specified
int in the specified radix and appends
the resulting text to the Appendable argument. |
static Appendable |
TypeFormat.format(long l,
Appendable a)
Formats the specified
long and appends the resulting
text (decimal representation) to the Appendable argument. |
static Appendable |
TypeFormat.format(long l,
int radix,
Appendable a)
Formats the specified
long in the specified radix and
appends the resulting text to the Appendable argument. |
abstract Appendable |
TextFormat.format(Object obj,
Appendable dest)
Formats the specified object into an
Appendable |
Copyright © 2005–2019 Javolution. All rights reserved.