Class PullAction
- java.lang.Object
-
- fr.gouv.vitam.common.database.builder.query.action.Action
-
- fr.gouv.vitam.common.database.builder.query.action.PullAction
-
- Direct Known Subclasses:
PullAction
public class PullAction extends Action
Pull Action: $pull : { name : [ value, value, ... ] }
-
-
Field Summary
-
Fields inherited from class fr.gouv.vitam.common.database.builder.query.action.Action
currentAction, currentObject, currentUPDATEACTION, ready
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedPullAction()PullAction(java.lang.String variableName, boolean... value)Pull Action constructorPullAction(java.lang.String variableName, double... value)Pull Action constructorPullAction(java.lang.String variableName, long... value)Pull Action constructorPullAction(java.lang.String variableName, java.lang.String... value)Pull Action constructorPullAction(java.lang.String variableName, java.util.Date... value)Pull Action constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PullActionadd(boolean... value)Add other Pull sub actions to Pull QueryPullActionadd(double... value)Add other Pull sub actions to Pull QueryPullActionadd(long... value)Add other Pull sub actions to Pull QueryPullActionadd(java.lang.String... value)Add other Pull sub actions to Pull QueryPullActionadd(java.util.Date... value)Add other Pull sub actions to Pull Query-
Methods inherited from class fr.gouv.vitam.common.database.builder.query.action.Action
clean, createActionValueArrayVariable, createActionVariables, createActionVariableValue, createActionVariableValue, createActionVariableValue, createActionVariableValue, createActionVariableValue, createActionVariableValue, getCurrentAction, getCurrentObject, getUPDATEACTION, isReady, setReady, toString
-
-
-
-
Constructor Detail
-
PullAction
protected PullAction()
-
PullAction
public PullAction(java.lang.String variableName, java.lang.String... value) throws InvalidCreateOperationExceptionPull Action constructor- Parameters:
variableName- key namevalue- key value- Throws:
InvalidCreateOperationException- when query is invalid
-
PullAction
public PullAction(java.lang.String variableName, long... value) throws InvalidCreateOperationExceptionPull Action constructor- Parameters:
variableName- key namevalue- key value- Throws:
InvalidCreateOperationException- when query is invalid
-
PullAction
public PullAction(java.lang.String variableName, boolean... value) throws InvalidCreateOperationExceptionPull Action constructor- Parameters:
variableName- key namevalue- key value- Throws:
InvalidCreateOperationException- when query is invalid
-
PullAction
public PullAction(java.lang.String variableName, double... value) throws InvalidCreateOperationExceptionPull Action constructor- Parameters:
variableName- key namevalue- key value- Throws:
InvalidCreateOperationException- when query is invalid
-
PullAction
public PullAction(java.lang.String variableName, java.util.Date... value) throws InvalidCreateOperationExceptionPull Action constructor- Parameters:
variableName- key namevalue- key value- Throws:
InvalidCreateOperationException- when query is invalid
-
-
Method Detail
-
add
public final PullAction add(java.lang.String... value) throws InvalidCreateOperationException
Add other Pull sub actions to Pull Query- Parameters:
value- key value- Returns:
- the PullAction
- Throws:
InvalidCreateOperationException- when query is invalid
-
add
public final PullAction add(boolean... value) throws InvalidCreateOperationException
Add other Pull sub actions to Pull Query- Parameters:
value- key value- Returns:
- the PullAction
- Throws:
InvalidCreateOperationException- when query is invalid
-
add
public final PullAction add(long... value) throws InvalidCreateOperationException
Add other Pull sub actions to Pull Query- Parameters:
value- key value- Returns:
- the PullAction
- Throws:
InvalidCreateOperationException- when query is invalid
-
add
public final PullAction add(double... value) throws InvalidCreateOperationException
Add other Pull sub actions to Pull Query- Parameters:
value- key value- Returns:
- the PullAction
- Throws:
InvalidCreateOperationException- when query is invalid
-
add
public final PullAction add(java.util.Date... value) throws InvalidCreateOperationException
Add other Pull sub actions to Pull Query- Parameters:
value- key value- Returns:
- the PullAction
- Throws:
InvalidCreateOperationException- when query is invalid
-
-