Class AmexNumV2X<M>

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

public class AmexNumV2X<M> extends AmexField<M,BigInteger>
Numeric Variable-Length (LL) of at most N EBCDIC-500 digits (19 ≤ N ≤ 99).
  • Constructor Details

    • AmexNumV2X

      public AmexNumV2X(int index, int maxlen, String name)
      Constructs a new AmexNumV2X instance.
      Parameters:
      index - the index of this field.
      maxlen - max number of elements of this field value.
      name - the name of this field.
      Throws:
      NullPointerException - if name is null.
      IllegalArgumentException - if an argument is invalid.
    • AmexNumV2X

      public AmexNumV2X(int index, int minlen, int maxlen, String name)
      Constructs a new AmexNumV2X instance.
      Parameters:
      index - the index of this field.
      minlen - min number of elements of this field value.
      maxlen - max number of elements of this field value.
      name - the name of this field.
      Throws:
      NullPointerException - if an argument is null.
      IllegalArgumentException - if an argument is invalid.
  • Method Details