Enum Class ConnectorPersistRemote.PushCommand
java.lang.Object
java.lang.Enum<ConnectorPersistRemote.PushCommand>
com.priint.pubserver.plugin.interfaces.ConnectorPersistRemote.PushCommand
- All Implemented Interfaces:
Serializable,Comparable<ConnectorPersistRemote.PushCommand>,Constable
- Enclosing interface:
- ConnectorPersistRemote
public static enum ConnectorPersistRemote.PushCommand
extends Enum<ConnectorPersistRemote.PushCommand>
request command for the entity data item
- Since:
- 4.0.5
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptioninsert, update or delete referenced object/sdelete the referenced object/sinsert (persist, create) the referenced object/sread the current data for the referenced object/supdate (merge) the referenced object/sinsert the referenced object/s or update them (if already existing) -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ConnectorPersistRemote.PushCommand[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DELETE
delete the referenced object/s -
INSERT
insert (persist, create) the referenced object/s -
UPDATE
update (merge) the referenced object/s -
UPSERT
insert the referenced object/s or update them (if already existing)- Since:
- 4.1.0
-
SELECT
read the current data for the referenced object/s- Since:
- 4.1.0
-
COMMIT
insert, update or delete referenced object/s- Since:
- 4.1.6
-
-
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
-