Enum LinkRenderer.TargetLocation

java.lang.Object
java.lang.Enum<LinkRenderer.TargetLocation>
com.flexganttfx.view.graphics.renderer.LinkRenderer.TargetLocation
Alle implementierten Schnittstellen:
Serializable, Comparable<LinkRenderer.TargetLocation>
Umschließende Klasse:
LinkRenderer<T extends ActivityLink<?>>

public static enum LinkRenderer.TargetLocation extends Enum<LinkRenderer.TargetLocation>
An enumerator of possible locations that the target object can have relative to the source object. If the target object is for example in a row above the source object and the x-coordinate of its start time is before the x-coordinate of the end time of the source object then it is located ABOVE_LEFT.
Seit:
1.0
  • Enum-Konstanten - Übersicht

    Enum-Konstanten
    Enum-Konstante
    Beschreibung
    A enumerator value indicating that the target object is located in a row above the source object and that the x-coordinate of its start time is equal to the x-coordinate of the end time of the source object.
    A enumerator value indicating that the target object is located in a row above the source object and that the x-coordinate of its start time is smaller than the x-coordinate of the end time of the source object.
    A enumerator value indicating that the target object is located in a row above the source object and that the x-coordinate of its start time is larger than the x-coordinate of the end time of the source object.
    A enumerator value indicating that the target object is located in a row below the source object and that the x-coordinate of its start time is equal to the x-coordinate of the end time of the source object.
    A enumerator value indicating that the target object is located in a row below the source object and that the x-coordinate of its start time is smaller than the x-coordinate of the end time of the source object.
    A enumerator value indicating that the target object is located in a row below the source object and that the x-coordinate of its start time is larger than the x-coordinate of the end time of the source object.
    A enumerator value indicating that the target object is located in the same row as the source object and that the x-coordinate of its start time is smaller than the x-coordinate of the end time of the source object.
    A enumerator value indicating that the target object is located in the same row as the source object and that the x-coordinate of its start time is larger than the x-coordinate of the end time of the source object.
    A enumerator value indicating that the target object is located in the same row as the source object and that the x-coordinate of its start time is equal to the x-coordinate of the end time of the source object.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück.
    Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.

    Von Klasse geerbte Methoden java.lang.Enum

    clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Von Klasse geerbte Methoden java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum-Konstanten - Details

    • BELOW_RIGHT

      public static final LinkRenderer.TargetLocation BELOW_RIGHT
      A enumerator value indicating that the target object is located in a row below the source object and that the x-coordinate of its start time is larger than the x-coordinate of the end time of the source object.
      Seit:
      1.0
    • BELOW

      public static final LinkRenderer.TargetLocation BELOW
      A enumerator value indicating that the target object is located in a row below the source object and that the x-coordinate of its start time is equal to the x-coordinate of the end time of the source object.
      Seit:
      1.0
    • BELOW_LEFT

      public static final LinkRenderer.TargetLocation BELOW_LEFT
      A enumerator value indicating that the target object is located in a row below the source object and that the x-coordinate of its start time is smaller than the x-coordinate of the end time of the source object.
      Seit:
      1.0
    • ABOVE_RIGHT

      public static final LinkRenderer.TargetLocation ABOVE_RIGHT
      A enumerator value indicating that the target object is located in a row above the source object and that the x-coordinate of its start time is larger than the x-coordinate of the end time of the source object.
      Seit:
      1.0
    • ABOVE

      public static final LinkRenderer.TargetLocation ABOVE
      A enumerator value indicating that the target object is located in a row above the source object and that the x-coordinate of its start time is equal to the x-coordinate of the end time of the source object.
      Seit:
      1.0
    • ABOVE_LEFT

      public static final LinkRenderer.TargetLocation ABOVE_LEFT
      A enumerator value indicating that the target object is located in a row above the source object and that the x-coordinate of its start time is smaller than the x-coordinate of the end time of the source object.
      Seit:
      1.0
    • LEFT

      public static final LinkRenderer.TargetLocation LEFT
      A enumerator value indicating that the target object is located in the same row as the source object and that the x-coordinate of its start time is smaller than the x-coordinate of the end time of the source object.
      Seit:
      1.0
    • SAME_LOCATION

      public static final LinkRenderer.TargetLocation SAME_LOCATION
      A enumerator value indicating that the target object is located in the same row as the source object and that the x-coordinate of its start time is equal to the x-coordinate of the end time of the source object.
      Seit:
      1.0
  • Methodendetails

    • values

      public static LinkRenderer.TargetLocation[] values()
      Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieses Enumerationstyps in der Reihenfolge ihrer Deklaration
    • valueOf

      public static LinkRenderer.TargetLocation valueOf(String name)
      Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enumerationskonstante in diesem Typ 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 dieser Enumerationstyp keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird