Enum PathBuilder.TargetLocation

java.lang.Object
java.lang.Enum<PathBuilder.TargetLocation>
impl.com.flexganttfx.skin.graphics.PathBuilder.TargetLocation
Alle implementierten Schnittstellen:
Serializable, Comparable<PathBuilder.TargetLocation>
Umschließende Klasse:
PathBuilder

public static enum PathBuilder.TargetLocation extends Enum<PathBuilder.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 PathBuilder.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 PathBuilder.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 PathBuilder.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 PathBuilder.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 PathBuilder.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 PathBuilder.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 PathBuilder.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 PathBuilder.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 PathBuilder.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 PathBuilder.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