com.azalient.api.b.display
Enum IShape.ShapeType

java.lang.Object
  extended by java.lang.Enum<IShape.ShapeType>
      extended by com.azalient.api.b.display.IShape.ShapeType
All Implemented Interfaces:
Serializable, Comparable<IShape.ShapeType>
Enclosing interface:
IShape

public static enum IShape.ShapeType
extends Enum<IShape.ShapeType>


Enum Constant Summary
Images
           
Pedestrians
           
Structures
           
Vehicles
           
 
Method Summary
static IShape.ShapeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IShape.ShapeType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Pedestrians

public static final IShape.ShapeType Pedestrians

Vehicles

public static final IShape.ShapeType Vehicles

Structures

public static final IShape.ShapeType Structures

Images

public static final IShape.ShapeType Images
Method Detail

values

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

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

valueOf

public static IShape.ShapeType 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