Enum DeliveryTerms

java.lang.Object
java.lang.Enum<DeliveryTerms>
net.avalara.avatax.rest.client.enums.DeliveryTerms
All Implemented Interfaces:
Serializable, Comparable<DeliveryTerms>, java.lang.constant.Constable

public enum DeliveryTerms extends Enum<DeliveryTerms>
  • Enum Constant Details

    • DAP

      public static final DeliveryTerms DAP
      Delivery At Place (DAP) implies that Duty And Tax will be paid by the Buyer or Consignee of the shipment
    • DDP

      public static final DeliveryTerms DDP
      Delivery Duty Paid (DDP) implies that Duty And Tax will be paid by the Shipper
    • FOB

      public static final DeliveryTerms FOB
      Free on Board
    • FCA

      public static final DeliveryTerms FCA
      Free Carrier
    • FAS

      public static final DeliveryTerms FAS
      Free Alongside Ship
    • EXW

      public static final DeliveryTerms EXW
      Ex Works
    • DPU

      public static final DeliveryTerms DPU
      Delivered at Place Unloaded
    • CPT

      public static final DeliveryTerms CPT
      Carriage Paid To
    • CIP

      public static final DeliveryTerms CIP
      Carriage Insurance Paid To
    • CIF

      public static final DeliveryTerms CIF
      Cost, Insurance, and Freight
    • CFR

      public static final DeliveryTerms CFR
      Cost And Freight
  • Method Details

    • values

      public static DeliveryTerms[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static DeliveryTerms 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
    • valueOf

      public static DeliveryTerms valueOf(int intValue)
      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:
      intValue - 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
    • getValue

      public int getValue()