Object/Trait

org.cert.netsa.mothra.packer

Partitioner

Related Docs: trait Partitioner | package packer

Permalink

object Partitioner

An object to hold classes that extend the [Partitioner] trait.

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

Type Members

  1. final case class Float32(key: String) extends NumericPartitioner[Float] with Product with Serializable

    Permalink

    Partition a Record on its key field which contains a 32-bit floating point value.

  2. final case class Float64(key: String) extends NumericPartitioner[Double] with Product with Serializable

    Permalink

    Partition a Record on its key field which contains a 64-bit floating point value.

  3. final case class Int16(key: String) extends NumericPartitioner[Int] with Product with Serializable

    Permalink

    Partition a Record on its key field which contains a signed 16-bit value.

  4. final case class Int32(key: String) extends NumericPartitioner[Long] with Product with Serializable

    Permalink

    Partition a Record on its key field which contains a signed 32-bit value.

  5. final case class Int64(key: String) extends NumericPartitioner[Long] with Product with Serializable

    Permalink

    Partition a Record on its key field which contains a signed 64-bit value.

  6. final case class Int8(key: String) extends NumericPartitioner[Short] with Product with Serializable

    Permalink

    Partition a Record on its key field which contains a signed 8-bit value.

  7. sealed abstract class NumericPartitioner[T] extends Partitioner with StrictLogging

    Permalink

    NumericPartitioner supports partitioning based on the numeric field named key in a Record, where each partition represents records where that field either has a specific (single) value or falls with a range of values.

    NumericPartitioner supports partitioning based on the numeric field named key in a Record, where each partition represents records where that field either has a specific (single) value or falls with a range of values.

    NumericPartitioner is the parent class of other classes for specific numeric types (such as 16-bit integers and 32-bit floating point numbers). These subclasses must specify a numeric type and the allowable range of values for that type.

    T

    The type of the number

  8. final case class UInt16(key: String) extends NumericPartitioner[Int] with Product with Serializable

    Permalink

    Partition a Record on its key field which contains an unsigned 16-bit value.

  9. final case class UInt32(key: String) extends NumericPartitioner[Long] with Product with Serializable

    Permalink

    Partition a Record on its key field which contains an unsigned 32-bit value.

  10. final case class UInt64(key: String) extends NumericPartitioner[Long] with Product with Serializable

    Permalink

    Partition a Record on its key field which contains an unsigned 64-bit value.

  11. final case class UInt8(key: String) extends NumericPartitioner[Short] with Product with Serializable

    Permalink

    Partition a Record on its key field which contains an unsigned 8-bit value.

  12. case class UniqueValue[T](key: String) extends Partitioner with Product with Serializable

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

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

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

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  16. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped