Object

org.dsa.iot.ignition.spark.SparkBlockFactory

SelectValuesAdapter

Related Doc: package SparkBlockFactory

Permalink

object SelectValuesAdapter extends TransformerAdapter[DataFrame, SelectValues]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SelectValuesAdapter
  2. TransformerAdapter
  3. AbstractRxBlockAdapter
  4. RxBlockAdapter
  5. Logging
  6. AnyRef
  7. 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. val arrayField: String

    Permalink

    The name of the field that stores list-type attribute values.

    The name of the field that stores list-type attribute values.

    Definition Classes
    AbstractRxBlockAdapter
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. val category: String

    Permalink

    Block category (like Input, Transform, Aggregate, etc.)

    Block category (like Input, Transform, Aggregate, etc.)

    Definition Classes
    AbstractRxBlockAdapterRxBlockAdapter
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def connect[X](portList: PortList[X] forSome {type _$1}, json: JsonObject, name: String, blocks: DSABlockMap)(implicit cnv: (Any) ⇒ X): Unit

    Permalink

    Tries to connect the port list to a set of other blocks' outputs.

    Tries to connect the port list to a set of other blocks' outputs.

    Definition Classes
    AbstractRxBlockAdapter
  9. def connect[X](port: SelectValues.Port[X], json: JsonObject, name: String, blocks: DSABlockMap)(implicit cnv: (Any) ⇒ X): Unit

    Permalink

    Connects the specified port to the output of another block.

    Connects the specified port to the output of another block. If the connection cannot be made, prints an error message.

    Definition Classes
    AbstractRxBlockAdapter
  10. def createBlock(json: JsonObject): SelectValues

    Permalink

    Creates a new block from JSON.

    Creates a new block from JSON. It is separated from setupBlock to take advantage of the dynamic configuration of Ignition RX.

    Definition Classes
    SelectValuesAdapterRxBlockAdapter
  11. def debug(message: ⇒ String, args: Any*): Unit

    Permalink
    Definition Classes
    Logging
  12. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. def error(message: ⇒ String, err: Throwable): Unit

    Permalink
    Definition Classes
    Logging
  15. def error(message: ⇒ String, args: Any*): Unit

    Permalink
    Definition Classes
    Logging
  16. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  19. def info(message: ⇒ String, args: Any*): Unit

    Permalink
    Definition Classes
    Logging
  20. def init[X](port: SelectValues.Port[X], json: JsonObject, name: String, blocks: DSABlockMap)(implicit extractor: (JsonObject, String) ⇒ X, converter: (Any) ⇒ X): Unit

    Permalink

    Initializes the specified port by trying to either connect it to another block (if available), or to set its value explicitly.

    Initializes the specified port by trying to either connect it to another block (if available), or to set its value explicitly.

    Definition Classes
    AbstractRxBlockAdapter
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. val makeRow: Row

    Permalink

    Creates the block description row by concatenating the name, parameters, and category.

    Creates the block description row by concatenating the name, parameters, and category.

    Definition Classes
    AbstractRxBlockAdapterRxBlockAdapter
  23. val name: String

    Permalink

    Block name.

    Block name.

    Definition Classes
    AbstractRxBlockAdapterRxBlockAdapter
  24. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  27. val parameters: Seq[ParamInfo]

    Permalink

    The specified block parameters plus output.

    The specified block parameters plus output.

    Definition Classes
    AbstractRxBlockAdapterRxBlockAdapter
  28. def set[T, X](portList: PortList[X], json: JsonObject, name: String)(implicit extractor: (JsonObject, String) ⇒ Seq[X]): Unit

    Permalink

    Tries to set the ports of the specified portList to values extracted from JSON.

    Tries to set the ports of the specified portList to values extracted from JSON.

    Definition Classes
    AbstractRxBlockAdapter
  29. def set[X](port: SelectValues.Port[X], json: JsonObject, name: String)(implicit extractor: (JsonObject, String) ⇒ X): Unit

    Permalink

    Sets the specified port to an explicit value.

    Sets the specified port to an explicit value. If the value cannot be set, prints an error message.

    Definition Classes
    AbstractRxBlockAdapter
  30. def setupAttributes(block: SelectValues, json: JsonObject, blocks: DSABlockMap): Unit

    Permalink
  31. def setupBlock(block: SelectValues, json: JsonObject, blocks: DSABlockMap): Unit

    Permalink

    Configures the existing block from JSON.It is separated from createBlock to take advantage of the dynamic configuration of Ignition RX.

    Configures the existing block from JSON.It is separated from createBlock to take advantage of the dynamic configuration of Ignition RX.

    Definition Classes
    TransformerAdapterRxBlockAdapter
  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  33. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  34. def trace(message: ⇒ String, args: Any*): Unit

    Permalink
    Definition Classes
    Logging
  35. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. def warn(message: ⇒ String, err: Throwable): Unit

    Permalink
    Definition Classes
    Logging
  39. def warn(message: ⇒ String, args: Any*): Unit

    Permalink
    Definition Classes
    Logging

Inherited from TransformerAdapter[DataFrame, SelectValues]

Inherited from RxBlockAdapter[SelectValues]

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped