com.azalient.api.b.display
Enum IShape.ShapeType
java.lang.Object
java.lang.Enum<IShape.ShapeType>
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>
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
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