org.stellarium
Enum StateSemaphore

java.lang.Object
  extended by java.lang.Enum<StateSemaphore>
      extended by org.stellarium.StateSemaphore
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StateSemaphore>

public enum StateSemaphore
extends java.lang.Enum<StateSemaphore>


Enum Constant Summary
GlCoreInit
           
GlInit
           
HipStars
           
LoadingBar
           
SolarSystem
           
UiInit
           
VideoInit
           
 
Field Summary
private  boolean done
           
private static int MAX_LOOPS
           
private  int nbLoops
           
private  long timeout
           
 
Method Summary
 boolean isDone()
           
 void setDone()
           
static StateSemaphore valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StateSemaphore[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 void waitUntilDone()
           
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SolarSystem

public static final StateSemaphore SolarSystem

LoadingBar

public static final StateSemaphore LoadingBar

HipStars

public static final StateSemaphore HipStars

GlInit

public static final StateSemaphore GlInit

UiInit

public static final StateSemaphore UiInit

VideoInit

public static final StateSemaphore VideoInit

GlCoreInit

public static final StateSemaphore GlCoreInit
Field Detail

MAX_LOOPS

private static final int MAX_LOOPS
See Also:
Constant Field Values

nbLoops

private int nbLoops

timeout

private long timeout

done

private boolean done
Method Detail

values

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

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static StateSemaphore 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

isDone

public boolean isDone()

waitUntilDone

public void waitUntilDone()

setDone

public void setDone()