From 0427ab89f1753a44b30cbc35ce021cbbdc845109 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Thu, 10 Aug 2017 18:52:45 +0300 Subject: fix missing source folder --- javadoc/cpw/mods/fml/common/LoaderState.html | 521 +++++++++++++++++++++++++++ 1 file changed, 521 insertions(+) create mode 100644 javadoc/cpw/mods/fml/common/LoaderState.html (limited to 'javadoc/cpw/mods/fml/common/LoaderState.html') diff --git a/javadoc/cpw/mods/fml/common/LoaderState.html b/javadoc/cpw/mods/fml/common/LoaderState.html new file mode 100644 index 0000000..f6062c3 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/LoaderState.html @@ -0,0 +1,521 @@ + + + + + +LoaderState (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common
+

Enum LoaderState

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<LoaderState>
    +
    +
    +
    +
    public enum LoaderState
    +extends java.lang.Enum<LoaderState>
    +
    The state enum used to help track state progression for the loader
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Detail

      + + + +
        +
      • +

        NOINIT

        +
        public static final LoaderState NOINIT
        +
      • +
      + + + +
        +
      • +

        LOADING

        +
        public static final LoaderState LOADING
        +
      • +
      + + + +
        +
      • +

        CONSTRUCTING

        +
        public static final LoaderState CONSTRUCTING
        +
      • +
      + + + +
        +
      • +

        PREINITIALIZATION

        +
        public static final LoaderState PREINITIALIZATION
        +
      • +
      + + + +
        +
      • +

        INITIALIZATION

        +
        public static final LoaderState INITIALIZATION
        +
      • +
      + + + +
        +
      • +

        POSTINITIALIZATION

        +
        public static final LoaderState POSTINITIALIZATION
        +
      • +
      + + + +
        +
      • +

        AVAILABLE

        +
        public static final LoaderState AVAILABLE
        +
      • +
      + + + +
        +
      • +

        SERVER_ABOUT_TO_START

        +
        public static final LoaderState SERVER_ABOUT_TO_START
        +
      • +
      + + + +
        +
      • +

        SERVER_STARTING

        +
        public static final LoaderState SERVER_STARTING
        +
      • +
      + + + +
        +
      • +

        SERVER_STARTED

        +
        public static final LoaderState SERVER_STARTED
        +
      • +
      + + + +
        +
      • +

        SERVER_STOPPING

        +
        public static final LoaderState SERVER_STOPPING
        +
      • +
      + + + +
        +
      • +

        SERVER_STOPPED

        +
        public static final LoaderState SERVER_STOPPED
        +
      • +
      + + + +
        +
      • +

        ERRORED

        +
        public static final LoaderState ERRORED
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static LoaderState[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (LoaderState c : LoaderState.values())
        +    System.out.println(c);
        +
        +
        Returns:
        an array containing the constants of this enum type, in the order they are declared
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static LoaderState 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
        +
      • +
      + + + +
        +
      • +

        transition

        +
        public LoaderState transition(boolean errored)
        +
      • +
      + + + +
        +
      • +

        hasEvent

        +
        public boolean hasEvent()
        +
      • +
      + + + +
        +
      • +

        getEvent

        +
        public FMLStateEvent getEvent(java.lang.Object... eventData)
        +
      • +
      + + + +
        +
      • +

        requiredState

        +
        public LoaderState requiredState()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + -- cgit v1.2.3