Enum DisputeCategory

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

    public enum DisputeCategory
    extends java.lang.Enum<DisputeCategory>
    • Enum Constant Detail

      • GENERAL

        @SerializedName("general")
        public static final DisputeCategory GENERAL
      • DUPLICATE

        @SerializedName("duplicate")
        public static final DisputeCategory DUPLICATE
      • FRAUDULENT

        @SerializedName("fraudulent")
        public static final DisputeCategory FRAUDULENT
      • UNRECOGNIZED

        @SerializedName("unrecognized")
        public static final DisputeCategory UNRECOGNIZED
      • INCORRECT_AMOUNT

        @SerializedName("incorrect_amount")
        public static final DisputeCategory INCORRECT_AMOUNT
      • NOT_AS_DESCRIBED

        @SerializedName("not_as_described")
        public static final DisputeCategory NOT_AS_DESCRIBED
      • CREDIT_NOT_ISSUED

        @SerializedName("credit_not_issued")
        public static final DisputeCategory CREDIT_NOT_ISSUED
      • CANCELED_RECURRING

        @SerializedName("canceled_recurring")
        public static final DisputeCategory CANCELED_RECURRING
      • PRODUCT_SERVICE_NOT_RECEIVED

        @SerializedName("product_service_not_received")
        public static final DisputeCategory PRODUCT_SERVICE_NOT_RECEIVED
    • Method Detail

      • values

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

        public static DisputeCategory 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