public interface CharsModifiable extends Chars
Modifier and Type | Method and Description |
---|---|
void |
append(char v) |
void |
append(char[] vs) |
void |
append(char[] vs,
int from,
int to) |
void |
append(CharBuffer vs) |
void |
append(CharBuffer vs,
int c) |
void |
append(Chars vs) |
void |
append(Chars vs,
int from,
int to) |
void |
append(String vs) |
void |
append(String vs,
int from,
int to) |
void |
clear() |
void |
compact() |
void |
ensureCapacity(int minCapacity) |
void |
insert(int i,
char v) |
void |
insert(int i,
char[] vs) |
void |
insert(int i,
char[] vs,
int from,
int to) |
void |
insert(int i,
CharBuffer vs) |
void |
insert(int i,
CharBuffer vs,
int c) |
void |
insert(int i,
Chars vs) |
void |
insert(int i,
Chars vs,
int from,
int to) |
void |
insert(int i,
String vs) |
void |
insert(int i,
String vs,
int from,
int to) |
void |
prepend(char v) |
void |
prepend(char[] vs) |
void |
prepend(char[] vs,
int from,
int to) |
void |
prepend(CharBuffer vs) |
void |
prepend(CharBuffer vs,
int c) |
void |
prepend(Chars vs) |
void |
prepend(Chars vs,
int from,
int to) |
void |
prepend(String vs) |
void |
prepend(String vs,
int from,
int to) |
void |
remove(char v)
Removes a single copy of the specified value.
|
void |
removeIndex(int index)
Remove value at index.
|
void |
removeRange(int from,
int to)
Removes values starting at index from (inclusive) to index to (exclusive).
|
void |
set(int i,
char v) |
void |
set(int i,
char[] vs) |
void |
set(int i,
char[] vs,
int from,
int to) |
void set(int i, char v)
void set(int i, char[] vs)
void set(int i, char[] vs, int from, int to)
void insert(int i, char v)
void insert(int i, char[] vs)
void insert(int i, Chars vs)
void insert(int i, String vs)
void insert(int i, CharBuffer vs)
void insert(int i, char[] vs, int from, int to)
void insert(int i, Chars vs, int from, int to)
void insert(int i, String vs, int from, int to)
void insert(int i, CharBuffer vs, int c)
void append(char v)
void append(char[] vs)
void append(Chars vs)
void append(String vs)
void append(CharBuffer vs)
void append(char[] vs, int from, int to)
void append(Chars vs, int from, int to)
void append(String vs, int from, int to)
void append(CharBuffer vs, int c)
void prepend(char v)
void prepend(char[] vs)
void prepend(Chars vs)
void prepend(String vs)
void prepend(CharBuffer vs)
void prepend(char[] vs, int from, int to)
void prepend(Chars vs, int from, int to)
void prepend(String vs, int from, int to)
void prepend(CharBuffer vs, int c)
void remove(char v)
void removeRange(int from, int to)
void removeIndex(int index)
void clear()
void ensureCapacity(int minCapacity)
void compact()
Copyright © 2016 Metron, Inc.. All rights reserved.