Enum GraphicsBase.LassoSelectionBehaviour

java.lang.Object
java.lang.Enum<GraphicsBase.LassoSelectionBehaviour>
com.flexganttfx.view.graphics.GraphicsBase.LassoSelectionBehaviour
Alle implementierten Schnittstellen:
Serializable, Comparable<GraphicsBase.LassoSelectionBehaviour>
Umschließende Klasse:
GraphicsBase<R extends Row<?,?,?>>

public static enum GraphicsBase.LassoSelectionBehaviour extends Enum<GraphicsBase.LassoSelectionBehaviour>
An enumerator used to control the selection behaviour of the lasso. In some applications it is sufficient when the bounds of an activity intersect with the bounds of the lasso, in others the activities need to be completely contained within the lasso bounds.
Seit:
1.0
Siehe auch:
  • Enum-Konstanten - Details

    • INTERSECTION

      public static final GraphicsBase.LassoSelectionBehaviour INTERSECTION
      A value indicating to the lasso selection that a simple intersection of the bounds of an activity with the bounds of the lasso is sufficient for the selection of the activity.
      Seit:
      1.0
    • TIME_INTERVAL_CONTAINMENT

      public static final GraphicsBase.LassoSelectionBehaviour TIME_INTERVAL_CONTAINMENT
      A value indicating to the lasso selection that the time interval of an activity has to be completely contained within the time interval defined by the lasso in order for the activity to become selected.
      Seit:
      1.0
    • BOUNDS_CONTAINMENT

      public static final GraphicsBase.LassoSelectionBehaviour BOUNDS_CONTAINMENT
      A value indicating to the lasso selection that the bounds of an activity need to be completely contained within the bounds of the lasso in order for the activity to become selected.
      Seit:
      1.0
  • Methodendetails

    • values

      public static GraphicsBase.LassoSelectionBehaviour[] 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 GraphicsBase.LassoSelectionBehaviour 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