Enum AvsStatus

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<AvsStatus>

    public enum AvsStatus
    extends java.lang.Enum<AvsStatus>
    Enum defining the avs status
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      INVALID
      Generated enum value for AvsStatus.INVALID value defined at extension payment.
      MATCHED
      Generated enum value for AvsStatus.MATCHED value defined at extension payment.
      NO_RESULT
      Generated enum value for AvsStatus.NO_RESULT value defined at extension payment.
      NOT_MATCHED
      Generated enum value for AvsStatus.NOT_MATCHED value defined at extension payment.
      NOT_SUPPORTED
      Generated enum value for AvsStatus.NOT_SUPPORTED value defined at extension payment.
      PARTIAL_MATCH
      Generated enum value for AvsStatus.PARTIAL_MATCH value defined at extension payment.
      SYSTEM_UNAVAILABLE
      Generated enum value for AvsStatus.SYSTEM_UNAVAILABLE value defined at extension payment.
      UNRECOGNIZED_RESULT
      Generated enum value for AvsStatus.UNRECOGNIZED_RESULT value defined at extension payment.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static AvsStatus valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static AvsStatus[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • PARTIAL_MATCH

        public static final AvsStatus PARTIAL_MATCH
        Generated enum value for AvsStatus.PARTIAL_MATCH value defined at extension payment.
      • MATCHED

        public static final AvsStatus MATCHED
        Generated enum value for AvsStatus.MATCHED value defined at extension payment.
      • NOT_MATCHED

        public static final AvsStatus NOT_MATCHED
        Generated enum value for AvsStatus.NOT_MATCHED value defined at extension payment.
      • NOT_SUPPORTED

        public static final AvsStatus NOT_SUPPORTED
        Generated enum value for AvsStatus.NOT_SUPPORTED value defined at extension payment.
      • INVALID

        public static final AvsStatus INVALID
        Generated enum value for AvsStatus.INVALID value defined at extension payment.
      • NO_RESULT

        public static final AvsStatus NO_RESULT
        Generated enum value for AvsStatus.NO_RESULT value defined at extension payment.
      • UNRECOGNIZED_RESULT

        public static final AvsStatus UNRECOGNIZED_RESULT
        Generated enum value for AvsStatus.UNRECOGNIZED_RESULT value defined at extension payment.
      • SYSTEM_UNAVAILABLE

        public static final AvsStatus SYSTEM_UNAVAILABLE
        Generated enum value for AvsStatus.SYSTEM_UNAVAILABLE value defined at extension payment.
    • Method Detail

      • values

        public static AvsStatus[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AvsStatus c : AvsStatus.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AvsStatus valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null