Class IsoNumV2I<M>

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

public class IsoNumV2I<M> extends IsoField<M,Integer>
Numeric Variable-Length (LL) of at most N ASCII digits (5 ≤ N ≤ 9).
  • Constructor Details

    • IsoNumV2I

      public IsoNumV2I(int index, int maxlen, String name)
      Constructs a new IsoNumV2I 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.
    • IsoNumV2I

      public IsoNumV2I(int index, int minlen, int maxlen, String name)
      Constructs a new IsoNumV2I 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