ByteArrayBuilder |
ByteArrayBuilder.appendBoolean(boolean b) |
Append a boolean to this ByteArrayBuilder.
|
ByteArrayBuilder |
ByteArrayBuilder.appendByte(int b) |
Append a byte to this ByteArrayBuilder.
|
ByteArrayBuilder |
ByteArrayBuilder.appendByteArray(byte[] bytes) |
Append all the bytes from the byte array to this ByteArrayBuilder.
|
ByteArrayBuilder |
ByteArrayBuilder.appendCsn(CSN csn,
CSN.CsnVersion version) |
Append a CSN to this ByteArrayBuilder.
|
ByteArrayBuilder |
ByteArrayBuilder.appendCsnUtf8(CSN csn,
CSN.CsnVersion version) |
Append a CSN to this ByteArrayBuilder by converting it to a String then encoding that string to a UTF-8 byte
array.
|
ByteArrayBuilder |
ByteArrayBuilder.appendDn(Dn dn) |
Append a DN to this ByteArrayBuilder by converting it to a String then encoding that string to a UTF-8 byte
array.
|
ByteArrayBuilder |
ByteArrayBuilder.appendGroupId(com.forgerock.opendj.discovery.GroupId groupId) |
Appends the encoded version of a GroupId to this ByteArrayBuilder.
|
ByteArrayBuilder |
ByteArrayBuilder.appendInt(int i) |
Append an int to this ByteArrayBuilder.
|
ByteArrayBuilder |
ByteArrayBuilder.appendIntUtf8(int i) |
Append an int to this ByteArrayBuilder by converting it to a String then encoding that string to a UTF-8 byte
array.
|
ByteArrayBuilder |
ByteArrayBuilder.appendLong(long l) |
Append a long to this ByteArrayBuilder.
|
ByteArrayBuilder |
ByteArrayBuilder.appendLongUtf8(long l) |
Append a long to this ByteArrayBuilder by converting it to a String then encoding that string to a UTF-8 byte
array.
|
ByteArrayBuilder |
ByteArrayBuilder.appendRdn(Rdn rdn) |
Append an RDN to this ByteArrayBuilder by converting it to a String then encoding that string to a UTF-8 byte
array.
|
ByteArrayBuilder |
ByteArrayBuilder.appendReplicaId(ReplicaId replicaId) |
Appends the encoded version of this ReplicaId to this ByteArrayBuilder.
|
ByteArrayBuilder |
ByteArrayBuilder.appendReplicationServerId(ReplicationServerId replicationServerId) |
|
ByteArrayBuilder |
ByteArrayBuilder.appendServerId(ServerId<?> serverId) |
Appends a server id.
|
ByteArrayBuilder |
ByteArrayBuilder.appendServerStateMustComeLast(ServerState serverState) |
Append the byte representation of a ServerState to this ByteArrayBuilder and then append a final zero byte
separator.
|
ByteArrayBuilder |
ByteArrayBuilder.appendShort(int s) |
Append a short to this ByteArrayBuilder.
|
ByteArrayBuilder |
ByteArrayBuilder.appendString(String s) |
Append a String with a zero separator to this ByteArrayBuilder, or only the zero separator if the string is null
or if the string length is zero.
|
ByteArrayBuilder |
ByteArrayBuilder.appendStrings(Collection<String> col) |
Append a Collection of Strings to this ByteArrayBuilder.
|
ByteArrayBuilder |
ByteArrayBuilder.appendUUID(UUID uuid) |
Append an UUID with a zero separator to this ByteArrayBuilder, or only the zero separator if the UUID is
null .
|
ByteArrayBuilder |
ByteArrayBuilder.appendZeroTerminatedByteArray(byte[] bytes) |
Append all the bytes from the byte array to this ByteArrayBuilder and then append a final zero byte separator for
compatibility with legacy implementations.
|