public interface BytesModifiable extends Bytes
Modifier and Type | Method and Description |
---|---|
void |
append(byte v) |
void |
append(byte[] vs) |
void |
append(byte[] vs,
int from,
int to) |
void |
append(ByteBuffer vs) |
void |
append(ByteBuffer vs,
int c) |
void |
append(Bytes vs) |
void |
append(Bytes vs,
int from,
int to) |
void |
append(String s) |
void |
append(String s,
int from,
int to) |
void |
clear() |
void |
compact() |
void |
ensureCapacity(int minCapacity) |
void |
insert(int i,
byte v) |
void |
insert(int i,
byte[] vs) |
void |
insert(int i,
byte[] vs,
int from,
int to) |
void |
insert(int i,
ByteBuffer vs) |
void |
insert(int i,
ByteBuffer vs,
int c) |
void |
insert(int i,
Bytes vs) |
void |
insert(int i,
Bytes vs,
int from,
int to) |
void |
insert(int i,
String s) |
void |
insert(int i,
String s,
int from,
int to) |
void |
prepend(byte v) |
void |
prepend(byte[] vs) |
void |
prepend(byte[] vs,
int from,
int to) |
void |
prepend(ByteBuffer vs) |
void |
prepend(ByteBuffer vs,
int c) |
void |
prepend(Bytes vs) |
void |
prepend(Bytes vs,
int from,
int to) |
void |
prepend(String s) |
void |
prepend(String s,
int from,
int to) |
void |
remove(byte 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,
byte v) |
void |
set(int i,
byte[] vs) |
void |
set(int i,
byte[] vs,
int from,
int to) |
void set(int i, byte v)
void set(int i, byte[] vs)
void set(int i, byte[] vs, int from, int to)
void insert(int i, byte v)
void insert(int i, byte[] vs)
void insert(int i, Bytes vs)
void insert(int i, String s)
void insert(int i, ByteBuffer vs)
void insert(int i, byte[] vs, int from, int to)
void insert(int i, Bytes vs, int from, int to)
void insert(int i, String s, int from, int to)
void insert(int i, ByteBuffer vs, int c)
void append(byte v)
void append(byte[] vs)
void append(Bytes vs)
void append(String s)
void append(ByteBuffer vs)
void append(byte[] vs, int from, int to)
void append(Bytes vs, int from, int to)
void append(String s, int from, int to)
void append(ByteBuffer vs, int c)
void prepend(byte v)
void prepend(byte[] vs)
void prepend(Bytes vs)
void prepend(String s)
void prepend(ByteBuffer vs)
void prepend(byte[] vs, int from, int to)
void prepend(Bytes vs, int from, int to)
void prepend(String s, int from, int to)
void prepend(ByteBuffer vs, int c)
void remove(byte 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.