Enum-Klasse FWSimIOAdapter.FREQUENCE

java.lang.Object
java.lang.Enum<FWSimIOAdapter.FREQUENCE>
net.simplace.sim.io.FWSimIOAdapter.FREQUENCE
Alle implementierten Schnittstellen:
Serializable, Comparable<FWSimIOAdapter.FREQUENCE>, Constable
Umschließende Klasse:
FWSimIOAdapter

public static enum FWSimIOAdapter.FREQUENCE extends Enum<FWSimIOAdapter.FREQUENCE>
FREQUENCE the data is written, accessed, used or updated in the different adapters
Autor:
Andreas Enders
  • Verschachtelte Klassen - Übersicht

    Von Klasse geerbte verschachtelte Klassen/Schnittstellen java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum-Konstanten - Übersicht

    Enum-Konstanten
    Enum-Konstante
    Beschreibung
    Complex - data accessed in a complex order. only variable names containing boolean variable are supported
    Output is only performed when calibration has ended
    Complex - data accessed in a complex order. please use rule to specify in more detail
    Daily frequency - data accessed in every time step if time step == daily
    Data only once written at the end of the simulation phase of the model run
    Output is only performed when data exchange is taking place
    Monthly - data accessed only yearly always at the last day of the month
    No frequency means no update - data accessed only once at the initialization phase of the model run
    No frequency means no update - data accessed only once at the initialization phase of the model run
    Yearly - data accessed only yearly always at the 31 December of the year
  • Methodenübersicht

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

    Von Klasse geerbte Methoden java.lang.Object

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

    • NON

      public static final FWSimIOAdapter.FREQUENCE NON
      No frequency means no update - data accessed only once at the initialization phase of the model run
    • DAILY

      public static final FWSimIOAdapter.FREQUENCE DAILY
      Daily frequency - data accessed in every time step if time step == daily
    • YEARLY

      public static final FWSimIOAdapter.FREQUENCE YEARLY
      Yearly - data accessed only yearly always at the 31 December of the year
    • COMPLEX

      public static final FWSimIOAdapter.FREQUENCE COMPLEX
      Complex - data accessed in a complex order. please use rule to specify in more detail
    • BOOLEAN

      public static final FWSimIOAdapter.FREQUENCE BOOLEAN
      Complex - data accessed in a complex order. only variable names containing boolean variable are supported
    • MONTHLY

      public static final FWSimIOAdapter.FREQUENCE MONTHLY
      Monthly - data accessed only yearly always at the last day of the month
    • ONCE

      public static final FWSimIOAdapter.FREQUENCE ONCE
      No frequency means no update - data accessed only once at the initialization phase of the model run
    • END

      public static final FWSimIOAdapter.FREQUENCE END
      Data only once written at the end of the simulation phase of the model run
    • CAL

      public static final FWSimIOAdapter.FREQUENCE CAL
      Output is only performed when calibration has ended
    • EXCHANGE

      public static final FWSimIOAdapter.FREQUENCE EXCHANGE
      Output is only performed when data exchange is taking place
  • Methodendetails

    • values

      public static FWSimIOAdapter.FREQUENCE[] values()
      Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration
    • valueOf

      public static FWSimIOAdapter.FREQUENCE valueOf(String name)
      Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enum-Konstante in dieser Klasse 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 diese Enum-Klasse keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird