Object

com.alpine.model.pack.util

TransformerUtil

Related Doc: package util

Permalink

object TransformerUtil

Utility functions that Transformers may need.

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

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. def anyToDouble(a: Any): Double

    Permalink

    Converts input of type Any to Double.

    Converts input of type Any to Double. Does this by casting to java.lang.Number, and then taking the double value.

    Will return Double.NaN in the case of bad input.

    a

    input to be converted to Double.

    returns

    Double representation of the number, or Double.NaN if impossible.

  5. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. def fillRowToDoubleArray(row: Seq[Any], tempArray: Array[Double]): Array[Double]

    Permalink

    WARNING: Mutates input.

    WARNING: Mutates input.

    Puts the contents of row into the tempArray argument. The two arguments must be the same length. That is, we require

    row.length == tempArray.length

    Uses anyToDouble for double conversion.

    row

    contains the values to be read.

    tempArray

    the array to be written to.

    returns

    reference to tempArray, filled with the contents of the row.

  10. def finalize(): Unit

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

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

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

    Permalink
    Definition Classes
    Any
  14. def javaDoubleSeqToArray(doubles: Seq[Double]): Array[Double]

    Permalink
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def normalizeProbabilities(array: Seq[Double]): Seq[Double]

    Permalink
  17. final def notify(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
  20. def toJavaDoubleSeq(doubles: Seq[Double]): Seq[Double]

    Permalink
  21. def toString(): String

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped