Enum AgendaLayout.LayoutStrategy

java.lang.Object
java.lang.Enum<AgendaLayout.LayoutStrategy>
com.flexganttfx.model.layout.AgendaLayout.LayoutStrategy
Alle implementierten Schnittstellen:
Serializable, Comparable<AgendaLayout.LayoutStrategy>
Umschließende Klasse:
AgendaLayout

public static enum AgendaLayout.LayoutStrategy extends Enum<AgendaLayout.LayoutStrategy>
An enumerator for the different ways overlapping agenda entries can be laid out.
Seit:
1.0
  • Enum-Konstanten - Details

    • OVERLAPPING

      public static final AgendaLayout.LayoutStrategy OVERLAPPING
      Intersecting agenda entries will be drawn on top of each other but with one of them being indented by a couple of pixels (see AgendaLayout.setOverlapOffset(double)).
      Seit:
      1.0
    • PARALLEL

      public static final AgendaLayout.LayoutStrategy PARALLEL
      Intersecting agenda entries will be displayed in different columns within the same day.
      Seit:
      1.0
    • PARALLEL_OVERLAPPING

      public static final AgendaLayout.LayoutStrategy PARALLEL_OVERLAPPING
      Intersecting agenda entries will be displayed in different columns within the same day but overlapping each other.
      Seit:
      1.0
  • Methodendetails

    • values

      public static AgendaLayout.LayoutStrategy[] 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 AgendaLayout.LayoutStrategy 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