public enum AcknowledgementType extends Enum<AcknowledgementType>
AcknowledgementType
Enumeration of application acknowledgement types.| Modifier and Type | Method and Description |
|---|---|
static AcknowledgementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AcknowledgementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AcknowledgementType AL
public static final AcknowledgementType NE
public static AcknowledgementType[] values()
for (AcknowledgementType c : AcknowledgementType.values()) System.out.println(c);
public static AcknowledgementType 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 nullCopyright © 2021. All rights reserved.