Package net.minecraft.world
Enum GameRules.Category
- java.lang.Object
-
- java.lang.Enum<GameRules.Category>
-
- net.minecraft.world.GameRules.Category
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GameRules.Category>
- Enclosing class:
- GameRules
public static enum GameRules.Category extends java.lang.Enum<GameRules.Category>
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
descriptionId
-
Constructor Summary
Constructors Modifier Constructor Description private
Category(java.lang.String p_i231613_3_)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescriptionId()
static GameRules.Category
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GameRules.Category[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLAYER
public static final GameRules.Category PLAYER
-
MOBS
public static final GameRules.Category MOBS
-
SPAWNING
public static final GameRules.Category SPAWNING
-
DROPS
public static final GameRules.Category DROPS
-
UPDATES
public static final GameRules.Category UPDATES
-
CHAT
public static final GameRules.Category CHAT
-
MISC
public static final GameRules.Category MISC
-
-
Method Detail
-
values
public static GameRules.Category[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GameRules.Category c : GameRules.Category.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GameRules.Category valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getDescriptionId
public java.lang.String getDescriptionId()
-
-