Class IsoBinF8<M>

java.lang.Object
cl.netswitch.iso.iso8583.IsoField<M,Long>
cl.netswitch.iso.iso8583.IsoBinF8<M>
Type Parameters:
M - the type of the ISO message.

public class IsoBinF8<M> extends IsoField<M,Long>
Binary Fixed-Length of 8 bytes.
  • Constructor Details

    • IsoBinF8

      public IsoBinF8(int index, String name)
      Constructs a new IsoBinF8 instance.
      Parameters:
      index - the index of this field.
      name - the name of this field.
      Throws:
      NullPointerException - if an argument is null.
      IllegalArgumentException - if an argument is invalid.
  • Method Details

    • decodeValue

      public Long decodeValue(ByteBuffer buffer)
      Decodes the value of this field from the supplied byte buffer.
      Specified by:
      decodeValue in class IsoField<M,Long>
      Parameters:
      buffer - the buffer containing the encoded field value.
      Returns:
      the value decoded from supplied byte buffer.
      Throws:
      NullPointerException - if buffer is null.
      IsoException - if contents of buffer is invalid.
      BufferUnderflowException - if buffer is missing bytes.
    • encodeValue

      public void encodeValue(Long value, cl.netswitch.lib.util.ByteArray barray)
      Encodes the value of this field into the supplied byte array.
      Specified by:
      encodeValue in class IsoField<M,Long>
      Parameters:
      value - the value to be encoded into byte array.
      barray - the byte array containing encoded field values.
      Throws:
      NullPointerException - if an argument is null.
      IsoException - if value is invalid.