Enum Class ShippingType

java.lang.Object
java.lang.Enum<ShippingType>
de.focus_shift.lexoffice.java.sdk.model.ShippingType
All Implemented Interfaces:
Serializable, Comparable<ShippingType>, Constable

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

    • SERVICE

      public static final ShippingType SERVICE
      a service is supplied on shippingDate
    • SERVICEPERIOD

      public static final ShippingType SERVICEPERIOD
      a service is supplied within the period [shippingDate,shippingEndDate]
    • DELIVERY

      public static final ShippingType DELIVERY
      a product is delivered
    • DELIVERYPERIOD

      public static final ShippingType DELIVERYPERIOD
      a product is delivered within the period [shippingDate,shippingEndDate]
    • NONE

      public static final ShippingType NONE
      no shipping date has to be provided
  • Method Details

    • values

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

      public static ShippingType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null