Package moe.caramel.daydream.packet
Enum Class PlayerInfoUpdatePacket.Action
java.lang.Object
java.lang.Enum<PlayerInfoUpdatePacket.Action>
moe.caramel.daydream.packet.PlayerInfoUpdatePacket.Action
- All Implemented Interfaces:
Serializable
,Comparable<PlayerInfoUpdatePacket.Action>
,Constable
- Enclosing interface:
PlayerInfoUpdatePacket
Player Info Update 패킷 액션
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription플레이어를 추가합니다.채팅 세션을 설정합니다.플레이어의 표시 이름을 업데이트합니다.플레이어의 게임 모드를 업데이트합니다.플레이어 스킨의 모자 레이어 활성화 여부를 업데이트합니다.플레이어의 지연 시간을 업데이트합니다.플레이어의 탭 리스트 정렬 순서를 업데이트합니다.플레이어를 탭 리스트에 포함할지 결정합니다. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static PlayerInfoUpdatePacket.Action[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ADD_PLAYER
플레이어를 추가합니다. -
INITIALIZE_CHAT
채팅 세션을 설정합니다. -
UPDATE_GAME_MODE
플레이어의 게임 모드를 업데이트합니다. -
UPDATE_LISTED
플레이어를 탭 리스트에 포함할지 결정합니다. -
UPDATE_LATENCY
플레이어의 지연 시간을 업데이트합니다. -
UPDATE_DISPLAY_NAME
플레이어의 표시 이름을 업데이트합니다. -
UPDATE_LIST_ORDER
플레이어의 탭 리스트 정렬 순서를 업데이트합니다. -
UPDATE_HAT
플레이어 스킨의 모자 레이어 활성화 여부를 업데이트합니다.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-