Package in.dragonbra.javasteam.enums
Enum EClientPersonaStateFlag
- java.lang.Object
-
- java.lang.Enum<EClientPersonaStateFlag>
-
- in.dragonbra.javasteam.enums.EClientPersonaStateFlag
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EClientPersonaStateFlag>
public enum EClientPersonaStateFlag extends java.lang.Enum<EClientPersonaStateFlag>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BroadcastClanDataFacebookGameDataBlobGameExtraInfoLastSeenPlayerNamePresenceQueryPortRichPresenceSourceIDStatusUserClanRankWatching
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcode()static intcode(java.util.EnumSet<EClientPersonaStateFlag> flags)static java.util.EnumSet<EClientPersonaStateFlag>from(int code)static EClientPersonaStateFlagvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EClientPersonaStateFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Status
public static final EClientPersonaStateFlag Status
-
PlayerName
public static final EClientPersonaStateFlag PlayerName
-
QueryPort
public static final EClientPersonaStateFlag QueryPort
-
SourceID
public static final EClientPersonaStateFlag SourceID
-
Presence
public static final EClientPersonaStateFlag Presence
-
LastSeen
public static final EClientPersonaStateFlag LastSeen
-
UserClanRank
public static final EClientPersonaStateFlag UserClanRank
-
GameExtraInfo
public static final EClientPersonaStateFlag GameExtraInfo
-
GameDataBlob
public static final EClientPersonaStateFlag GameDataBlob
-
ClanData
public static final EClientPersonaStateFlag ClanData
-
Facebook
public static final EClientPersonaStateFlag Facebook
-
RichPresence
public static final EClientPersonaStateFlag RichPresence
-
Broadcast
public static final EClientPersonaStateFlag Broadcast
-
Watching
public static final EClientPersonaStateFlag Watching
-
-
Method Detail
-
values
public static EClientPersonaStateFlag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EClientPersonaStateFlag c : EClientPersonaStateFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EClientPersonaStateFlag 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 namejava.lang.NullPointerException- if the argument is null
-
code
public int code()
-
from
public static java.util.EnumSet<EClientPersonaStateFlag> from(int code)
-
code
public static int code(java.util.EnumSet<EClientPersonaStateFlag> flags)
-
-