Enum-Klasse LocationRepresentation

java.lang.Object
java.lang.Enum<LocationRepresentation>
org.opentcs.data.model.visualization.LocationRepresentation
Alle implementierten Schnittstellen:
Serializable, Comparable<LocationRepresentation>, Constable

public enum LocationRepresentation extends Enum<LocationRepresentation>
Common location representations.
Siehe auch:
  • Enum-Konstanten - Details

    • NONE

      public static final LocationRepresentation NONE
      A (empty) location without any representation.
    • DEFAULT

      public static final LocationRepresentation DEFAULT
      The default representation inherited from the assigned location type.
    • LOAD_TRANSFER_GENERIC

      public static final LocationRepresentation LOAD_TRANSFER_GENERIC
      A location for vehicle load transfer, generic variant.
    • LOAD_TRANSFER_ALT_1

      public static final LocationRepresentation LOAD_TRANSFER_ALT_1
      A location for vehicle load transfers, alternative variant 1.
    • LOAD_TRANSFER_ALT_2

      public static final LocationRepresentation LOAD_TRANSFER_ALT_2
      A location for vehicle load transfers, alternative variant 2.
    • LOAD_TRANSFER_ALT_3

      public static final LocationRepresentation LOAD_TRANSFER_ALT_3
      A location for vehicle load transfers, alternative variant 3.
    • LOAD_TRANSFER_ALT_4

      public static final LocationRepresentation LOAD_TRANSFER_ALT_4
      A location for vehicle load transfers, alternative variant 4.
    • LOAD_TRANSFER_ALT_5

      public static final LocationRepresentation LOAD_TRANSFER_ALT_5
      A location for vehicle load transfers, alternative variant 5.
    • WORKING_GENERIC

      public static final LocationRepresentation WORKING_GENERIC
      A location for some generic processing, generic variant.
    • WORKING_ALT_1

      public static final LocationRepresentation WORKING_ALT_1
      A location for some generic processing, alternative variant 1.
    • WORKING_ALT_2

      public static final LocationRepresentation WORKING_ALT_2
      A location for some generic processing, alternative variant 2.
    • RECHARGE_GENERIC

      public static final LocationRepresentation RECHARGE_GENERIC
      A location for recharging a vehicle, generic variant.
    • RECHARGE_ALT_1

      public static final LocationRepresentation RECHARGE_ALT_1
      A location for recharging a vehicle, alternative variant 1.
    • RECHARGE_ALT_2

      public static final LocationRepresentation RECHARGE_ALT_2
      A location for recharging a vehicle, alternative variant 2.
  • Methodendetails

    • values

      public static LocationRepresentation[] 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 LocationRepresentation 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