Enum DocumentEventType
- java.lang.Object
-
- java.lang.Enum<DocumentEventType>
-
- no.digipost.api.client.representations.DocumentEventType
-
- All Implemented Interfaces:
Serializable
,Comparable<DocumentEventType>
public enum DocumentEventType extends Enum<DocumentEventType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EMAIL_MESSAGE_FAILED
EMAIL_MESSAGE_SENT
EMAIL_NOTIFICATION_FAILED
MOVE_FILES_FROM_PUBLIC_SECTOR
OPENED
PEPPOL_DELIVERED
PEPPOL_FAILED
POSTMARKED
PRINT_FAILED
SHREDDED
SMS_NOTIFICATION_FAILED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocumentEventType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DocumentEventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMAIL_MESSAGE_FAILED
public static final DocumentEventType EMAIL_MESSAGE_FAILED
-
EMAIL_MESSAGE_SENT
public static final DocumentEventType EMAIL_MESSAGE_SENT
-
EMAIL_NOTIFICATION_FAILED
public static final DocumentEventType EMAIL_NOTIFICATION_FAILED
-
SMS_NOTIFICATION_FAILED
public static final DocumentEventType SMS_NOTIFICATION_FAILED
-
OPENED
public static final DocumentEventType OPENED
-
MOVE_FILES_FROM_PUBLIC_SECTOR
public static final DocumentEventType MOVE_FILES_FROM_PUBLIC_SECTOR
-
POSTMARKED
public static final DocumentEventType POSTMARKED
-
PRINT_FAILED
public static final DocumentEventType PRINT_FAILED
-
PEPPOL_FAILED
public static final DocumentEventType PEPPOL_FAILED
-
PEPPOL_DELIVERED
public static final DocumentEventType PEPPOL_DELIVERED
-
SHREDDED
public static final DocumentEventType SHREDDED
-
-
Method Detail
-
values
public static DocumentEventType[] 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 (DocumentEventType c : DocumentEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentEventType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-