public static enum WhatNextManager.WhatToDoNext extends java.lang.Enum<WhatNextManager.WhatToDoNext>
Enum Constant and Description |
---|
GET_PLAYERS_DIALOG |
LOAD_GAME |
NET_CLIENT_DIALOG |
QUIT_ALL |
START_GAME |
START_NET_CLIENT |
START_WEB_CLIENT |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
activity |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Returns a non-localized UI string for the "whatToDoNext" activity.
|
static WhatNextManager.WhatToDoNext |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WhatNextManager.WhatToDoNext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WhatNextManager.WhatToDoNext START_GAME
public static final WhatNextManager.WhatToDoNext START_NET_CLIENT
public static final WhatNextManager.WhatToDoNext START_WEB_CLIENT
public static final WhatNextManager.WhatToDoNext LOAD_GAME
public static final WhatNextManager.WhatToDoNext GET_PLAYERS_DIALOG
public static final WhatNextManager.WhatToDoNext NET_CLIENT_DIALOG
public static final WhatNextManager.WhatToDoNext QUIT_ALL
public static WhatNextManager.WhatToDoNext[] values()
for (WhatNextManager.WhatToDoNext c : WhatNextManager.WhatToDoNext.values()) System.out.println(c);
public static WhatNextManager.WhatToDoNext 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<WhatNextManager.WhatToDoNext>