com.krux.hyperion.expression

Parameter

sealed abstract class Parameter[T] extends ParameterBuilder[T, Parameter[T]]

The Parameter class which hides the ParameterBuilder class. Note that the parameter abstract class also belongs to the GenericParameter type class

Source
Parameter.scala
Linear Supertypes
ParameterBuilder[T, Parameter[T]], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Parameter
  2. ParameterBuilder
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Parameter()(implicit arg0: GenericParameter[T])

Abstract Value Members

  1. abstract def isEncrypted: Boolean

  2. abstract def parameterFields: ParameterFields

  3. abstract def parseString: (String) ⇒ T

    This needs to be implemented as a function (instead of a method) as we need to store it with the class at the time the implicit parseString for the type is availble (when the parameter instance is created).

    This needs to be implemented as a function (instead of a method) as we need to store it with the class at the time the implicit parseString for the type is availble (when the parameter instance is created). Since the calling of this function is mainly used when type is not available such as in

    List[Parameter[_]]

    .

    List[Parameter[_]] }}}

    Definition Classes
    ParameterBuilder
  4. abstract def updateParameterFields(fields: ParameterFields): Parameter[T]

    Definition Classes
    ParameterBuilder

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. def description: Option[String]

  9. val env: GenericParameter[T]

  10. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  12. def evaluate(): T

  13. def finalize(): Unit

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

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

    Definition Classes
    AnyRef → Any
  16. def id: String

  17. def isEmpty: Boolean

  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. def name: String

  20. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  23. def ref: Exp

  24. def serialize: Option[AdpParameter]

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

    Definition Classes
    AnyRef
  26. def toString(): String

    Definition Classes
    Parameter → AnyRef → Any
  27. def type: ParameterType.Value

  28. def value: Option[T]

  29. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def withDescription(desc: String): Parameter[T]

    Definition Classes
    ParameterBuilder
  33. def withValue(newValue: T): Parameter[T]

    Definition Classes
    ParameterBuilder
  34. def withValueFromString(stringValue: String): Parameter[T]

    Definition Classes
    ParameterBuilder

Inherited from ParameterBuilder[T, Parameter[T]]

Inherited from AnyRef

Inherited from Any

Ungrouped