public enum CustomDeliveryReceiptState extends Enum<CustomDeliveryReceiptState>
| Enum Constant and Description |
|---|
ACCEPTD
ACCEPTED
|
DELETED
DELETED
|
DELIVRD
DELIVERED
|
DND_REJECTED
DO NOT DISTURB REJECTED
|
ENROUTE
ENROUTE
|
EXPIRED
EXPIRED
|
REJECTD
REJECTED
|
UNDELIV
UNDELIVERABLE
|
UNKNOWN
UNKNOWN
|
| Modifier and Type | Method and Description |
|---|---|
static CustomDeliveryReceiptState |
getByName(String name) |
int |
value() |
static CustomDeliveryReceiptState |
valueOf(int value) |
static CustomDeliveryReceiptState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomDeliveryReceiptState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomDeliveryReceiptState ENROUTE
public static final CustomDeliveryReceiptState DELIVRD
public static final CustomDeliveryReceiptState EXPIRED
public static final CustomDeliveryReceiptState DELETED
public static final CustomDeliveryReceiptState UNDELIV
public static final CustomDeliveryReceiptState ACCEPTD
public static final CustomDeliveryReceiptState UNKNOWN
public static final CustomDeliveryReceiptState REJECTD
public static final CustomDeliveryReceiptState DND_REJECTED
public static CustomDeliveryReceiptState[] values()
for (CustomDeliveryReceiptState c : CustomDeliveryReceiptState.values()) System.out.println(c);
public static CustomDeliveryReceiptState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static CustomDeliveryReceiptState getByName(String name)
public static CustomDeliveryReceiptState valueOf(int value) throws IllegalArgumentException
IllegalArgumentExceptionpublic int value()
Copyright © 2025 WSO2. All rights reserved.