Class Parameter

java.lang.Object
com.google.cloud.bigquery.Parameter

public abstract class Parameter extends Object
  • Method Details

    • getName

      @Nullable public abstract String getName()
      Returns the name of the query parameter. If unset, this is a positional parameter. Otherwise, should be unique within a query.
      Returns:
      value or null for none
    • getValue

      public abstract QueryParameterValue getValue()
      Returns the value for a query parameter along with its type.
    • toBuilder

      public abstract Parameter.Builder toBuilder()
      Returns a builder pre-populated using the current values of this field.
    • newBuilder

      public static Parameter.Builder newBuilder()
      Returns a builder for a Parameter object.