Enum Class AppStep

java.lang.Object
java.lang.Enum<AppStep>
com.jme3.profile.AppStep
All Implemented Interfaces:
Serializable, Comparable<AppStep>, Constable

public enum AppStep extends Enum<AppStep>
Indicates an application-level step within the profiled frame.
  • Enum Constant Details

    • BeginFrame

      public static final AppStep BeginFrame
    • QueuedTasks

      public static final AppStep QueuedTasks
    • ProcessInput

      public static final AppStep ProcessInput
    • ProcessAudio

      public static final AppStep ProcessAudio
    • StateManagerUpdate

      public static final AppStep StateManagerUpdate
    • SpatialUpdate

      public static final AppStep SpatialUpdate
    • StateManagerRender

      public static final AppStep StateManagerRender
    • RenderFrame

      public static final AppStep RenderFrame
    • RenderPreviewViewPorts

      public static final AppStep RenderPreviewViewPorts
    • RenderMainViewPorts

      public static final AppStep RenderMainViewPorts
    • RenderPostViewPorts

      public static final AppStep RenderPostViewPorts
    • EndFrame

      public static final AppStep EndFrame
  • Method Details

    • values

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

      public static AppStep valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null