Packages

final class Join extends GeneratedMessage with JoinOrBuilder

Relation of type [[Join]].

`left` and `right` must be present.

Protobuf type spark.connect.Join

Linear Supertypes
JoinOrBuilder, GeneratedMessage, Serializable, AbstractMessage, Message, MessageOrBuilder, AbstractMessageLite[MessageType, BuilderType], MessageLite, MessageLiteOrBuilder, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Join
  2. JoinOrBuilder
  3. GeneratedMessage
  4. Serializable
  5. AbstractMessage
  6. Message
  7. MessageOrBuilder
  8. AbstractMessageLite
  9. MessageLite
  10. MessageLiteOrBuilder
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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(obj: AnyRef): Boolean
    Definition Classes
    Join → AbstractMessage → Message → AnyRef → Any
    Annotations
    @Override()
  8. def findInitializationErrors(): List[String]
    Definition Classes
    AbstractMessage → MessageOrBuilder
  9. def getAllFields(): Map[FieldDescriptor, AnyRef]
    Definition Classes
    GeneratedMessage → MessageOrBuilder
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  11. def getDefaultInstanceForType(): Join
    Definition Classes
    Join → MessageOrBuilder → MessageLiteOrBuilder
    Annotations
    @Override()
  12. def getDescriptorForType(): Descriptor
    Definition Classes
    GeneratedMessage → MessageOrBuilder
  13. def getField(field: FieldDescriptor): AnyRef
    Definition Classes
    GeneratedMessage → MessageOrBuilder
  14. def getInitializationErrorString(): String
    Definition Classes
    AbstractMessage → MessageOrBuilder
  15. def getJoinCondition(): Expression

    (Optional) The join condition. Could be unset when `using_columns` is utilized.
    
    This field does not co-exist with using_columns.
    

    (Optional) The join condition. Could be unset when `using_columns` is utilized.
    
    This field does not co-exist with using_columns.
    

    .spark.connect.Expression join_condition = 3;

    returns

    The joinCondition.

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  16. def getJoinConditionOrBuilder(): ExpressionOrBuilder

    (Optional) The join condition. Could be unset when `using_columns` is utilized.
    
    This field does not co-exist with using_columns.
    

    (Optional) The join condition. Could be unset when `using_columns` is utilized.
    
    This field does not co-exist with using_columns.
    

    .spark.connect.Expression join_condition = 3;

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  17. def getJoinDataType(): JoinDataType

    (Optional) Only used by joinWith. Set the left and right join data types.
    

    (Optional) Only used by joinWith. Set the left and right join data types.
    

    optional .spark.connect.Join.JoinDataType join_data_type = 6;

    returns

    The joinDataType.

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  18. def getJoinDataTypeOrBuilder(): JoinDataTypeOrBuilder

    (Optional) Only used by joinWith. Set the left and right join data types.
    

    (Optional) Only used by joinWith. Set the left and right join data types.
    

    optional .spark.connect.Join.JoinDataType join_data_type = 6;

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  19. def getJoinType(): JoinType

    (Required) The join type.
    

    (Required) The join type.
    

    .spark.connect.Join.JoinType join_type = 4;

    returns

    The joinType.

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  20. def getJoinTypeValue(): Int

    (Required) The join type.
    

    (Required) The join type.
    

    .spark.connect.Join.JoinType join_type = 4;

    returns

    The enum numeric value on the wire for joinType.

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  21. def getLeft(): Relation

    (Required) Left input relation for a Join.
    

    (Required) Left input relation for a Join.
    

    .spark.connect.Relation left = 1;

    returns

    The left.

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  22. def getLeftOrBuilder(): RelationOrBuilder

    (Required) Left input relation for a Join.
    

    (Required) Left input relation for a Join.
    

    .spark.connect.Relation left = 1;

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  23. def getOneofFieldDescriptor(oneof: OneofDescriptor): FieldDescriptor
    Definition Classes
    GeneratedMessage → AbstractMessage → MessageOrBuilder
  24. def getParserForType(): Parser[Join]
    Definition Classes
    Join → GeneratedMessage → Message → MessageLite
    Annotations
    @Override()
  25. def getRepeatedField(field: FieldDescriptor, index: Int): AnyRef
    Definition Classes
    GeneratedMessage → MessageOrBuilder
  26. def getRepeatedFieldCount(field: FieldDescriptor): Int
    Definition Classes
    GeneratedMessage → MessageOrBuilder
  27. def getRight(): Relation

    (Required) Right input relation for a Join.
    

    (Required) Right input relation for a Join.
    

    .spark.connect.Relation right = 2;

    returns

    The right.

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  28. def getRightOrBuilder(): RelationOrBuilder

    (Required) Right input relation for a Join.
    

    (Required) Right input relation for a Join.
    

    .spark.connect.Relation right = 2;

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  29. def getSerializedSize(): Int
    Definition Classes
    Join → GeneratedMessage → AbstractMessage → MessageLite
    Annotations
    @Override()
  30. def getUnknownFields(): UnknownFieldSet
    Definition Classes
    GeneratedMessage → MessageOrBuilder
  31. def getUsingColumns(index: Int): String

    Optional. using_columns provides a list of columns that should present on both sides of
    the join inputs that this Join will join on. For example A JOIN B USING col_name is
    equivalent to A JOIN B on A.col_name = B.col_name.
    
    This field does not co-exist with join_condition.
    

    Optional. using_columns provides a list of columns that should present on both sides of
    the join inputs that this Join will join on. For example A JOIN B USING col_name is
    equivalent to A JOIN B on A.col_name = B.col_name.
    
    This field does not co-exist with join_condition.
    

    repeated string using_columns = 5;

    index

    The index of the element to return.

    returns

    The usingColumns at the given index.

    Definition Classes
    JoinJoinOrBuilder
  32. def getUsingColumnsBytes(index: Int): ByteString

    Optional. using_columns provides a list of columns that should present on both sides of
    the join inputs that this Join will join on. For example A JOIN B USING col_name is
    equivalent to A JOIN B on A.col_name = B.col_name.
    
    This field does not co-exist with join_condition.
    

    Optional. using_columns provides a list of columns that should present on both sides of
    the join inputs that this Join will join on. For example A JOIN B USING col_name is
    equivalent to A JOIN B on A.col_name = B.col_name.
    
    This field does not co-exist with join_condition.
    

    repeated string using_columns = 5;

    index

    The index of the value to return.

    returns

    The bytes of the usingColumns at the given index.

    Definition Classes
    JoinJoinOrBuilder
  33. def getUsingColumnsCount(): Int

    Optional. using_columns provides a list of columns that should present on both sides of
    the join inputs that this Join will join on. For example A JOIN B USING col_name is
    equivalent to A JOIN B on A.col_name = B.col_name.
    
    This field does not co-exist with join_condition.
    

    Optional. using_columns provides a list of columns that should present on both sides of
    the join inputs that this Join will join on. For example A JOIN B USING col_name is
    equivalent to A JOIN B on A.col_name = B.col_name.
    
    This field does not co-exist with join_condition.
    

    repeated string using_columns = 5;

    returns

    The count of usingColumns.

    Definition Classes
    JoinJoinOrBuilder
  34. def getUsingColumnsList(): ProtocolStringList

    Optional. using_columns provides a list of columns that should present on both sides of
    the join inputs that this Join will join on. For example A JOIN B USING col_name is
    equivalent to A JOIN B on A.col_name = B.col_name.
    
    This field does not co-exist with join_condition.
    

    Optional. using_columns provides a list of columns that should present on both sides of
    the join inputs that this Join will join on. For example A JOIN B USING col_name is
    equivalent to A JOIN B on A.col_name = B.col_name.
    
    This field does not co-exist with join_condition.
    

    repeated string using_columns = 5;

    returns

    A list containing the usingColumns.

    Definition Classes
    JoinJoinOrBuilder
  35. def hasField(field: FieldDescriptor): Boolean
    Definition Classes
    GeneratedMessage → MessageOrBuilder
  36. def hasJoinCondition(): Boolean

    (Optional) The join condition. Could be unset when `using_columns` is utilized.
    
    This field does not co-exist with using_columns.
    

    (Optional) The join condition. Could be unset when `using_columns` is utilized.
    
    This field does not co-exist with using_columns.
    

    .spark.connect.Expression join_condition = 3;

    returns

    Whether the joinCondition field is set.

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  37. def hasJoinDataType(): Boolean

    (Optional) Only used by joinWith. Set the left and right join data types.
    

    (Optional) Only used by joinWith. Set the left and right join data types.
    

    optional .spark.connect.Join.JoinDataType join_data_type = 6;

    returns

    Whether the joinDataType field is set.

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  38. def hasLeft(): Boolean

    (Required) Left input relation for a Join.
    

    (Required) Left input relation for a Join.
    

    .spark.connect.Relation left = 1;

    returns

    Whether the left field is set.

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  39. def hasOneof(oneof: OneofDescriptor): Boolean
    Definition Classes
    GeneratedMessage → AbstractMessage → MessageOrBuilder
  40. def hasRight(): Boolean

    (Required) Right input relation for a Join.
    

    (Required) Right input relation for a Join.
    

    .spark.connect.Relation right = 2;

    returns

    Whether the right field is set.

    Definition Classes
    JoinJoinOrBuilder
    Annotations
    @Override()
  41. def hashCode(): Int
    Definition Classes
    Join → AbstractMessage → Message → AnyRef → Any
    Annotations
    @Override()
  42. def internalGetFieldAccessorTable(): FieldAccessorTable
    Attributes
    protected[proto]
    Definition Classes
    Join → GeneratedMessage
    Annotations
    @Override()
  43. def internalGetMapFieldReflection(fieldNumber: Int): MapFieldReflectionAccessor
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessage
  44. final def isInitialized(): Boolean
    Definition Classes
    Join → GeneratedMessage → AbstractMessage → MessageLiteOrBuilder
    Annotations
    @Override()
  45. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  46. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  47. def newBuilderForType(parent: BuilderParent): Builder
    Attributes
    protected[proto]
    Definition Classes
    Join → AbstractMessage
    Annotations
    @Override()
  48. def newBuilderForType(): Builder
    Definition Classes
    Join → Message → MessageLite
    Annotations
    @Override()
  49. def newInstance(unused: UnusedPrivateParameter): AnyRef
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessage
  50. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  51. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  52. def parseUnknownField(input: CodedInputStream, unknownFields: Builder, extensionRegistry: ExtensionRegistryLite, tag: Int): Boolean
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessage
    Annotations
    @throws(classOf[java.io.IOException])
  53. def parseUnknownFieldProto3(input: CodedInputStream, unknownFields: Builder, extensionRegistry: ExtensionRegistryLite, tag: Int): Boolean
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessage
    Annotations
    @throws(classOf[java.io.IOException])
  54. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  55. def toBuilder(): Builder
    Definition Classes
    Join → Message → MessageLite
    Annotations
    @Override()
  56. def toByteArray(): Array[Byte]
    Definition Classes
    AbstractMessageLite → MessageLite
  57. def toByteString(): ByteString
    Definition Classes
    AbstractMessageLite → MessageLite
  58. final def toString(): String
    Definition Classes
    AbstractMessage → Message → AnyRef → Any
  59. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  60. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  61. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  62. def writeDelimitedTo(output: OutputStream): Unit
    Definition Classes
    AbstractMessageLite → MessageLite
    Annotations
    @throws(classOf[java.io.IOException])
  63. def writeReplace(): AnyRef
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessage
    Annotations
    @throws(classOf[java.io.ObjectStreamException])
  64. def writeTo(output: CodedOutputStream): Unit
    Definition Classes
    Join → GeneratedMessage → AbstractMessage → MessageLite
    Annotations
    @Override()
  65. def writeTo(output: OutputStream): Unit
    Definition Classes
    AbstractMessageLite → MessageLite
    Annotations
    @throws(classOf[java.io.IOException])

Deprecated Value Members

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

    (Since version 9)

  2. def internalGetMapField(fieldNumber: Int): MapField[_ <: AnyRef, _ <: AnyRef]
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessage
    Annotations
    @Deprecated
    Deprecated
  3. def mergeFromAndMakeImmutableInternal(input: CodedInputStream, extensionRegistry: ExtensionRegistryLite): Unit
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessage
    Annotations
    @throws(classOf[com.google.protobuf.InvalidProtocolBufferException]) @Deprecated
    Deprecated

Inherited from JoinOrBuilder

Inherited from GeneratedMessage

Inherited from Serializable

Inherited from AbstractMessage

Inherited from Message

Inherited from MessageOrBuilder

Inherited from AbstractMessageLite[MessageType, BuilderType]

Inherited from MessageLite

Inherited from MessageLiteOrBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped