Enum Perspective

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

@Environment(CLIENT)
public enum Perspective
extends Enum<Perspective>
  • Enum Constant Details

    • FIRST_PERSON

      public static final Perspective FIRST_PERSON
    • THIRD_PERSON_BACK

      public static final Perspective THIRD_PERSON_BACK
    • THIRD_PERSON_FRONT

      public static final Perspective THIRD_PERSON_FRONT
  • Field Details

    • VALUES

      private static final Perspective[] VALUES
    • firstPerson

      private boolean firstPerson
    • frontView

      private boolean frontView
  • Constructor Details

    • Perspective

      private Perspective​(boolean firstPerson, boolean frontView)
  • Method Details

    • values

      public static Perspective[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Perspective 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 name
      NullPointerException - if the argument is null
    • isFirstPerson

      public boolean isFirstPerson()
    • isFrontView

      public boolean isFrontView()
    • next

      public Perspective next()