Package com.arangodb.model
Class AqlFunctionCreateOptions
- java.lang.Object
-
- com.arangodb.model.AqlFunctionCreateOptions
-
public final class AqlFunctionCreateOptions extends Object
- Author:
- Mark Vollmary
-
-
Constructor Summary
Constructors Constructor Description AqlFunctionCreateOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCode()
Boolean
getIsDeterministic()
String
getName()
AqlFunctionCreateOptions
isDeterministic(Boolean isDeterministic)
-
-
-
Method Detail
-
getName
public String getName()
-
getCode
public String getCode()
-
isDeterministic
public AqlFunctionCreateOptions isDeterministic(Boolean isDeterministic)
- Parameters:
isDeterministic
- an optional boolean value to indicate that the function results are fully deterministic (function return value solely depends on the input value and return value is the same for repeated calls with same input)- Returns:
- options
-
getIsDeterministic
public Boolean getIsDeterministic()
-
-