com.holdenkarau.spark.testing

DataframeGenerator

object DataframeGenerator

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DataframeGenerator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def arbitraryDataFrame(sqlContext: SQLContext, schema: StructType, minPartitions: Int = 1): Arbitrary[DataFrame]

    Creates a DataFrame Generator for the given Schema.

    Creates a DataFrame Generator for the given Schema.

    sqlContext

    SQL Context.

    schema

    The required Schema.

    minPartitions

    minimum number of partitions, defaults to 1.

    returns

    Arbitrary DataFrames generator of the required schema.

  7. def arbitraryDataFrameWithCustomFields(sqlContext: SQLContext, schema: StructType, minPartitions: Int = 1)(userGenerators: ColumnGenerator*): Arbitrary[DataFrame]

    Creates a DataFrame Generator for the given Schema, and the given custom generators.

    Creates a DataFrame Generator for the given Schema, and the given custom generators. Custom generators should be specified as a list of: (column index, generator function) tuples.

    Note: The given custom generators should match the required schema, for ex. you can't use Int generator for StringType.

    Note 2: The ColumnGenerator* accepted as userGenerators has changed. ColumnGenerator is now the base class of the accepted generators, users upgrading to 0.6 need to change their calls to use Column. Further explanation can be found in the release notes, and in the class descriptions at the bottom of this file.

    sqlContext

    SQL Context.

    schema

    The required Schema.

    minPartitions

    minimum number of partitions, defaults to 1.

    userGenerators

    custom user generators in the form of: (column index, generator function). where column index starts from 0 to length - 1

    returns

    Arbitrary DataFrames generator of the required schema.

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def getRowGenerator(schema: StructType, customGenerators: Seq[ColumnGenerator]): Gen[Row]

    Creates row generator for the required schema and with user's custom generators.

    Creates row generator for the required schema and with user's custom generators.

    Note: Custom generators should match the required schema, for example you can't use Int generator for StringType.

    schema

    the required Row's schema.

    customGenerators

    user custom generator, this is useful if the you want to control specific columns generation.

    returns

    Gen[Row]

  15. def getRowGenerator(schema: StructType): Gen[Row]

    Creates row generator for the required schema.

    Creates row generator for the required schema.

    schema

    the required Row's schema.

    returns

    Gen[Row]

  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped