Package me.keehl.elevators.api.util
Enum InternalElevatorSettingType
- java.lang.Object
-
- java.lang.Enum<InternalElevatorSettingType>
-
- me.keehl.elevators.api.util.InternalElevatorSettingType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<InternalElevatorSettingType>
public enum InternalElevatorSettingType extends java.lang.Enum<InternalElevatorSettingType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CAN_EXPLODECHECK_COLORCHECK_PERMSCLASS_CHECKDISPLAY_NAMEDYE_PERMISSIONHOLO_LINESINDIVIDUAL_EDITLORE_LINESMAX_DISTANCEMAX_SOLID_BLOCKSMAX_STACK_SIZESTOP_OBSTRUCTIONSUPPORT_DYINGUSE_PERMISSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetSettingName()static InternalElevatorSettingTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static InternalElevatorSettingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CAN_EXPLODE
public static final InternalElevatorSettingType CAN_EXPLODE
-
CHECK_COLOR
public static final InternalElevatorSettingType CHECK_COLOR
-
INDIVIDUAL_EDIT
public static final InternalElevatorSettingType INDIVIDUAL_EDIT
-
CHECK_PERMS
public static final InternalElevatorSettingType CHECK_PERMS
-
CLASS_CHECK
public static final InternalElevatorSettingType CLASS_CHECK
-
DISPLAY_NAME
public static final InternalElevatorSettingType DISPLAY_NAME
-
DYE_PERMISSION
public static final InternalElevatorSettingType DYE_PERMISSION
-
HOLO_LINES
public static final InternalElevatorSettingType HOLO_LINES
-
LORE_LINES
public static final InternalElevatorSettingType LORE_LINES
-
MAX_DISTANCE
public static final InternalElevatorSettingType MAX_DISTANCE
-
MAX_SOLID_BLOCKS
public static final InternalElevatorSettingType MAX_SOLID_BLOCKS
-
MAX_STACK_SIZE
public static final InternalElevatorSettingType MAX_STACK_SIZE
-
STOP_OBSTRUCTION
public static final InternalElevatorSettingType STOP_OBSTRUCTION
-
SUPPORT_DYING
public static final InternalElevatorSettingType SUPPORT_DYING
-
USE_PERMISSION
public static final InternalElevatorSettingType USE_PERMISSION
-
-
Method Detail
-
values
public static InternalElevatorSettingType[] 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 (InternalElevatorSettingType c : InternalElevatorSettingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InternalElevatorSettingType 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
-
getSettingName
public java.lang.String getSettingName()
-
-