public static enum AQDequeueOptions.DequeueMode extends Enum<AQDequeueOptions.DequeueMode>
| Enum Constant and Description | 
|---|
BROWSE
Read the message without acquiring any lock on the message. 
 | 
LOCKED
Read and obtain a write lock on the message. 
 | 
REMOVE
Read the message and update or delete it. 
 | 
REMOVE_NODATA
Confirm receipt of the message, but do not deliver the actual message content. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
getCode()
Implementation detail (for internal use only). 
 | 
static AQDequeueOptions.DequeueMode | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static AQDequeueOptions.DequeueMode[] | 
values()
Returns an array containing the constants of this enum type, in the order they are declared. 
 | 
public static final AQDequeueOptions.DequeueMode BROWSE
public static final AQDequeueOptions.DequeueMode LOCKED
public static final AQDequeueOptions.DequeueMode REMOVE
public static final AQDequeueOptions.DequeueMode REMOVE_NODATA
public static AQDequeueOptions.DequeueMode[] values()
for (AQDequeueOptions.DequeueMode c : AQDequeueOptions.DequeueMode.values())
    System.out.println(c);
public static AQDequeueOptions.DequeueMode 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 final int getCode()