Enum ConsignmentStatus
- java.lang.Object
-
- java.lang.Enum<ConsignmentStatus>
-
- de.hybris.platform.basecommerce.enums.ConsignmentStatus
-
- All Implemented Interfaces:
HybrisEnumValue
,java.io.Serializable
,java.lang.Comparable<ConsignmentStatus>
public enum ConsignmentStatus extends java.lang.Enum<ConsignmentStatus> implements HybrisEnumValue
Generated enum ConsignmentStatus declared at extension basecommerce.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELLED
Generated enum value for ConsignmentStatus.CANCELLED declared at extension basecommerce.CANCELLING
Generated enum value for ConsignmentStatus.CANCELLING declared at extension saporderexchangeoms.DELIVERING
Generated enum value for ConsignmentStatus.DELIVERING declared at extension consignmenttrackingservices.DELIVERY_COMPLETED
Generated enum value for ConsignmentStatus.DELIVERY_COMPLETED declared at extension consignmenttrackingservices.DELIVERY_REJECTED
Generated enum value for ConsignmentStatus.DELIVERY_REJECTED declared at extension consignmenttrackingservices.IN_TRANSIT
Generated enum value for ConsignmentStatus.IN_TRANSIT declared at extension consignmenttrackingservices.PAYMENT_NOT_CAPTURED
Generated enum value for ConsignmentStatus.PAYMENT_NOT_CAPTURED declared at extension commerceservices.PICKPACK
Generated enum value for ConsignmentStatus.PICKPACK declared at extension basecommerce.PICKUP_COMPLETE
Generated enum value for ConsignmentStatus.PICKUP_COMPLETE declared at extension commerceservices.READY
Generated enum value for ConsignmentStatus.READY declared at extension basecommerce.READY_FOR_PICKUP
Generated enum value for ConsignmentStatus.READY_FOR_PICKUP declared at extension commerceservices.READY_FOR_SHIPPING
Generated enum value for ConsignmentStatus.READY_FOR_SHIPPING declared at extension warehousing.SHIPPED
Generated enum value for ConsignmentStatus.SHIPPED declared at extension basecommerce.TAX_NOT_COMMITTED
Generated enum value for ConsignmentStatus.TAX_NOT_COMMITTED declared at extension commerceservices.WAITING
Generated enum value for ConsignmentStatus.WAITING declared at extension basecommerce.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
_TYPECODE
Generated model type code constant.static java.lang.String
SIMPLE_CLASSNAME
Generated simple class name constant.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCode()
Gets the code of this enum value.java.lang.String
getType()
Gets the type this enum value belongs to.static ConsignmentStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ConsignmentStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CANCELLING
public static final ConsignmentStatus CANCELLING
Generated enum value for ConsignmentStatus.CANCELLING declared at extension saporderexchangeoms.
-
IN_TRANSIT
public static final ConsignmentStatus IN_TRANSIT
Generated enum value for ConsignmentStatus.IN_TRANSIT declared at extension consignmenttrackingservices.
-
READY_FOR_PICKUP
public static final ConsignmentStatus READY_FOR_PICKUP
Generated enum value for ConsignmentStatus.READY_FOR_PICKUP declared at extension commerceservices.
-
READY_FOR_SHIPPING
public static final ConsignmentStatus READY_FOR_SHIPPING
Generated enum value for ConsignmentStatus.READY_FOR_SHIPPING declared at extension warehousing.
-
WAITING
public static final ConsignmentStatus WAITING
Generated enum value for ConsignmentStatus.WAITING declared at extension basecommerce.
-
DELIVERING
public static final ConsignmentStatus DELIVERING
Generated enum value for ConsignmentStatus.DELIVERING declared at extension consignmenttrackingservices.
-
PICKPACK
public static final ConsignmentStatus PICKPACK
Generated enum value for ConsignmentStatus.PICKPACK declared at extension basecommerce.
-
PICKUP_COMPLETE
public static final ConsignmentStatus PICKUP_COMPLETE
Generated enum value for ConsignmentStatus.PICKUP_COMPLETE declared at extension commerceservices.
-
DELIVERY_COMPLETED
public static final ConsignmentStatus DELIVERY_COMPLETED
Generated enum value for ConsignmentStatus.DELIVERY_COMPLETED declared at extension consignmenttrackingservices.
-
PAYMENT_NOT_CAPTURED
public static final ConsignmentStatus PAYMENT_NOT_CAPTURED
Generated enum value for ConsignmentStatus.PAYMENT_NOT_CAPTURED declared at extension commerceservices.
-
READY
public static final ConsignmentStatus READY
Generated enum value for ConsignmentStatus.READY declared at extension basecommerce.
-
DELIVERY_REJECTED
public static final ConsignmentStatus DELIVERY_REJECTED
Generated enum value for ConsignmentStatus.DELIVERY_REJECTED declared at extension consignmenttrackingservices.
-
SHIPPED
public static final ConsignmentStatus SHIPPED
Generated enum value for ConsignmentStatus.SHIPPED declared at extension basecommerce.
-
TAX_NOT_COMMITTED
public static final ConsignmentStatus TAX_NOT_COMMITTED
Generated enum value for ConsignmentStatus.TAX_NOT_COMMITTED declared at extension commerceservices.
-
CANCELLED
public static final ConsignmentStatus CANCELLED
Generated enum value for ConsignmentStatus.CANCELLED declared at extension basecommerce.
-
-
Field Detail
-
_TYPECODE
public static final java.lang.String _TYPECODE
Generated model type code constant.- See Also:
- Constant Field Values
-
SIMPLE_CLASSNAME
public static final java.lang.String SIMPLE_CLASSNAME
Generated simple class name constant.- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ConsignmentStatus[] 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 (ConsignmentStatus c : ConsignmentStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConsignmentStatus 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
-
getCode
public java.lang.String getCode()
Gets the code of this enum value.- Specified by:
getCode
in interfaceHybrisEnumValue
- Returns:
- code of value
-
getType
public java.lang.String getType()
Gets the type this enum value belongs to.- Specified by:
getType
in interfaceHybrisEnumValue
- Returns:
- code of type
-
-