Package com.arangodb.model
Class DocumentExistsOptions
- java.lang.Object
-
- com.arangodb.model.DocumentExistsOptions
-
public final class DocumentExistsOptions extends Object
- Author:
- Mark Vollmary, Michele Rastelli
-
-
Constructor Summary
Constructors Constructor Description DocumentExistsOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getIfMatch()
String
getIfNoneMatch()
String
getStreamTransactionId()
DocumentExistsOptions
ifMatch(String ifMatch)
DocumentExistsOptions
ifNoneMatch(String ifNoneMatch)
DocumentExistsOptions
streamTransactionId(String streamTransactionId)
-
-
-
Method Detail
-
getIfNoneMatch
public String getIfNoneMatch()
-
ifNoneMatch
public DocumentExistsOptions ifNoneMatch(String ifNoneMatch)
- Parameters:
ifNoneMatch
- document revision must not contain If-None-Match- Returns:
- options
-
getIfMatch
public String getIfMatch()
-
ifMatch
public DocumentExistsOptions ifMatch(String ifMatch)
- Parameters:
ifMatch
- document revision must contain If-Match- Returns:
- options
-
getStreamTransactionId
public String getStreamTransactionId()
-
streamTransactionId
public DocumentExistsOptions streamTransactionId(String streamTransactionId)
- Parameters:
streamTransactionId
- If set, the operation will be executed within the transaction.- Returns:
- options
- Since:
- ArangoDB 3.5.0
-
-