public enum AckSignalFlag extends Enum<AckSignalFlag>
Enum Constant and Description |
---|
DUPLICATE_REQUEST
The request is/was not new, and is/was already processed
|
NEW_REQUEST
The request is/was new
|
Modifier and Type | Method and Description |
---|---|
static AckSignalFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AckSignalFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AckSignalFlag NEW_REQUEST
public static final AckSignalFlag DUPLICATE_REQUEST
public static AckSignalFlag[] values()
for (AckSignalFlag c : AckSignalFlag.values()) System.out.println(c);
public static AckSignalFlag 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 © 2011-2020 The Apache Software Foundation. All Rights Reserved.