public enum GeometryType extends Enum<GeometryType>
| Enum Constant and Description |
|---|
AERIAL_VEHICLE |
GROUND_VEHICLE |
LEGGED_ROBOT |
MISSION_PACKAGE |
NAUTIC_VEHICLE |
SENSOR_EFFECTER |
| Modifier and Type | Method and Description |
|---|---|
Class |
getModuleClass()
Notice that this method is not static.
|
static GeometryType |
getType(String type)
For each geometry type it checks if type matches one of
kinds.
|
static GeometryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeometryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeometryType GROUND_VEHICLE
public static final GeometryType LEGGED_ROBOT
public static final GeometryType NAUTIC_VEHICLE
public static final GeometryType AERIAL_VEHICLE
public static final GeometryType SENSOR_EFFECTER
public static final GeometryType MISSION_PACKAGE
public static GeometryType[] values()
for (GeometryType c : GeometryType.values()) System.out.println(c);
public static GeometryType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic static GeometryType getType(String type)
type - String representation or kind of Geometrypublic Class getModuleClass()
Copyright © 2013 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.