Class

ai.deepsense.deeplang.params

DynamicParam

Related Doc: package params

Permalink

class DynamicParam extends Param[JsValue]

This parameter type is used to forward parameters from the DOperation to its input DOperables. Value of this parameter is a Json that can be inserted as values of parameters of DOperable that is used in DOperation. For example, DOperation Transform dynamically renders parameters of its input Transformer.

Linear Supertypes
Param[JsValue], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DynamicParam
  2. Param
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DynamicParam(name: String, description: Option[String], inputPort: Int)

    Permalink

    inputPort

    number of port on which the DOperable is received

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ->(value: JsValue): ParamPair[JsValue]

    Permalink
    Definition Classes
    Param
  4. final def ==(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    Any
  6. def canEqual(other: Any): Boolean

    Permalink
    Definition Classes
    Param
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def constraints: String

    Permalink
    Definition Classes
    Param
  9. val description: Option[String]

    Permalink
    Definition Classes
    DynamicParamParam
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(other: Any): Boolean

    Permalink
    Definition Classes
    Param → AnyRef → Any
  12. def extraJsFields: Map[String, JsValue]

    Permalink

    Subclasses should overwrite this method if they want to add custom fields to json description.

    Subclasses should overwrite this method if they want to add custom fields to json description.

    Attributes
    protected
    Definition Classes
    DynamicParamParam
  13. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    Param → AnyRef → Any
  16. val inputPort: Int

    Permalink

    number of port on which the DOperable is received

  17. val isGriddable: Boolean

    Permalink
    Definition Classes
    Param
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. val name: String

    Permalink
    Definition Classes
    DynamicParamParam
  20. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  23. val parameterType: ParameterType

    Permalink
    Definition Classes
    DynamicParamParam
  24. def replicate(name: String): DynamicParam

    Permalink

    Used to extract public parameters in custom transformer.

    Used to extract public parameters in custom transformer.

    name

    name of replicated parameter

    returns

    replicated parameter

    Definition Classes
    DynamicParamParam
  25. def serializeDefault(default: JsValue): JsValue

    Permalink

    Describes default serialization of default values.

    Describes default serialization of default values.

    default

    Default value of parameter

    Attributes
    protected
    Definition Classes
    Param
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. final def toJson(maybeDefault: Option[Any]): JsObject

    Permalink

    Describes json representation of this parameter.

    Describes json representation of this parameter.

    maybeDefault

    Optional default value of parameter. Should be of type Option[T], but we need to receive Any because Params have to use this method without knowing T.

    Definition Classes
    Param
  28. def toString(): String

    Permalink
    Definition Classes
    Param → AnyRef → Any
  29. def validate(value: JsValue): Vector[DeepLangException]

    Permalink
    Definition Classes
    Param
  30. def valueFromJson(jsValue: JsValue, graphReader: GraphReader): JsValue

    Permalink
    Definition Classes
    DynamicParamParam
  31. def valueToJson(value: JsValue): JsValue

    Permalink
    Definition Classes
    DynamicParamParam
  32. final def wait(): Unit

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

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

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

Inherited from Param[JsValue]

Inherited from AnyRef

Inherited from Any

Ungrouped