Enum OracleNoSQLOperation
- java.lang.Object
-
- java.lang.Enum<OracleNoSQLOperation>
-
- org.eclipse.persistence.internal.nosql.adapters.nosql.OracleNoSQLOperation
-
- All Implemented Interfaces:
Serializable,Comparable<OracleNoSQLOperation>
public enum OracleNoSQLOperation extends Enum<OracleNoSQLOperation>
Defines the valid Oracle NoSQL operations.- Since:
- EclipseLink 2.4
- Author:
- James
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETEDELETE_IF_VERSIONGETITERATORPUTPUT_IF_ABSENTPUT_IF_PRESENTPUT_IF_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OracleNoSQLOperationvalueOf(String name)Returns the enum constant of this type with the specified name.static OracleNoSQLOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET
public static final OracleNoSQLOperation GET
-
PUT
public static final OracleNoSQLOperation PUT
-
PUT_IF_ABSENT
public static final OracleNoSQLOperation PUT_IF_ABSENT
-
PUT_IF_PRESENT
public static final OracleNoSQLOperation PUT_IF_PRESENT
-
PUT_IF_VERSION
public static final OracleNoSQLOperation PUT_IF_VERSION
-
DELETE
public static final OracleNoSQLOperation DELETE
-
DELETE_IF_VERSION
public static final OracleNoSQLOperation DELETE_IF_VERSION
-
ITERATOR
public static final OracleNoSQLOperation ITERATOR
-
-
Method Detail
-
values
public static OracleNoSQLOperation[] 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 (OracleNoSQLOperation c : OracleNoSQLOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OracleNoSQLOperation 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
-
-