Package classes
Enum Object_Venue.Other_ShippingType
- java.lang.Object
-
- java.lang.Enum<Object_Venue.Other_ShippingType>
-
- classes.Object_Venue.Other_ShippingType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Object_Venue.Other_ShippingType>
- Enclosing class:
- Object_Venue
public static enum Object_Venue.Other_ShippingType extends java.lang.Enum<Object_Venue.Other_ShippingType>
Represents a fulfillment method for aObject_Venue. Contained withinObject_Venue.Object_DeliveryMethod.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOCAL_DELIVERYPICKUPSHIPPING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDatabaseName()static Object_Venue.Other_ShippingTypegetShippingTypeBasedOffDatabaseName(java.lang.String type)static Object_Venue.Other_ShippingTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Object_Venue.Other_ShippingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHIPPING
public static final Object_Venue.Other_ShippingType SHIPPING
-
LOCAL_DELIVERY
public static final Object_Venue.Other_ShippingType LOCAL_DELIVERY
-
PICKUP
public static final Object_Venue.Other_ShippingType PICKUP
-
-
Method Detail
-
values
public static Object_Venue.Other_ShippingType[] 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 (Object_Venue.Other_ShippingType c : Object_Venue.Other_ShippingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Object_Venue.Other_ShippingType 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 namejava.lang.NullPointerException- if the argument is null
-
getShippingTypeBasedOffDatabaseName
public static Object_Venue.Other_ShippingType getShippingTypeBasedOffDatabaseName(java.lang.String type)
-
getDatabaseName
public java.lang.String getDatabaseName()
-
-