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