Class RoutineArgument.Builder

    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • setKind

        public abstract RoutineArgument.Builder setKind​(String kind)
        Sets the kind of argument.

        A FIXED_TYPE argument is a fully specified type. It can be a struct or an array, but not a table.

        An ANY_TYPE argument is any type. It can be a struct or an array, but not a table.

      • setMode

        public abstract RoutineArgument.Builder setMode​(String mode)
        Optionally specifies the input/output mode of the argument.

        An IN mode argument is input-only. An OUT mode argument is output-only. An INOUT mode argument is both an input and output.

      • build

        public abstract RoutineArgument build()
        Creates a RoutineArgument object.