Package me.clientastisch.controller
Enum PlayerController.Verify
- java.lang.Object
-
- java.lang.Enum<PlayerController.Verify>
-
- me.clientastisch.controller.PlayerController.Verify
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PlayerController.Verify>
- Enclosing class:
- PlayerController
public static enum PlayerController.Verify extends java.lang.Enum<PlayerController.Verify>
Display property, used in order to hide an verification or present the verification to the whole server- See Also:
PlayerController.isVerified()
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PlayerController.Verify
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PlayerController.Verify[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRIVATE
public static final PlayerController.Verify PRIVATE
-
PUBLIC
public static final PlayerController.Verify PUBLIC
-
-
Method Detail
-
values
public static PlayerController.Verify[] 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 (PlayerController.Verify c : PlayerController.Verify.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlayerController.Verify 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
-
-