com.alpine.plugin.core

OperatorParameters

trait OperatorParameters extends AnyRef

:: AlpineSdkApi :: Interface for accessing the parameter values for an operator. This is the argument to the 'onExecution' callback function. The developers can extract operator parameter values through this interface.

Annotations
@AlpineSdkApi()
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OperatorParameters
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def contains(parameterId: String): Boolean

    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.

  2. abstract def getDoubleValue(parameterId: String): Double

    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.

  3. abstract def getIntValue(parameterId: String): Int

    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.

  4. abstract def getParameterIds: Iterator[String]

    Get an iterator of parameter Ids.

    Get an iterator of parameter Ids.

    returns

    An iterator of parameter Ids.

  5. abstract def getStringArrayValue(parameterId: String): Array[String]

    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.

  6. abstract def getStringValue(parameterId: String): String

    Get the value of a parameter as a string.

    Get the value of a parameter as a string.

    parameterId

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

    returns

    The parameter value as a string.

  7. abstract def getTabularDatasetSelectedColumn(parameterId: String): (String, String)

    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.

  8. abstract def getTabularDatasetSelectedColumns(parameterId: String): (String, Array[String])

    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.

  9. abstract def getValue(parameterId: String): AnyRef

    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.

  10. abstract def operatorInfo: OperatorInfo

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

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

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

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

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

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  18. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped