InOut

org.eso.ias.types.InOut
See theInOut companion class
object InOut

InOut companion object

Attributes

Companion
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
InOut.type

Members list

Type members

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def asInput[T](id: Identifier, iasType: IASTypes): InOut[T]

Build a InOut that is the input of a ASCE. This InOut has the validity inherited from the validities of the inputs of the ASCE initially set to INVALID

Build a InOut that is the input of a ASCE. This InOut has the validity inherited from the validities of the inputs of the ASCE initially set to INVALID

Such a IASIO is useful when it is expected but has not yet been sent by the BSDB or a ASCE: we know that it exists but we do not know yet its initial value.

Value parameters

iasType

the type of the value of the IASIO

id

the identifier

Attributes

Returns

a InOut initially empty

def asOutput[T](id: Identifier, iasType: IASTypes): InOut[T]

Build a InOut that is an output of a ASCE. This InOut has the validity inherited from the IASValue initially set to INVALID

Build a InOut that is an output of a ASCE. This InOut has the validity inherited from the IASValue initially set to INVALID

Such a IASIO is useful when it is expected but has not yet been sent by the BSDB or a ASCE: we know that it exists but we do not know yet its initial value.

Value parameters

iasType

the type of the value of the IASIO

id

the identifier

Attributes

Returns

a InOut initially empty

def checkType[T](value: T, iasType: IASTypes): Boolean

Check if the passed value is of the proper type

Check if the passed value is of the proper type

Value parameters

iasType:

The IAS type

value:

The value to check they type against the iasType

Attributes