Class

com.alpine.plugin.test.mock

OperatorParametersMock

Related Doc: package mock

Permalink

class OperatorParametersMock extends OperatorParameters with Serializable

Linear Supertypes
OperatorParameters, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OperatorParametersMock
  2. OperatorParameters
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OperatorParametersMock(operatorName: String, operatorUUID: String)

    Permalink

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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def contains(parameterId: String): Boolean

    Permalink

    Find out whether or not the given parameter Id is contained in the object.

    Find out whether or not the given parameter Id is contained in the object.

    parameterId

    The Id of the parameter that we want to search for.

    returns

    true if the parameter is contained. false otherwise.

    Definition Classes
    OperatorParametersMockOperatorParameters
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(operatorParameters: Any): Boolean

    Permalink
    Definition Classes
    OperatorParametersMock → AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def getAdvancedSparkParameters(): Map[String, String]

    Permalink
  11. def getChorusFile(parameterId: String): Option[ChorusFile]

    Permalink

    Get the chorus file stored added by a "ChorusFileSelector" parameter.

    Get the chorus file stored added by a "ChorusFileSelector" parameter. The return type is a case class with a id and a name field.

    If no file was selected, this will return None.

    Definition Classes
    OperatorParametersMockOperatorParameters
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def getDialogRowsAsArray(parameterId: String): Array[IRowDialogRow]

    Permalink

    Get the array of IRowDialogRows defined in the pop-up window added by a "RowDialogSetup" parameter.

    Get the array of IRowDialogRows defined in the pop-up window added by a "RowDialogSetup" parameter.

    parameterId

    The parameter Id of the pop up RowDialogSetup defined.

    returns

    An array of rows [IRowDialogRow] defined in the pop up RowDialogSetup dialog.

    Definition Classes
    OperatorParametersMockOperatorParameters
  14. def getDoubleValue(parameterId: String): Double

    Permalink

    Get the value of a parameter as a double.

    Get the value of a parameter as a double.

    parameterId

    The parameter Id that was used with an input field in the OperatorDialog object.

    returns

    The parameter value as a double.

    Definition Classes
    OperatorParametersMockOperatorParameters
  15. def getIntValue(parameterId: String): Int

    Permalink

    Get the value of a parameter as an integer.

    Get the value of a parameter as an integer.

    parameterId

    The parameter Id that was used with an input field in the OperatorDialog object.

    returns

    The parameter value as an integer.

    Definition Classes
    OperatorParametersMockOperatorParameters
  16. def getParameterIds(): Iterator[String]

    Permalink

    Get an iterator of parameter Ids.

    Get an iterator of parameter Ids.

    returns

    An iterator of parameter Ids.

    Definition Classes
    OperatorParametersMockOperatorParameters
  17. def getStringArrayValue(parameterId: String): Array[String]

    Permalink

    Get the string array value of a parameter (a checkboxes parameter).

    Get the string array value of a parameter (a checkboxes parameter).

    parameterId

    The parameter Id of the multi item selector (checkboxes).

    returns

    An array of selected values.

    Definition Classes
    OperatorParametersMockOperatorParameters
  18. def getStringValue(parameterId: String): String

    Permalink

    Get the value of a parameter as a string.

    Get the value of a parameter as a string. If the parameter is a TabularColumnDropDownBox then this returns the same value as "getTabularDatasetSelectedColumn". If it is a chorus file object, then it will return the WorkfileId (e.g. the same as getChorusFile.workfileId) It will throw an exception if the param is one of the following types: TabularColumnCheckboxes, Checkboxes.

    parameterId

    The parameter Id that was used with an input field in the OperatorDialog object.

    returns

    The parameter value as a string.

    Definition Classes
    OperatorParametersMockOperatorParameters
  19. def getTabularDatasetSelectedColumn(parameterId: String): (String, String)

    Permalink

    Get the selected column from a tabular dataset output of an input operator.

    Get the selected column from a tabular dataset output of an input operator. NOTE: If the parameter was not required and the user didn't select a column this will return an empty string.

    parameterId

    The parameter Id of the column dropdown dialog element.

    returns

    A tuple of a source operator name and a selected column name.

    Definition Classes
    OperatorParametersMockOperatorParameters
  20. def getTabularDatasetSelectedColumnName(parameterId: String): String

    Permalink

    Get the selected column from a tabular dataset output of an input operator.

    Get the selected column from a tabular dataset output of an input operator. This is a Java-friendly version. NOTE: If the parameter was not required and the user didn't select a column this will return an empty string.

    parameterId

    The parameter Id of the column dropdown dialog element.

    returns

    The selected column name.

    Definition Classes
    OperatorParametersMockOperatorParameters
  21. def getTabularDatasetSelectedColumnNames(parameterId: String): Array[String]

    Permalink

    Get the selected columns from a tabular dataset output of an input operator.

    Get the selected columns from a tabular dataset output of an input operator. This is a Java-friendly version. NOTE: If the parameter was not required and the user did not input a value then this method will return and empty array.

    parameterId

    The parameter Id of the column checkboxes dialog element.

    returns

    An array of selected column names.

    Definition Classes
    OperatorParametersMockOperatorParameters
  22. def getTabularDatasetSelectedColumns(parameterId: String): (String, Array[String])

    Permalink

    Get the selected columns from a tabular dataset output of an input operator.

    Get the selected columns from a tabular dataset output of an input operator. NOTE: If the parameter was not required and the user did not input a value then this method will return and empty array.

    parameterId

    The parameter Id of the column checkboxes dialog element.

    returns

    A tuple of a source operator name and an array of selected column names.

    Definition Classes
    OperatorParametersMockOperatorParameters
  23. def getValue(parameterId: String): AnyRef

    Permalink

    Get the value of a parameter as a reference object.

    Get the value of a parameter as a reference object.

    parameterId

    The parameter Id that was used with an input field in the OperatorDialog object.

    returns

    The parameter value as a reference object.

    Definition Classes
    OperatorParametersMockOperatorParameters
  24. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  29. def operatorInfo(): OperatorInfo

    Permalink
  30. def setChorusFile(parameterId: String, file: ChorusFile): Unit

    Permalink
  31. def setValue(parameterId: String, value: Any): Unit

    Permalink
  32. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit

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

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

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

Inherited from OperatorParameters

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped