Enum-Klasse PeripheralInformation.State

java.lang.Object
java.lang.Enum<PeripheralInformation.State>
org.opentcs.data.model.PeripheralInformation.State
Alle implementierten Schnittstellen:
Serializable, Comparable<PeripheralInformation.State>, Constable
Umschließende Klasse:
PeripheralInformation

public static enum PeripheralInformation.State extends Enum<PeripheralInformation.State>
The elements of this enumeration describe the various possible states of a peripheral device.
  • Enum-Konstanten - Details

    • NO_PERIPHERAL

      public static final PeripheralInformation.State NO_PERIPHERAL
      Indicates that the location the PeripheralInformation belongs to doesn't represent a peripheral device.
    • UNKNOWN

      public static final PeripheralInformation.State UNKNOWN
      The peripheral device's current state is unknown, e.g. because communication with it is currently not possible for some reason.
    • UNAVAILABLE

      public static final PeripheralInformation.State UNAVAILABLE
      The peripheral device's state is known and it's not in an error state, but it is not available for receiving jobs.
    • ERROR

      public static final PeripheralInformation.State ERROR
      There is a problem with the peripheral device.
    • IDLE

      public static final PeripheralInformation.State IDLE
      The peripheral device is currently idle/available for processing jobs.
    • EXECUTING

      public static final PeripheralInformation.State EXECUTING
      The peripheral device is processing a job.
  • Methodendetails

    • values

      public static PeripheralInformation.State[] values()
      Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration
    • valueOf

      public static PeripheralInformation.State valueOf(String name)
      Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enum-Konstante in dieser Klasse deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)
      Parameter:
      name - Name der zurückzugebenden Enumerationskonstante.
      Gibt zurück:
      Enumerationskonstante mit dem angegebenen Namen
      Löst aus:
      IllegalArgumentException - wenn diese Enum-Klasse keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird