Package org.infinispan.commons.marshall
Class WrappedByteArray
java.lang.Object
org.infinispan.commons.marshall.WrappedByteArray
- All Implemented Interfaces:
WrappedBytes
Simple wrapper around a byte[] to provide equals and hashCode semantics
- Since:
- 9.0
- Author:
- wburns
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
The offset of where data starts in the backed array.boolean
boolean
equalsWrappedBytes
(WrappedBytes other) byte
getByte
(int offset) Retrieves the byte given an offset.byte[]
getBytes()
The backing array if there is one otherwise null is returned.int
The length of the underlying wrapped bytes.int
hashCode()
toString()
-
Field Details
-
EMPTY_BYTES
-
-
Constructor Details
-
WrappedByteArray
@ProtoFactory public WrappedByteArray(byte[] bytes) -
WrappedByteArray
public WrappedByteArray(byte[] bytes, int hashCode)
-
-
Method Details
-
getBytes
@ProtoField(1) public byte[] getBytes()Description copied from interface:WrappedBytes
The backing array if there is one otherwise null is returned. Callers should useWrappedBytes.backArrayOffset()
to know where to read the bytes from. This byte[] should never be modified by the caller- Specified by:
getBytes
in interfaceWrappedBytes
- Returns:
- the backing byte[] if there is one.
-
backArrayOffset
public int backArrayOffset()Description copied from interface:WrappedBytes
The offset of where data starts in the backed array.- Specified by:
backArrayOffset
in interfaceWrappedBytes
- Returns:
- -1 if there is no backed array otherwise ≥ 0 if there is backing array
-
getLength
public int getLength()Description copied from interface:WrappedBytes
The length of the underlying wrapped bytes. This will always be ≥ 0.- Specified by:
getLength
in interfaceWrappedBytes
- Returns:
- how many bytes are available from the underlying wrapped implementation
-
getByte
public byte getByte(int offset) Description copied from interface:WrappedBytes
Retrieves the byte given an offset. This offset should always be less thanWrappedBytes.getLength()
.- Specified by:
getByte
in interfaceWrappedBytes
- Parameters:
offset
- the offset of where to find the byte- Returns:
- the byte at this position
-
equals
-
equalsWrappedBytes
- Specified by:
equalsWrappedBytes
in interfaceWrappedBytes
-
hashCode
public int hashCode() -
toString
-