LazyLib

org.lazywizard.lazylib.combat.entities
Enum SimpleEntity.SimpleEntityType

Object
  extended by Enum<SimpleEntity.SimpleEntityType>
      extended by SimpleEntity.SimpleEntityType
All Implemented Interfaces:
Serializable, Comparable<SimpleEntity.SimpleEntityType>
Enclosing class:
SimpleEntity

public static enum SimpleEntity.SimpleEntityType
extends Enum<SimpleEntity.SimpleEntityType>

Since:
1.7

Enum Constant Summary
REFLECTION
           
VECTOR
           
WEAPON
           
 
Method Summary
static SimpleEntity.SimpleEntityType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SimpleEntity.SimpleEntityType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VECTOR

public static final SimpleEntity.SimpleEntityType VECTOR

WEAPON

public static final SimpleEntity.SimpleEntityType WEAPON

REFLECTION

public static final SimpleEntity.SimpleEntityType REFLECTION
Method Detail

values

public static SimpleEntity.SimpleEntityType[] 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 (SimpleEntity.SimpleEntityType c : SimpleEntity.SimpleEntityType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SimpleEntity.SimpleEntityType 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 name
NullPointerException - if the argument is null

LazyLib