object SaveMode

SaveMode configures the behavior when data is written from a DataFrame to a data source using a DataFrameWriter instance.

Since

0.1.0

Linear Supertypes
AnyRef , Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SaveMode
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. def apply ( mode: String ) : SaveMode
  5. final def asInstanceOf [ T0 ] : T0
    Definition Classes
    Any
  6. def clone () : AnyRef
    Attributes
    protected[ lang ]
    Definition Classes
    AnyRef
    Annotations
    @throws ( ... ) @native () @HotSpotIntrinsicCandidate ()
  7. final def eq ( arg0: AnyRef ) : Boolean
    Definition Classes
    AnyRef
  8. def equals ( arg0: Any ) : Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass () : Class [_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native () @HotSpotIntrinsicCandidate ()
  10. def hashCode () : Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native () @HotSpotIntrinsicCandidate ()
  11. final def isInstanceOf [ T0 ] : Boolean
    Definition Classes
    Any
  12. final def ne ( arg0: AnyRef ) : Boolean
    Definition Classes
    AnyRef
  13. final def notify () : Unit
    Definition Classes
    AnyRef
    Annotations
    @native () @HotSpotIntrinsicCandidate ()
  14. final def notifyAll () : Unit
    Definition Classes
    AnyRef
    Annotations
    @native () @HotSpotIntrinsicCandidate ()
  15. final def synchronized [ T0 ] ( arg0: ⇒ T0 ) : T0
    Definition Classes
    AnyRef
  16. def toString () : String
    Definition Classes
    AnyRef → Any
  17. final def wait ( arg0: Long , arg1: Int ) : Unit
    Definition Classes
    AnyRef
    Annotations
    @throws ( ... )
  18. final def wait ( arg0: Long ) : Unit
    Definition Classes
    AnyRef
    Annotations
    @throws ( ... ) @native ()
  19. final def wait () : Unit
    Definition Classes
    AnyRef
    Annotations
    @throws ( ... )
  20. object Append extends SaveMode

    In the Append mode, new data is appended to the datasource.

    In the Append mode, new data is appended to the datasource.

    Since

    0.1.0

  21. object ErrorIfExists extends SaveMode

    In the ErrorIfExists mode, an error is thrown if the data being written already exists in the data source.

    In the ErrorIfExists mode, an error is thrown if the data being written already exists in the data source.

    Since

    0.1.0

  22. object Ignore extends SaveMode

    In the Ignore mode, if the data already exists, the write operation is not expected to update existing data.

    In the Ignore mode, if the data already exists, the write operation is not expected to update existing data.

    Since

    0.1.0

  23. object Overwrite extends SaveMode

    In the Overwrite mode, existing data is overwritten with the new data.

    In the Overwrite mode, existing data is overwritten with the new data. If the datasource is a table, then the existing data in the table is replaced.

    Since

    0.1.0

Deprecated Value Members

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

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped