Package net.md_5.bungee.protocol.packet
Enum ClientSettings.ParticleStatus
- java.lang.Object
-
- java.lang.Enum<ClientSettings.ParticleStatus>
-
- net.md_5.bungee.protocol.packet.ClientSettings.ParticleStatus
-
- All Implemented Interfaces:
Serializable,Comparable<ClientSettings.ParticleStatus>
- Enclosing class:
- ClientSettings
public static enum ClientSettings.ParticleStatus extends Enum<ClientSettings.ParticleStatus>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClientSettings.ParticleStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ClientSettings.ParticleStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final ClientSettings.ParticleStatus ALL
-
DECREASED
public static final ClientSettings.ParticleStatus DECREASED
-
MINIMAL
public static final ClientSettings.ParticleStatus MINIMAL
-
-
Method Detail
-
values
public static ClientSettings.ParticleStatus[] 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 (ClientSettings.ParticleStatus c : ClientSettings.ParticleStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientSettings.ParticleStatus 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 nameNullPointerException- if the argument is null
-
-