| Package | Description |
|---|---|
| com.codename1.util |
General utilities classes
|
| Modifier and Type | Method and Description |
|---|---|
CStringBuilder |
CStringBuilder.append(boolean b)
Deprecated.
Appends the string representation of the specified
boolean value. |
CStringBuilder |
CStringBuilder.append(char c)
Deprecated.
Appends the string representation of the specified
char value. |
CStringBuilder |
CStringBuilder.append(char[] ch)
Deprecated.
Appends the string representation of the specified
char[]. |
CStringBuilder |
CStringBuilder.append(char[] str,
int offset,
int len)
Deprecated.
Appends the string representation of the specified subset of the
char[]. |
CStringBuilder |
CStringBuilder.append(double d)
Deprecated.
Appends the string representation of the specified
double value. |
CStringBuilder |
CStringBuilder.append(float f)
Deprecated.
Appends the string representation of the specified
float value. |
CStringBuilder |
CStringBuilder.append(int i)
Deprecated.
Appends the string representation of the specified
int value. |
CStringBuilder |
CStringBuilder.append(long lng)
Deprecated.
Appends the string representation of the specified
long value. |
CStringBuilder |
CStringBuilder.append(Object obj)
Deprecated.
Appends the string representation of the specified
Object. |
CStringBuilder |
CStringBuilder.append(String str)
Deprecated.
Appends the contents of the specified string.
|
CStringBuilder |
CStringBuilder.appendCodePoint(int codePoint)
Deprecated.
Appends the encoded Unicode code point.
|
CStringBuilder |
CStringBuilder.delete(int start,
int end)
Deprecated.
Deletes a sequence of characters specified by
start and end. |
CStringBuilder |
CStringBuilder.deleteCharAt(int index)
Deprecated.
Deletes the character at the specified index.
|
CStringBuilder |
CStringBuilder.insert(int offset,
boolean b)
Deprecated.
Inserts the string representation of the specified
boolean value
at the specified offset. |
CStringBuilder |
CStringBuilder.insert(int offset,
char c)
Deprecated.
Inserts the string representation of the specified
char value at
the specified offset. |
CStringBuilder |
CStringBuilder.insert(int offset,
char[] ch)
Deprecated.
Inserts the string representation of the specified
char[] at the
specified offset. |
CStringBuilder |
CStringBuilder.insert(int offset,
char[] str,
int strOffset,
int strLen)
Deprecated.
Inserts the string representation of the specified subsequence of the
char[] at the specified offset. |
CStringBuilder |
CStringBuilder.insert(int offset,
double d)
Deprecated.
Inserts the string representation of the specified
double value
at the specified offset. |
CStringBuilder |
CStringBuilder.insert(int offset,
float f)
Deprecated.
Inserts the string representation of the specified
float value at
the specified offset. |
CStringBuilder |
CStringBuilder.insert(int offset,
int i)
Deprecated.
Inserts the string representation of the specified
int value at
the specified offset. |
CStringBuilder |
CStringBuilder.insert(int offset,
long l)
Deprecated.
Inserts the string representation of the specified
long value at
the specified offset. |
CStringBuilder |
CStringBuilder.insert(int offset,
Object obj)
Deprecated.
Inserts the string representation of the specified
Object at the
specified offset. |
CStringBuilder |
CStringBuilder.insert(int offset,
String str)
Deprecated.
Inserts the specified string at the specified
offset. |
CStringBuilder |
CStringBuilder.replace(int start,
int end,
String str)
Deprecated.
Replaces the specified subsequence in this builder with the specified
string.
|
CStringBuilder |
CStringBuilder.reverse()
Deprecated.
Reverses the order of characters in this builder.
|
Copyright © 2023. All rights reserved.