- java.lang.Object
-
- java.lang.Enum<OracleDSL.DBMS_AQ.DEQUEUE_MODE>
-
- org.jooq.util.oracle.OracleDSL.DBMS_AQ.DEQUEUE_MODE
-
- All Implemented Interfaces:
Serializable
,Comparable<OracleDSL.DBMS_AQ.DEQUEUE_MODE>
- Enclosing class:
- OracleDSL.DBMS_AQ
public static enum OracleDSL.DBMS_AQ.DEQUEUE_MODE extends Enum<OracleDSL.DBMS_AQ.DEQUEUE_MODE>
A flag corresponding toDBMS_AQ.DEQUEUE_OPTIONS_T.DEQUEUE_MODE
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BROWSE
LOCKED
REMOVE
REMOVE_NODATA
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OracleDSL.DBMS_AQ.DEQUEUE_MODE
valueOf(String name)
Returns the enum constant of this type with the specified name.static OracleDSL.DBMS_AQ.DEQUEUE_MODE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BROWSE
public static final OracleDSL.DBMS_AQ.DEQUEUE_MODE BROWSE
-
LOCKED
public static final OracleDSL.DBMS_AQ.DEQUEUE_MODE LOCKED
-
REMOVE
public static final OracleDSL.DBMS_AQ.DEQUEUE_MODE REMOVE
-
REMOVE_NODATA
public static final OracleDSL.DBMS_AQ.DEQUEUE_MODE REMOVE_NODATA
-
-
Method Detail
-
values
public static OracleDSL.DBMS_AQ.DEQUEUE_MODE[] 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 (OracleDSL.DBMS_AQ.DEQUEUE_MODE c : OracleDSL.DBMS_AQ.DEQUEUE_MODE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OracleDSL.DBMS_AQ.DEQUEUE_MODE 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
-
-