org.stellarium
Enum StateSemaphore
java.lang.Object
java.lang.Enum<StateSemaphore>
org.stellarium.StateSemaphore
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<StateSemaphore>
-
public enum StateSemaphore
- extends java.lang.Enum<StateSemaphore>
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 |
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
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
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()
-