Enum Class CameraType

java.lang.Object
java.lang.Enum<CameraType>
net.minecraft.client.CameraType
All Implemented Interfaces:
Serializable, Comparable<CameraType>, Constable

public enum CameraType extends Enum<CameraType>
  • Enum Constant Details

    • FIRST_PERSON

      public static final CameraType FIRST_PERSON
    • THIRD_PERSON_BACK

      public static final CameraType THIRD_PERSON_BACK
    • THIRD_PERSON_FRONT

      public static final CameraType THIRD_PERSON_FRONT
  • Field Details

    • VALUES

      private static final CameraType[] VALUES
    • firstPerson

      private final boolean firstPerson
    • mirrored

      private final boolean mirrored
  • Constructor Details

    • CameraType

      private CameraType(boolean p_90610_, boolean p_90611_)
  • Method Details

    • values

      public static CameraType[] 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 CameraType 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
    • isFirstPerson

      public boolean isFirstPerson()
    • isMirrored

      public boolean isMirrored()
    • cycle

      public CameraType cycle()