public class TextWrapper
Is introduced just for performance optimization - it's necessary to measure visual dimensions a lot during graph drawing and rescaling, hence, we want to avoid creating unnecessary objects.
| Modifier and Type | Class and Description |
|---|---|
static class |
TextWrapper.Companion |
| Modifier and Type | Field and Description |
|---|---|
static TextWrapper.Companion |
Companion |
| Constructor and Description |
|---|
TextWrapper()
Is introduced just for performance optimization - it's necessary to measure visual dimensions
a lot during graph drawing and rescaling, hence, we want to avoid creating unnecessary objects.
|
| Modifier and Type | Method and Description |
|---|---|
void |
append(char c) |
void |
append(kotlin.Array[] data) |
void |
append(java.lang.String s) |
void |
append(java.lang.String s,
int start,
int length) |
void |
append(int i) |
void |
append(long l) |
kotlin.Array[] |
getData() |
int |
getLength() |
void |
reset() |
java.lang.String |
toString() |
public static TextWrapper.Companion Companion
public TextWrapper()
Is introduced just for performance optimization - it's necessary to measure visual dimensions a lot during graph drawing and rescaling, hence, we want to avoid creating unnecessary objects.
@NotNull public kotlin.Array[] getData()
public int getLength()
public void append(char c)
public void append(@NotNull
kotlin.Array[] data)
public void append(@NotNull
java.lang.String s)
public void append(@NotNull
java.lang.String s,
int start,
int length)
public void append(int i)
public void append(long l)
public void reset()
@NotNull public java.lang.String toString()