| Package | Description |
|---|---|
| org.osgl.util |
| Modifier and Type | Method and Description |
|---|---|
S.Buffer |
S.Buffer.a(boolean b)
Alias of
append(boolean) |
S.Buffer |
S.Buffer.a(char c)
alias of
append(char) |
S.Buffer |
S.Buffer.a(char[] str)
Alias of
append(char[]) |
S.Buffer |
S.Buffer.a(CharSequence s)
Alias of
append(CharSequence) |
S.Buffer |
S.Buffer.a(double d)
Alias of
append(double) |
S.Buffer |
S.Buffer.a(float f)
Alias of
append(float) |
S.Buffer |
S.Buffer.a(int i)
alias of
append(int) |
S.Buffer |
S.Buffer.a(long l)
alias of
append(long) |
S.Buffer |
S.Buffer.a(Object obj)
Alias of
append(Object) |
S.Buffer |
S.Buffer.a(S.Buffer asb)
Alias of
#append(Buffer) |
S.Buffer |
S.Buffer.a(String str)
Alias of
append(String) |
S.Buffer |
S.Buffer.a(StringBuffer sb)
Alias of
append(StringBuffer) |
S.Buffer |
S.Buffer.a(StringBuilder sb)
Alias of
append(StringBuilder) |
S.Buffer |
S.Buffer.append(boolean b) |
S.Buffer |
S.Buffer.append(char c)
Appends the string representation of the
char argument to this sequence. |
S.Buffer |
S.Buffer.append(char[] str)
Appends the string representation of the
char array argument to this sequence. |
S.Buffer |
S.Buffer.append(char[] str,
int offset,
int len)
Appends the string representation of a subarray of the
char array argument to this sequence. |
S.Buffer |
S.Buffer.append(CharSequence s) |
S.Buffer |
S.Buffer.append(CharSequence s,
int start,
int end)
Appends a subsequence of the specified
CharSequence to this sequence. |
S.Buffer |
S.Buffer.append(double d)
Appends the string representation of the
double argument to this sequence. |
S.Buffer |
S.Buffer.append(float f)
Appends the string representation of the
float argument to this sequence. |
S.Buffer |
S.Buffer.append(int i)
Appends the string representation of the
int argument to this sequence. |
S.Buffer |
S.Buffer.append(long l)
Appends the string representation of the
long argument to this sequence. |
S.Buffer |
S.Buffer.append(Object obj)
Appends the string representation of the
Object argument. |
S.Buffer |
S.Buffer.append(S.Buffer asb) |
S.Buffer |
S.Buffer.append(String str)
Appends the specified string to this character sequence.
|
S.Buffer |
S.Buffer.append(StringBuffer sb) |
S.Buffer |
S.Buffer.append(StringBuilder sb) |
S.Buffer |
S.Buffer.appendCodePoint(int codePoint)
Appends the string representation of the
codePoint argument to this sequence. |
static S.Buffer |
S.buffer()
Returns a
S.Buffer instance. |
static S.Buffer |
S.buffer(boolean o) |
static S.Buffer |
S.buffer(byte o) |
static S.Buffer |
S.buffer(char o) |
static S.Buffer |
S.buffer(char[] ca) |
static S.Buffer |
S.buffer(double o) |
static S.Buffer |
S.buffer(float o) |
static S.Buffer |
S.buffer(int o) |
static S.Buffer |
S.buffer(long o) |
static S.Buffer |
S.buffer(Object o) |
static S.Buffer |
S.buffer(short o) |
static S.Buffer |
S.buffer(String s) |
S.Buffer |
S.Buffer.clear() |
S.Buffer |
S.Buffer.delete(int start,
int end)
Removes the characters in a substring of this sequence.
|
S.Buffer |
S.Buffer.deleteCharAt(int index)
Removes the
char at the specified position in this sequence. |
S.Buffer |
S.Buffer.insert(int offset,
boolean b)
Inserts the string representation of the
boolean argument into this sequence. |
S.Buffer |
S.Buffer.insert(int offset,
char c)
Inserts the string representation of the
char argument into this sequence. |
S.Buffer |
S.Buffer.insert(int offset,
char[] str)
Inserts the string representation of the
char array argument into this sequence. |
S.Buffer |
S.Buffer.insert(int index,
char[] str,
int offset,
int len)
Inserts the string representation of a subarray of the
str array argument into this sequence. |
S.Buffer |
S.Buffer.insert(int dstOffset,
CharSequence s)
Inserts the specified
CharSequence into this sequence. |
S.Buffer |
S.Buffer.insert(int dstOffset,
CharSequence s,
int start,
int end)
Inserts a subsequence of the specified
CharSequence into this sequence. |
S.Buffer |
S.Buffer.insert(int offset,
double d)
Inserts the string representation of the
double argument into this sequence. |
S.Buffer |
S.Buffer.insert(int offset,
float f)
Inserts the string representation of the
float argument into this sequence. |
S.Buffer |
S.Buffer.insert(int offset,
int i)
Inserts the string representation of the second
int argument into this sequence. |
S.Buffer |
S.Buffer.insert(int offset,
long l)
Inserts the string representation of the
long argument into this sequence. |
S.Buffer |
S.Buffer.insert(int offset,
Object obj)
Inserts the string representation of the
Object argument into this character sequence. |
S.Buffer |
S.Buffer.insert(int offset,
String str)
Inserts the string into this character sequence.
|
static S.Buffer |
S.newBuffer()
Returns an new
S.Buffer instance |
static S.Buffer |
S.newBuffer(byte o) |
static S.Buffer |
S.newBuffer(char o) |
static S.Buffer |
S.newBuffer(double o) |
static S.Buffer |
S.newBuffer(float o) |
static S.Buffer |
S.newBuffer(int o) |
static S.Buffer |
S.newBuffer(long o) |
static S.Buffer |
S.newBuffer(Object o) |
static S.Buffer |
S.newBuffer(short o) |
static S.Buffer |
S.newBuffer(String s) |
static S.Buffer |
S.newSizedBuffer(int size)
Return an new
S.Buffer instance with predefined size specified |
S.Buffer |
S.Buffer.p(boolean b)
Alias of
prepend(boolean) |
S.Buffer |
S.Buffer.p(char c)
alias of
prepend(char) |
S.Buffer |
S.Buffer.p(char[] str)
Alias of
prepend(char[]) |
S.Buffer |
S.Buffer.p(CharSequence s)
Alias of
prepend(CharSequence) |
S.Buffer |
S.Buffer.p(double d)
Alias of
prepend(double) |
S.Buffer |
S.Buffer.p(float f)
Alias of
prepend(float) |
S.Buffer |
S.Buffer.p(int i)
alias of
prepend(int) |
S.Buffer |
S.Buffer.p(long l)
alias of
prepend(long) |
S.Buffer |
S.Buffer.p(Object obj)
Alias of
prepend(Object) |
S.Buffer |
S.Buffer.p(S.Buffer asb)
Alias of
#prepend(Buffer) |
S.Buffer |
S.Buffer.p(String str)
Alias of
prepend(String) |
S.Buffer |
S.Buffer.p(StringBuffer sb)
Alias of
prepend(StringBuffer) |
S.Buffer |
S.Buffer.p(StringBuilder sb)
Alias of
prepend(StringBuilder) |
S.Buffer |
S.Buffer.prepend(boolean b)
Appends the string representation of the
boolean argument to the sequence. |
S.Buffer |
S.Buffer.prepend(char c) |
S.Buffer |
S.Buffer.prepend(char[] str) |
S.Buffer |
S.Buffer.prepend(CharSequence s) |
S.Buffer |
S.Buffer.prepend(double d) |
S.Buffer |
S.Buffer.prepend(float f) |
S.Buffer |
S.Buffer.prepend(int i) |
S.Buffer |
S.Buffer.prepend(long l) |
S.Buffer |
S.Buffer.prepend(Object obj) |
S.Buffer |
S.Buffer.prepend(S.Buffer asb) |
S.Buffer |
S.Buffer.prepend(String str) |
S.Buffer |
S.Buffer.prepend(StringBuffer sb) |
S.Buffer |
S.Buffer.prepend(StringBuilder sb) |
S.Buffer |
S.Buffer.replace(int start,
int end,
String str)
Replaces the characters in a substring of this sequence with characters in the specified
String. |
S.Buffer |
S.Buffer.reset() |
S.Buffer |
S.Buffer.reverse()
Causes this character sequence to be replaced by the reverse of the sequence.
|
static S.Buffer |
S.sizedBuffer(int size) |
| Modifier and Type | Method and Description |
|---|---|
S.Buffer |
S.Buffer.a(S.Buffer asb)
Alias of
#append(Buffer) |
S.Buffer |
S.Buffer.append(S.Buffer asb) |
S.Buffer |
S.Buffer.p(S.Buffer asb)
Alias of
#prepend(Buffer) |
S.Buffer |
S.Buffer.prepend(S.Buffer asb) |
Copyright © 2014–2021 OSGL (Open Source General Library). All rights reserved.