public static enum SteamFriends.PersonaState extends Enum<SteamFriends.PersonaState>
| Enum Constant and Description |
|---|
Away |
Busy |
LookingToPlay |
LookingToTrade |
Offline |
Online |
Snooze |
| Modifier and Type | Method and Description |
|---|---|
static SteamFriends.PersonaState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SteamFriends.PersonaState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SteamFriends.PersonaState Offline
public static final SteamFriends.PersonaState Online
public static final SteamFriends.PersonaState Busy
public static final SteamFriends.PersonaState Away
public static final SteamFriends.PersonaState Snooze
public static final SteamFriends.PersonaState LookingToTrade
public static final SteamFriends.PersonaState LookingToPlay
public static SteamFriends.PersonaState[] values()
for (SteamFriends.PersonaState c : SteamFriends.PersonaState.values()) System.out.println(c);
public static SteamFriends.PersonaState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.