Package org.rspeer.game.adapter.social
Enum PartyUser.Rank
- java.lang.Object
-
- java.lang.Enum<PartyUser.Rank>
-
- org.rspeer.game.adapter.social.PartyUser.Rank
-
- All Implemented Interfaces:
Serializable
,Comparable<PartyUser.Rank>
- Enclosing class:
- PartyUser
public static enum PartyUser.Rank extends Enum<PartyUser.Rank>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMINISTRATOR
DEPUTY_OWNER
DYNAMIC_1
DYNAMIC_10
DYNAMIC_11
DYNAMIC_12
DYNAMIC_13
DYNAMIC_14
DYNAMIC_2
DYNAMIC_3
DYNAMIC_4
DYNAMIC_5
DYNAMIC_6
DYNAMIC_7
DYNAMIC_8
DYNAMIC_9
GUEST
JMOD
OWNER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PartyUser.Rank
valueOf(byte id)
Returns the enum constant of this type with the specified name.static PartyUser.Rank
valueOf(String name)
Returns the enum constant of this type with the specified name.static PartyUser.Rank[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GUEST
public static final PartyUser.Rank GUEST
-
DYNAMIC_1
public static final PartyUser.Rank DYNAMIC_1
-
DYNAMIC_2
public static final PartyUser.Rank DYNAMIC_2
-
DYNAMIC_3
public static final PartyUser.Rank DYNAMIC_3
-
DYNAMIC_4
public static final PartyUser.Rank DYNAMIC_4
-
DYNAMIC_5
public static final PartyUser.Rank DYNAMIC_5
-
DYNAMIC_6
public static final PartyUser.Rank DYNAMIC_6
-
DYNAMIC_7
public static final PartyUser.Rank DYNAMIC_7
-
DYNAMIC_8
public static final PartyUser.Rank DYNAMIC_8
-
DYNAMIC_9
public static final PartyUser.Rank DYNAMIC_9
-
DYNAMIC_10
public static final PartyUser.Rank DYNAMIC_10
-
ADMINISTRATOR
public static final PartyUser.Rank ADMINISTRATOR
-
DYNAMIC_11
public static final PartyUser.Rank DYNAMIC_11
-
DYNAMIC_12
public static final PartyUser.Rank DYNAMIC_12
-
DYNAMIC_13
public static final PartyUser.Rank DYNAMIC_13
-
DYNAMIC_14
public static final PartyUser.Rank DYNAMIC_14
-
DEPUTY_OWNER
public static final PartyUser.Rank DEPUTY_OWNER
-
OWNER
public static final PartyUser.Rank OWNER
-
JMOD
public static final PartyUser.Rank JMOD
-
-
Method Detail
-
values
public static PartyUser.Rank[] 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 (PartyUser.Rank c : PartyUser.Rank.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PartyUser.Rank valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
valueOf
public static PartyUser.Rank valueOf(byte id)
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:
id
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-