Class AmexNumF7<M>

java.lang.Object
cl.netswitch.iso.amex8583.AmexField<M,Integer>
cl.netswitch.iso.amex8583.AmexNumF7<M>
Type Parameters:
M - the type of the AMEX message.

public class AmexNumF7<M> extends AmexField<M,Integer>
Numeric Fixed-Length Right-Justified of 7 EBCDIC-500 digits.
  • Constructor Details

    • AmexNumF7

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

    • decodeValue

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

      public void encodeValue(Integer value, cl.netswitch.lib.util.ByteArray barray)
      Encodes the value of this field into the supplied byte array.
      Specified by:
      encodeValue in class AmexField<M,Integer>
      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.
      AmexException - if value is invalid.