Package com.chrt.api.types
Enum NotificationEventsForOrgsEnum.Value
- java.lang.Object
-
- java.lang.Enum<NotificationEventsForOrgsEnum.Value>
-
- com.chrt.api.types.NotificationEventsForOrgsEnum.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<NotificationEventsForOrgsEnum.Value>
- Enclosing class:
- NotificationEventsForOrgsEnum
public static enum NotificationEventsForOrgsEnum.Value extends java.lang.Enum<NotificationEventsForOrgsEnum.Value>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NotificationEventsForOrgsEnum.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static NotificationEventsForOrgsEnum.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHIPPING_ORDER_STAGED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_ORDER_STAGED
-
SHIPPING_ORDER_COMPLETED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_ORDER_COMPLETED
-
SHIPPING_ORDER_CANCELLED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_ORDER_CANCELLED
-
SHIPPING_TASK_GROUP_COURIER_ORG_ASSIGNED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_GROUP_COURIER_ORG_ASSIGNED
-
SHIPPING_TASK_GROUP_IN_PROGRESS
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_GROUP_IN_PROGRESS
-
SHIPPING_TASK_GROUP_FILE_ADDED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_GROUP_FILE_ADDED
-
SHIPPING_TASK_GROUP_DRIVER_ASSIGNED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_GROUP_DRIVER_ASSIGNED
-
SHIPPING_TASK_GROUP_MESSAGE
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_GROUP_MESSAGE
-
SHIPPING_TASK_GROUP_TASKS_ORDERING_UPDATED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_GROUP_TASKS_ORDERING_UPDATED
-
SHIPPING_TASK_GROUP_FLIGHT_INFO_UPDATED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_GROUP_FLIGHT_INFO_UPDATED
-
SHIPPING_TASK_ADDED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_ADDED
-
SHIPPING_TASK_COMPLETED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_COMPLETED
-
SHIPPING_TASK_SKIPPED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_SKIPPED
-
SHIPPING_TASK_DELETED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_DELETED
-
SHIPPING_TASK_TASK_ARTIFACT_COMPLETED
public static final NotificationEventsForOrgsEnum.Value SHIPPING_TASK_TASK_ARTIFACT_COMPLETED
-
BILLING_STATEMENT_OPENED
public static final NotificationEventsForOrgsEnum.Value BILLING_STATEMENT_OPENED
-
BILLING_STATEMENT_PAID
public static final NotificationEventsForOrgsEnum.Value BILLING_STATEMENT_PAID
-
BILLING_LINE_ITEM_GROUP_MESSAGE
public static final NotificationEventsForOrgsEnum.Value BILLING_LINE_ITEM_GROUP_MESSAGE
-
BILLING_LINE_ITEM_GROUP_FILE_ADDED
public static final NotificationEventsForOrgsEnum.Value BILLING_LINE_ITEM_GROUP_FILE_ADDED
-
UNKNOWN
public static final NotificationEventsForOrgsEnum.Value UNKNOWN
-
-
Method Detail
-
values
public static NotificationEventsForOrgsEnum.Value[] 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 (NotificationEventsForOrgsEnum.Value c : NotificationEventsForOrgsEnum.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationEventsForOrgsEnum.Value 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
-
-