ml.combust.mleap.runtime

types

package types

Visibility
  1. Public
  2. All

Type Members

  1. case class AnyType(isNullable: Boolean = false) extends DataType with Product with Serializable

  2. sealed trait BasicType extends DataType with Serializable

  3. case class BooleanType(isNullable: Boolean = false) extends BasicType with Product with Serializable

  4. trait BundleTypeConverters extends AnyRef

    Created by hollinwilkins on 1/15/17.

  5. case class ByteStringType(isNullable: Boolean = false) extends BasicType with Product with Serializable

  6. case class ByteType(isNullable: Boolean = false) extends BasicType with Product with Serializable

  7. case class CustomType extends DataType with bundle.custom.CustomType[Any] with Product with Serializable

  8. sealed trait DataType extends Serializable

  9. case class DoubleType(isNullable: Boolean = false) extends BasicType with Product with Serializable

  10. case class FloatType(isNullable: Boolean = false) extends BasicType with Product with Serializable

  11. case class IntegerType(isNullable: Boolean = false) extends BasicType with Product with Serializable

  12. case class ListType(base: DataType, isNullable: Boolean = false) extends DataType with Product with Serializable

  13. case class LongType(isNullable: Boolean = false) extends BasicType with Product with Serializable

  14. case class ShortType(isNullable: Boolean = false) extends BasicType with Product with Serializable

  15. case class StringType(isNullable: Boolean = false) extends BasicType with Product with Serializable

  16. case class StructField(name: String, dataType: DataType) extends Serializable with Product

    Created by hwilkins on 10/23/15.

  17. case class StructType extends Serializable with Product

    Class for storing structured type information.

  18. case class TensorType(base: BasicType, isNullable: Boolean = false) extends DataType with Product with Serializable

  19. case class TupleType(dts: DataType*) extends DataType with Product with Serializable

Value Members

  1. object BundleTypeConverters extends BundleTypeConverters

  2. object CustomType extends Serializable

  3. object DataType extends Serializable

  4. object StructType extends Serializable

    Structured container (schema) for fields.

Ungrouped