Package oracle.pgx.algorithm
Interface ControlFlow
-
public interface ControlFlow
Utility functions related to control-flow.
-
-
Method Summary
Static Methods Modifier and Type Method Description static void
exit()
Return from the function.static void
exit(java.lang.Object returnValue)
Return from the function with the given return value.static void
setNumberOfStepsEstimatedForCompletion(long val)
Set the value of number_of_steps_estimated_for_completion
-
-
-
Method Detail
-
exit
static void exit()
Return from the function.
-
exit
static void exit(java.lang.Object returnValue)
Return from the function with the given return value.- Parameters:
returnValue
-
-
setNumberOfStepsEstimatedForCompletion
static void setNumberOfStepsEstimatedForCompletion(long val)
Set the value of number_of_steps_estimated_for_completion- Parameters:
val
-
-
-