Package io.micronaut.data.model.runtime
Enum Class StoredQuery.OperationType
- All Implemented Interfaces:
Serializable
,Comparable<StoredQuery.OperationType>
,Constable
- Enclosing interface:
- StoredQuery<E,
R>
Describes the operation type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA count operation.A delete operation.An delete returning operation.An exists operation.An insert operation.An insert returning operation.A query operation.An update operation.An update returning operation. -
Method Summary
Modifier and TypeMethodDescriptionstatic StoredQuery.OperationType
Returns the enum constant of this class with the specified name.static StoredQuery.OperationType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
QUERY
A query operation. -
COUNT
A count operation. -
EXISTS
An exists operation. -
UPDATE
An update operation. -
UPDATE_RETURNING
An update returning operation. -
DELETE
A delete operation. -
DELETE_RETURNING
An delete returning operation. -
INSERT
An insert operation. -
INSERT_RETURNING
An insert returning operation.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-