Class AqlFunctionEntity

java.lang.Object
com.arangodb.entity.AqlFunctionEntity

public final class AqlFunctionEntity extends Object
Author:
Mark Vollmary
  • Constructor Details

    • AqlFunctionEntity

      public AqlFunctionEntity()
  • Method Details

    • getName

      public String getName()
      Returns:
      The fully qualified name of the user function
    • getCode

      public String getCode()
      Returns:
      A string representation of the function body
    • getIsDeterministic

      public Boolean getIsDeterministic()
      Returns:
      An optional boolean value to indicate whether 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). The isDeterministic attribute is currently not used but may be used later for optimizations.