Package com.arangodb.model
Class VertexReplaceOptions
- java.lang.Object
-
- com.arangodb.model.VertexReplaceOptions
-
public final class VertexReplaceOptions extends Object
- Author:
- Mark Vollmary
- See Also:
- API Documentation
-
-
Constructor Summary
Constructors Constructor Description VertexReplaceOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getIfMatch()
String
getStreamTransactionId()
Boolean
getWaitForSync()
VertexReplaceOptions
ifMatch(String ifMatch)
VertexReplaceOptions
streamTransactionId(String streamTransactionId)
VertexReplaceOptions
waitForSync(Boolean waitForSync)
-
-
-
Method Detail
-
getWaitForSync
public Boolean getWaitForSync()
-
waitForSync
public VertexReplaceOptions waitForSync(Boolean waitForSync)
- Parameters:
waitForSync
- Wait until document has been synced to disk.- Returns:
- options
-
getIfMatch
public String getIfMatch()
-
ifMatch
public VertexReplaceOptions ifMatch(String ifMatch)
- Parameters:
ifMatch
- replace a document based on target revision- Returns:
- options
-
getStreamTransactionId
public String getStreamTransactionId()
-
streamTransactionId
public VertexReplaceOptions streamTransactionId(String streamTransactionId)
- Parameters:
streamTransactionId
- If set, the operation will be executed within the transaction.- Returns:
- options
- Since:
- ArangoDB 3.5.1
-
-