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