Enum CisAddressType

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

    public enum CisAddressType
    extends java.lang.Enum<CisAddressType>
    Indicates the type of an address.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ADMIN_ORIGIN
      Place of business where the customer's order is accepted/approved, thereby becoming contractually obligated to make the sale.
      BILL_TO
      consumer's billing address.
      SHIP_FROM
      address where the order is shipped from (e.g.
      SHIP_TO
      address where the order is shipped to (e.g.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static CisAddressType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static CisAddressType[] 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

      • SHIP_TO

        public static final CisAddressType SHIP_TO
        address where the order is shipped to (e.g. the consumer's home).
      • SHIP_FROM

        public static final CisAddressType SHIP_FROM
        address where the order is shipped from (e.g. the warehouse).
      • BILL_TO

        public static final CisAddressType BILL_TO
        consumer's billing address.
      • ADMIN_ORIGIN

        public static final CisAddressType ADMIN_ORIGIN
        Place of business where the customer's order is accepted/approved, thereby becoming contractually obligated to make the sale.
    • Method Detail

      • values

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

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