Packages

trait SQLOrBuilder extends MessageOrBuilder

Linear Supertypes
MessageOrBuilder, MessageLiteOrBuilder, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SQLOrBuilder
  2. MessageOrBuilder
  3. MessageLiteOrBuilder
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def containsNamedArguments(key: String): Boolean

    (Optional) A map of parameter names to expressions.
    It cannot coexist with `pos_arguments`.
    

    (Optional) A map of parameter names to expressions.
    It cannot coexist with `pos_arguments`.
    

    map<string, .spark.connect.Expression> named_arguments = 4;

  2. abstract def findInitializationErrors(): List[String]
    Definition Classes
    MessageOrBuilder
  3. abstract def getAllFields(): Map[FieldDescriptor, AnyRef]
    Definition Classes
    MessageOrBuilder
  4. abstract def getDefaultInstanceForType(): Message
    Definition Classes
    MessageOrBuilder → MessageLiteOrBuilder
  5. abstract def getDescriptorForType(): Descriptor
    Definition Classes
    MessageOrBuilder
  6. abstract def getField(field: FieldDescriptor): AnyRef
    Definition Classes
    MessageOrBuilder
  7. abstract def getInitializationErrorString(): String
    Definition Classes
    MessageOrBuilder
  8. abstract def getNamedArgumentsCount(): Int

    (Optional) A map of parameter names to expressions.
    It cannot coexist with `pos_arguments`.
    

    (Optional) A map of parameter names to expressions.
    It cannot coexist with `pos_arguments`.
    

    map<string, .spark.connect.Expression> named_arguments = 4;

  9. abstract def getNamedArgumentsMap(): Map[String, Expression]

    (Optional) A map of parameter names to expressions.
    It cannot coexist with `pos_arguments`.
    

    (Optional) A map of parameter names to expressions.
    It cannot coexist with `pos_arguments`.
    

    map<string, .spark.connect.Expression> named_arguments = 4;

  10. abstract def getNamedArgumentsOrDefault(key: String, defaultValue: Expression): Expression

    (Optional) A map of parameter names to expressions.
    It cannot coexist with `pos_arguments`.
    

    (Optional) A map of parameter names to expressions.
    It cannot coexist with `pos_arguments`.
    

    map<string, .spark.connect.Expression> named_arguments = 4;

  11. abstract def getNamedArgumentsOrThrow(key: String): Expression

    (Optional) A map of parameter names to expressions.
    It cannot coexist with `pos_arguments`.
    

    (Optional) A map of parameter names to expressions.
    It cannot coexist with `pos_arguments`.
    

    map<string, .spark.connect.Expression> named_arguments = 4;

  12. abstract def getOneofFieldDescriptor(oneof: OneofDescriptor): FieldDescriptor
    Definition Classes
    MessageOrBuilder
  13. abstract def getPosArguments(index: Int): Expression

    (Optional) A sequence of expressions for positional parameters in the SQL query text.
    It cannot coexist with `named_arguments`.
    

    (Optional) A sequence of expressions for positional parameters in the SQL query text.
    It cannot coexist with `named_arguments`.
    

    repeated .spark.connect.Expression pos_arguments = 5;

  14. abstract def getPosArgumentsCount(): Int

    (Optional) A sequence of expressions for positional parameters in the SQL query text.
    It cannot coexist with `named_arguments`.
    

    (Optional) A sequence of expressions for positional parameters in the SQL query text.
    It cannot coexist with `named_arguments`.
    

    repeated .spark.connect.Expression pos_arguments = 5;

  15. abstract def getPosArgumentsList(): List[Expression]

    (Optional) A sequence of expressions for positional parameters in the SQL query text.
    It cannot coexist with `named_arguments`.
    

    (Optional) A sequence of expressions for positional parameters in the SQL query text.
    It cannot coexist with `named_arguments`.
    

    repeated .spark.connect.Expression pos_arguments = 5;

  16. abstract def getPosArgumentsOrBuilder(index: Int): ExpressionOrBuilder

    (Optional) A sequence of expressions for positional parameters in the SQL query text.
    It cannot coexist with `named_arguments`.
    

    (Optional) A sequence of expressions for positional parameters in the SQL query text.
    It cannot coexist with `named_arguments`.
    

    repeated .spark.connect.Expression pos_arguments = 5;

  17. abstract def getPosArgumentsOrBuilderList(): List[_ <: ExpressionOrBuilder]

    (Optional) A sequence of expressions for positional parameters in the SQL query text.
    It cannot coexist with `named_arguments`.
    

    (Optional) A sequence of expressions for positional parameters in the SQL query text.
    It cannot coexist with `named_arguments`.
    

    repeated .spark.connect.Expression pos_arguments = 5;

  18. abstract def getQuery(): String

    (Required) The SQL query.
    

    (Required) The SQL query.
    

    string query = 1;

    returns

    The query.

  19. abstract def getQueryBytes(): ByteString

    (Required) The SQL query.
    

    (Required) The SQL query.
    

    string query = 1;

    returns

    The bytes for query.

  20. abstract def getRepeatedField(field: FieldDescriptor, index: Int): AnyRef
    Definition Classes
    MessageOrBuilder
  21. abstract def getRepeatedFieldCount(field: FieldDescriptor): Int
    Definition Classes
    MessageOrBuilder
  22. abstract def getUnknownFields(): UnknownFieldSet
    Definition Classes
    MessageOrBuilder
  23. abstract def hasField(field: FieldDescriptor): Boolean
    Definition Classes
    MessageOrBuilder
  24. abstract def hasOneof(oneof: OneofDescriptor): Boolean
    Definition Classes
    MessageOrBuilder
  25. abstract def isInitialized(): Boolean
    Definition Classes
    MessageLiteOrBuilder
  26. abstract def containsArgs(key: String): Boolean

    (Optional) A map of parameter names to literal expressions.
    

    (Optional) A map of parameter names to literal expressions.
    

    map<string, .spark.connect.Expression.Literal> args = 2 [deprecated = true];

    Annotations
    @Deprecated
    Deprecated
  27. abstract def getArgs(): Map[String, Literal]

    Use #getArgsMap() instead.

    Use #getArgsMap() instead.

    Annotations
    @Deprecated
    Deprecated
  28. abstract def getArgsCount(): Int

    (Optional) A map of parameter names to literal expressions.
    

    (Optional) A map of parameter names to literal expressions.
    

    map<string, .spark.connect.Expression.Literal> args = 2 [deprecated = true];

    Annotations
    @Deprecated
    Deprecated
  29. abstract def getArgsMap(): Map[String, Literal]

    (Optional) A map of parameter names to literal expressions.
    

    (Optional) A map of parameter names to literal expressions.
    

    map<string, .spark.connect.Expression.Literal> args = 2 [deprecated = true];

    Annotations
    @Deprecated
    Deprecated
  30. abstract def getArgsOrDefault(key: String, defaultValue: Literal): Literal

    (Optional) A map of parameter names to literal expressions.
    

    (Optional) A map of parameter names to literal expressions.
    

    map<string, .spark.connect.Expression.Literal> args = 2 [deprecated = true];

    Annotations
    @Deprecated
    Deprecated
  31. abstract def getArgsOrThrow(key: String): Literal

    (Optional) A map of parameter names to literal expressions.
    

    (Optional) A map of parameter names to literal expressions.
    

    map<string, .spark.connect.Expression.Literal> args = 2 [deprecated = true];

    Annotations
    @Deprecated
    Deprecated
  32. abstract def getNamedArguments(): Map[String, Expression]

    Use #getNamedArgumentsMap() instead.

    Use #getNamedArgumentsMap() instead.

    Annotations
    @Deprecated
    Deprecated
  33. abstract def getPosArgs(index: Int): Literal

    (Optional) A sequence of literal expressions for positional parameters in the SQL query text.
    

    (Optional) A sequence of literal expressions for positional parameters in the SQL query text.
    

    repeated .spark.connect.Expression.Literal pos_args = 3 [deprecated = true];

    Annotations
    @Deprecated
    Deprecated
  34. abstract def getPosArgsCount(): Int

    (Optional) A sequence of literal expressions for positional parameters in the SQL query text.
    

    (Optional) A sequence of literal expressions for positional parameters in the SQL query text.
    

    repeated .spark.connect.Expression.Literal pos_args = 3 [deprecated = true];

    Annotations
    @Deprecated
    Deprecated
  35. abstract def getPosArgsList(): List[Literal]

    (Optional) A sequence of literal expressions for positional parameters in the SQL query text.
    

    (Optional) A sequence of literal expressions for positional parameters in the SQL query text.
    

    repeated .spark.connect.Expression.Literal pos_args = 3 [deprecated = true];

    Annotations
    @Deprecated
    Deprecated
  36. abstract def getPosArgsOrBuilder(index: Int): LiteralOrBuilder

    (Optional) A sequence of literal expressions for positional parameters in the SQL query text.
    

    (Optional) A sequence of literal expressions for positional parameters in the SQL query text.
    

    repeated .spark.connect.Expression.Literal pos_args = 3 [deprecated = true];

    Annotations
    @Deprecated
    Deprecated
  37. abstract def getPosArgsOrBuilderList(): List[_ <: LiteralOrBuilder]

    (Optional) A sequence of literal expressions for positional parameters in the SQL query text.
    

    (Optional) A sequence of literal expressions for positional parameters in the SQL query text.
    

    repeated .spark.connect.Expression.Literal pos_args = 3 [deprecated = true];

    Annotations
    @Deprecated
    Deprecated

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  14. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  17. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from MessageOrBuilder

Inherited from MessageLiteOrBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped