com.alpine

features

package features

Visibility
  1. Public
  2. All

Type Members

  1. case class BooleanType() extends DataType[Boolean] with Product with Serializable

  2. trait DataParser[A] extends AnyRef

    Interface used to define a parser, which must provide methods for taking a data type to and from String representation.

  3. trait DataType[A] extends AnyRef

    These are the predefined types of features that can be used with row models.

  4. case class DateTimeParser(format: Option[String] = scala.None) extends ParserWithTryCatch[DateTime] with Product with Serializable

  5. case class DateTimeType() extends DataType[DateTime] with Product with Serializable

  6. case class DoubleType() extends DataType[Double] with Product with Serializable

  7. case class FeatureDesc[T](name: String, dataType: DataType[_ <: T]) extends Product with Serializable

  8. case class IntType() extends DataType[Int] with Product with Serializable

  9. case class LongType() extends DataType[Long] with Product with Serializable

  10. trait ParserWithTryCatch[A] extends DataParser[A]

  11. case class SparseType() extends DataType[Map[String, Double]] with Product with Serializable

  12. case class StringType() extends DataType[String] with Product with Serializable

Value Members

  1. object BooleanParser extends ParserWithTryCatch[Boolean]

  2. object DoubleParser extends ParserWithTryCatch[Double]

  3. object IntParser extends ParserWithTryCatch[Int]

  4. object LongParser extends ParserWithTryCatch[Long]

  5. object MapStringDoubleParser extends ParserWithTryCatch[Map[String, Double]]

  6. object StringParser extends DataParser[String]

Ungrouped