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