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 protected
PullAction()
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 PullAction
add(boolean... value)
Add other Pull sub actions to Pull QueryPullAction
add(double... value)
Add other Pull sub actions to Pull QueryPullAction
add(long... value)
Add other Pull sub actions to Pull QueryPullAction
add(java.lang.String... value)
Add other Pull sub actions to Pull QueryPullAction
add(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 InvalidCreateOperationException
Pull Action constructor- Parameters:
variableName
- key namevalue
- key value- Throws:
InvalidCreateOperationException
- when query is invalid
-
PullAction
public PullAction(java.lang.String variableName, long... value) throws InvalidCreateOperationException
Pull Action constructor- Parameters:
variableName
- key namevalue
- key value- Throws:
InvalidCreateOperationException
- when query is invalid
-
PullAction
public PullAction(java.lang.String variableName, boolean... value) throws InvalidCreateOperationException
Pull Action constructor- Parameters:
variableName
- key namevalue
- key value- Throws:
InvalidCreateOperationException
- when query is invalid
-
PullAction
public PullAction(java.lang.String variableName, double... value) throws InvalidCreateOperationException
Pull 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 InvalidCreateOperationException
Pull 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
-
-