Enum Class ClientType

java.lang.Object
java.lang.Enum<ClientType>
moe.caramel.daydream.player.ClientType
All Implemented Interfaces:
Serializable, Comparable<ClientType>, Constable

public enum ClientType extends Enum<ClientType>
클라이언트 타입
  • Enum Constant Details

    • VANILLA

      public static final ClientType VANILLA
      바닐라 클라이언트 또는 알 수 없는 클라이언트
    • UNKNOWN_CLIENT

      public static final ClientType UNKNOWN_CLIENT
      모드 로더이지만 자세히는 알 수 없음
    • FABRIC

      public static final ClientType FABRIC
      Fabric 모드 로더
    • QUILT

      public static final ClientType QUILT
      Quilt 모드 로더
    • FORGE

      public static final ClientType FORGE
      Forge 모드 로더
    • NEOFORGE

      public static final ClientType NEOFORGE
      NeoForge 모드 로더
  • Method Details

    • values

      public static ClientType[] 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

      public static ClientType valueOf(String name)
      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 name
      NullPointerException - if the argument is null