Class IVA_NUM

All Implemented Interfaces:
Configurable, ISOValidator
Direct Known Subclasses:
IVA_NUMNOZERO

public class IVA_NUM extends ISOFieldValidator
Validator for ASCII numeric fields. By default radix is 10.

Title: jPOS

Description: Java Framework for Financial Systems

Copyright: Copyright (c) 2000 jPOS.org. All rights reserved.

Company: www.jPOS.org

  • Field Details

    • radix

      protected int radix
      by default is decimal
  • Constructor Details

    • IVA_NUM

      public IVA_NUM()
    • IVA_NUM

      public IVA_NUM(String Description)
      radix = 10.
      Parameters:
      Description - Brief description.
    • IVA_NUM

      public IVA_NUM(String Description, int radix)
    • IVA_NUM

      public IVA_NUM(int maxLen, String Description)
    • IVA_NUM

      public IVA_NUM(int maxLen, String Description, int radix)
    • IVA_NUM

      public IVA_NUM(int minLen, int maxLen, String Description)
      Create the validator. Radix is 10.
      Parameters:
      minLen - min length.
      maxLen - max length
      Description - Validator description
    • IVA_NUM

      public IVA_NUM(int minLen, int maxLen, String Description, int radix)
      Create the validator
      Parameters:
      minLen - min length.
      maxLen - max length
      Description - Validator description
      radix - numeric radix for numeric validation
    • IVA_NUM

      public IVA_NUM(boolean breakOnError, String Description)
    • IVA_NUM

      public IVA_NUM(boolean breakOnError, String Description, int radix)
    • IVA_NUM

      public IVA_NUM(boolean breakOnError, int maxLen, String Description)
    • IVA_NUM

      public IVA_NUM(boolean breakOnError, int maxLen, String Description, int radix)
    • IVA_NUM

      public IVA_NUM(boolean breakOnError, int minLen, int maxLen, String Description)
    • IVA_NUM

      public IVA_NUM(boolean breakOnError, int minLen, int maxLen, String Description, int radix)
  • Method Details