Enum Class PointOfView

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

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

    • FIRST_PERSON

      public static final PointOfView FIRST_PERSON
    • THIRD_PERSON_BACK

      public static final PointOfView THIRD_PERSON_BACK
    • THIRD_PERSON_FRONT

      public static final PointOfView THIRD_PERSON_FRONT
  • Field Details

    • VALUES

      private static final PointOfView[] VALUES
    • firstPerson

      private boolean firstPerson
    • mirrored

      private boolean mirrored
  • Constructor Details

    • PointOfView

      private PointOfView(boolean p_i242049_3_, boolean p_i242049_4_)
  • Method Details

    • values

      public static PointOfView[] 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 PointOfView 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 PointOfView cycle()