object OperationalState extends Enum[OperationalState]
Enumeration indicating if the detector system is available and operational. READY, BUSY, ERROR. READY indicates system can execute exposures. BUSY indicates system is BUSY most likely acquiring data. ERROR indicates the detector system is in an error state. This could happen as a result of a command or a spontaneous failure. Corrective action is required.
- Alphabetic
- By Inheritance
- OperationalState
- Enum
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def extraNamesToValuesMap: Map[String, OperationalState]
- Definition Classes
- Enum
- macro def findValues: IndexedSeq[OperationalState]
- Attributes
- protected
- Definition Classes
- Enum
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def indexOf(member: OperationalState): Int
- Definition Classes
- Enum
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final lazy val lowerCaseNamesToValuesMap: Map[String, OperationalState]
- Definition Classes
- Enum
- lazy val namesToValuesMap: Map[String, OperationalState]
- Definition Classes
- Enum
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toChoices: Seq[Choice]
- def toString(): String
- Definition Classes
- AnyRef → Any
- final lazy val upperCaseNameValuesToMap: Map[String, OperationalState]
- Definition Classes
- Enum
- def values: IndexedSeq[OperationalState]
- Definition Classes
- OperationalState → Enum
- final lazy val valuesToIndex: Map[OperationalState, Int]
- Definition Classes
- Enum
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withName(name: String): OperationalState
- Definition Classes
- Enum
- Annotations
- @SuppressWarnings()
- def withNameEither(name: String): Either[NoSuchMember[OperationalState], OperationalState]
- Definition Classes
- Enum
- def withNameInsensitive(name: String): OperationalState
- Definition Classes
- Enum
- Annotations
- @SuppressWarnings()
- def withNameInsensitiveEither(name: String): Either[NoSuchMember[OperationalState], OperationalState]
- Definition Classes
- Enum
- def withNameInsensitiveOption(name: String): Option[OperationalState]
- Definition Classes
- Enum
- def withNameLowercaseOnly(name: String): OperationalState
- Definition Classes
- Enum
- Annotations
- @SuppressWarnings()
- def withNameLowercaseOnlyEither(name: String): Either[NoSuchMember[OperationalState], OperationalState]
- Definition Classes
- Enum
- def withNameLowercaseOnlyOption(name: String): Option[OperationalState]
- Definition Classes
- Enum
- def withNameOption(name: String): Option[OperationalState]
- Definition Classes
- Enum
- def withNameUppercaseOnly(name: String): OperationalState
- Definition Classes
- Enum
- Annotations
- @SuppressWarnings()
- def withNameUppercaseOnlyEither(name: String): Either[NoSuchMember[OperationalState], OperationalState]
- Definition Classes
- Enum
- def withNameUppercaseOnlyOption(name: String): Option[OperationalState]
- Definition Classes
- Enum
- case object BUSY extends OperationalState with Product with Serializable
- case object ERROR extends OperationalState with Product with Serializable
- case object NOT_READY extends OperationalState with Product with Serializable
- case object READY extends OperationalState with Product with Serializable