Enum AVSResult

    • Enum Constant Detail

      • SUCCESS

        public static final AVSResult SUCCESS
      • ZIP_CODE_MATCH

        public static final AVSResult ZIP_CODE_MATCH
      • ZIP_CODE_MATCH_ADDRESS_NOT_CHECKED

        public static final AVSResult ZIP_CODE_MATCH_ADDRESS_NOT_CHECKED
      • ADDRESS_MATCH

        public static final AVSResult ADDRESS_MATCH
      • ADDRESS_MATCH_ZIP_NOT_CHECKED

        public static final AVSResult ADDRESS_MATCH_ZIP_NOT_CHECKED
      • NEITHER_MATCH

        public static final AVSResult NEITHER_MATCH
      • SERVICE_FAILURE

        public static final AVSResult SERVICE_FAILURE
      • SERVICE_UNAVAILABLE

        public static final AVSResult SERVICE_UNAVAILABLE
      • NOT_CHECKED

        public static final AVSResult NOT_CHECKED
      • ZIP_CODE_NOT_MATCHED_ADDRESS_NOT_CHECKED

        public static final AVSResult ZIP_CODE_NOT_MATCHED_ADDRESS_NOT_CHECKED
      • ADDRESS_NOT_MATCHED_ZIP_CODE_NOT_CHECKED

        public static final AVSResult ADDRESS_NOT_MATCHED_ZIP_CODE_NOT_CHECKED
    • Method Detail

      • values

        public static AVSResult[] 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 (AVSResult c : AVSResult.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AVSResult valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null