Enum Tool
- java.lang.Object
-
- java.lang.Enum<Tool>
-
- com.bombinggames.wurfelengine.mapeditor.Tool
-
public enum Tool extends java.lang.Enum<Tool>
a enum listing the available tools
-
-
Field Summary
Fields Modifier and Type Field Description boolean
showNormal
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Command
getCommand(Cursor cursor, AbstractPlacableTable placableTable)
int
getId()
boolean
selectFromBlocks()
boolean
selectFromEntities()
static Tool
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Tool[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRAW
public static final Tool DRAW
tool to draw blocks
-
BUCKET
public static final Tool BUCKET
tool to cover an area with blocks
-
REPLACE
public static final Tool REPLACE
"repaints" blocks
-
SELECT
public static final Tool SELECT
select and move entities
-
SPAWN
public static final Tool SPAWN
spawn new entities
-
ERASE
public static final Tool ERASE
replace blocks with air
-
-
Method Detail
-
values
public static Tool[] 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 (Tool c : Tool.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Tool 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
-
getId
public int getId()
- Returns:
-
selectFromBlocks
public boolean selectFromBlocks()
- Returns:
-
selectFromEntities
public boolean selectFromEntities()
- Returns:
-
getCommand
public Command getCommand(Cursor cursor, AbstractPlacableTable placableTable)
- Parameters:
cursor
-placableTable
-- Returns:
-
-