Enum WarehousingCommentEventType
- java.lang.Object
-
- java.lang.Enum<WarehousingCommentEventType>
-
- de.hybris.platform.warehousing.data.comment.WarehousingCommentEventType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WarehousingCommentEventType>
public enum WarehousingCommentEventType extends java.lang.Enum<WarehousingCommentEventType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCEL_CONSIGNMENT_COMMENTGenerated enum value forWarehousingCommentEventType.CANCEL_CONSIGNMENT_COMMENT("consignmentCancellationComment", "Consignment Cancellation Comment", "consignmentCancellationEvent", "Consignment Cancellation Event")value defined at extensionwarehousing.CANCEL_ORDER_COMMENTGenerated enum value forWarehousingCommentEventType.CANCEL_ORDER_COMMENT("orderCancellationComment", "Order Cancellation Comment", "orderCancellationEvent", "Order Cancellation Event")value defined at extensionwarehousing.CREATE_ASN_COMMENTGenerated enum value forWarehousingCommentEventType.CREATE_ASN_COMMENT("asnCreationComment", "Asn Creation Comment", "asnCreationEvent", "Asn Creation Event")value defined at extensionwarehousing.INVENTORY_ADJUSTMENT_COMMENTGenerated enum value forWarehousingCommentEventType.INVENTORY_ADJUSTMENT_COMMENT("inventoryAdjustmentComment", "Inventory Adjustment Comment", "inventoryAdjustmentEvent", "Inventory Adjustment Event")value defined at extensionwarehousing.REALLOCATE_CONSIGNMENT_COMMENTGenerated enum value forWarehousingCommentEventType.REALLOCATE_CONSIGNMENT_COMMENT("consignmentReallocationComment", "Consignment Reallocation Comment", "consignmentReallocationEvent", "Consignment Reallocation Event")value defined at extensionwarehousing.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCommentTypeCode()java.lang.StringgetCommentTypeName()java.lang.StringgetComponentCode()java.lang.StringgetComponentName()static WarehousingCommentEventTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WarehousingCommentEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CANCEL_ORDER_COMMENT
public static final WarehousingCommentEventType CANCEL_ORDER_COMMENT
Generated enum value forWarehousingCommentEventType.CANCEL_ORDER_COMMENT("orderCancellationComment", "Order Cancellation Comment", "orderCancellationEvent", "Order Cancellation Event")value defined at extensionwarehousing.
-
CANCEL_CONSIGNMENT_COMMENT
public static final WarehousingCommentEventType CANCEL_CONSIGNMENT_COMMENT
Generated enum value forWarehousingCommentEventType.CANCEL_CONSIGNMENT_COMMENT("consignmentCancellationComment", "Consignment Cancellation Comment", "consignmentCancellationEvent", "Consignment Cancellation Event")value defined at extensionwarehousing.
-
REALLOCATE_CONSIGNMENT_COMMENT
public static final WarehousingCommentEventType REALLOCATE_CONSIGNMENT_COMMENT
Generated enum value forWarehousingCommentEventType.REALLOCATE_CONSIGNMENT_COMMENT("consignmentReallocationComment", "Consignment Reallocation Comment", "consignmentReallocationEvent", "Consignment Reallocation Event")value defined at extensionwarehousing.
-
INVENTORY_ADJUSTMENT_COMMENT
public static final WarehousingCommentEventType INVENTORY_ADJUSTMENT_COMMENT
Generated enum value forWarehousingCommentEventType.INVENTORY_ADJUSTMENT_COMMENT("inventoryAdjustmentComment", "Inventory Adjustment Comment", "inventoryAdjustmentEvent", "Inventory Adjustment Event")value defined at extensionwarehousing.
-
CREATE_ASN_COMMENT
public static final WarehousingCommentEventType CREATE_ASN_COMMENT
Generated enum value forWarehousingCommentEventType.CREATE_ASN_COMMENT("asnCreationComment", "Asn Creation Comment", "asnCreationEvent", "Asn Creation Event")value defined at extensionwarehousing.
-
-
Method Detail
-
values
public static WarehousingCommentEventType[] 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 (WarehousingCommentEventType c : WarehousingCommentEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WarehousingCommentEventType 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
-
getComponentCode
public java.lang.String getComponentCode()
-
getComponentName
public java.lang.String getComponentName()
-
getCommentTypeCode
public java.lang.String getCommentTypeCode()
-
getCommentTypeName
public java.lang.String getCommentTypeName()
-
-