Package gaiasky.event

Enum EventManager.TimeFrame

java.lang.Object
java.lang.Enum<EventManager.TimeFrame>
gaiasky.event.EventManager.TimeFrame
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EventManager.TimeFrame>, java.lang.constant.Constable
Enclosing class:
EventManager

public static enum EventManager.TimeFrame
extends java.lang.Enum<EventManager.TimeFrame>
Time frame options
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant Description
    REAL_TIME
    Real time from the user's perspective
    SIMULATION_TIME
    Simulation time in the simulation clock
  • Method Summary

    Modifier and Type Method Description
    long getCurrentTimeMs()  
    static EventManager.TimeFrame valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static EventManager.TimeFrame[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • REAL_TIME

      public static final EventManager.TimeFrame REAL_TIME
      Real time from the user's perspective
    • SIMULATION_TIME

      public static final EventManager.TimeFrame SIMULATION_TIME
      Simulation time in the simulation clock
  • Method Details

    • values

      public static EventManager.TimeFrame[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static EventManager.TimeFrame valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
      java.lang.NullPointerException - if the argument is null
    • getCurrentTimeMs

      public long getCurrentTimeMs()