|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface BigIntegerAccessor
Defines an interface for Field
objects that have BigInteger
accessors.
Method Summary | |
---|---|
java.math.BigInteger |
getBigInteger(byte[] buffer)
Answer a BigInteger from the given byte array buffer, at the offset of this field. |
java.math.BigInteger |
getBigInteger(byte[] buffer,
int bufOffset)
Answer a BigInteger from the given byte array buffer, at the bufOffset + offset of this field. |
void |
putBigInteger(java.math.BigInteger value,
byte[] buffer)
Put a BigInteger into the given byte array buffer, at the offset of this field. |
void |
putBigInteger(java.math.BigInteger value,
byte[] buffer,
int bufOffset)
Put a BigInteger into the given byte array buffer, at the bufOffset + offset of this field. |
Methods inherited from interface com.ibm.jzos.fields.Field |
---|
getByteLength, getOffset, setOffset |
Method Detail |
---|
java.math.BigInteger getBigInteger(byte[] buffer)
buffer
- the byte array
java.math.BigInteger getBigInteger(byte[] buffer, int bufOffset)
buffer
- the byte arraybufOffset
- the additional offset into the byte array
void putBigInteger(java.math.BigInteger value, byte[] buffer) throws java.lang.IllegalArgumentException
value
- the BigInteger valuebuffer
- the byte array
java.lang.IllegalArgumentException
- if the value is out of rangevoid putBigInteger(java.math.BigInteger value, byte[] buffer, int bufOffset) throws java.lang.IllegalArgumentException
value
- the BigInteger valuebuffer
- the byte arraybufOffset
- the additional offset into the byte array
java.lang.IllegalArgumentException
- if the value is out of range
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |