Package

ml.combust.mleap.runtime

types

Permalink

package types

Visibility
  1. Public
  2. All

Type Members

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

    Permalink
  2. sealed trait BasicType extends DataType with Serializable

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

    Permalink
  4. trait BundleTypeConverters extends AnyRef

    Permalink

    Created by hollinwilkins on 1/15/17.

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

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

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

    Permalink
  8. sealed trait DataType extends Serializable

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

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

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

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

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

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

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

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

    Permalink

    Created by hwilkins on 10/23/15.

  17. case class StructType extends Serializable with Product

    Permalink

    Class for storing structured type information.

    Class for storing structured type information.

    This class is primarily used to define the schema of a ml.combust.mleap.runtime.LeapFrame. In the future, it could be used to define the structure of fields stored in the LeapFrame itself.

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

    Permalink

Value Members

  1. object BundleTypeConverters extends BundleTypeConverters

    Permalink
  2. object CustomType extends Serializable

    Permalink
  3. object DataType extends Serializable

    Permalink
  4. object StructType extends Serializable

    Permalink

    Structured container (schema) for fields.

    Structured container (schema) for fields. Operations include select, withField, and dropField.

Ungrouped