enum FMLHandshakeClientState extends java.lang.Enum<FMLHandshakeClientState> implements IHandshakeState<FMLHandshakeClientState>
Enum Constant and Description |
---|
COMPLETE |
DONE |
ERROR |
HELLO |
PENDINGCOMPLETE |
START |
WAITINGSERVERCOMPLETE |
WAITINGSERVERDATA |
Modifier and Type | Method and Description |
---|---|
static FMLHandshakeClientState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FMLHandshakeClientState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
accept
public static final FMLHandshakeClientState START
public static final FMLHandshakeClientState HELLO
public static final FMLHandshakeClientState WAITINGSERVERDATA
public static final FMLHandshakeClientState WAITINGSERVERCOMPLETE
public static final FMLHandshakeClientState PENDINGCOMPLETE
public static final FMLHandshakeClientState COMPLETE
public static final FMLHandshakeClientState DONE
public static final FMLHandshakeClientState ERROR
public static FMLHandshakeClientState[] values()
for (FMLHandshakeClientState c : FMLHandshakeClientState.values()) System.out.println(c);
public static FMLHandshakeClientState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null