|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<DriveType>
com.kuka.nav.robot.DriveType
public enum DriveType
Represents the drive type of a mobile robot.
| Enum Constant Summary | |
|---|---|
DIFFERENTIAL
Represents the drive type of robots with differential kinematics. |
|
HOLONOMIC
Represents the drive type of robots with holonomic, i.e. omnidirectional kinematics. |
|
| Method Summary | |
|---|---|
String |
getName()
Returns the name of this drive type. |
static DriveType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DriveType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
static DriveType |
withName(String name)
Creates the error type from the given name. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final DriveType DIFFERENTIAL
public static final DriveType HOLONOMIC
| Method Detail |
|---|
public static DriveType[] values()
for (DriveType c : DriveType.values()) System.out.println(c);
public static DriveType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String getName()
public static DriveType withName(String name)
name - the name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||