Enum ActivityLink.LinkType

java.lang.Object
java.lang.Enum<ActivityLink.LinkType>
com.flexganttfx.model.ActivityLink.LinkType
Alle implementierten Schnittstellen:
Serializable, Comparable<ActivityLink.LinkType>
Umschließende Klasse:
ActivityLink<A extends Activity>

public static enum ActivityLink.LinkType extends Enum<ActivityLink.LinkType>
An enumerator listing the available link types.
Seit:
1.0
Siehe auch:
  • Enum-Konstanten - Übersicht

    Enum-Konstanten
    Enum-Konstante
    Beschreibung
    Used to define a link between the end time of the first activity and the end time of the second activity.
    Used to define a link between the end time of the first activity and the start time of the second activity.
    Used to define a link between the start time of the first activity and the end time of the second activity.
    Used to define a link between the start time of the first activity and the start time of the second activity.
  • 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

    • END_TO_START

      public static final ActivityLink.LinkType END_TO_START
      Used to define a link between the end time of the first activity and the start time of the second activity.
      Seit:
      1.0
    • START_TO_END

      public static final ActivityLink.LinkType START_TO_END
      Used to define a link between the start time of the first activity and the end time of the second activity.
      Seit:
      1.0
    • START_TO_START

      public static final ActivityLink.LinkType START_TO_START
      Used to define a link between the start time of the first activity and the start time of the second activity.
      Seit:
      1.0
    • END_TO_END

      public static final ActivityLink.LinkType END_TO_END
      Used to define a link between the end time of the first activity and the end time of the second activity.
      Seit:
      1.0
  • Methodendetails

    • values

      public static ActivityLink.LinkType[] 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 ActivityLink.LinkType 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