|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<IODirection>
com.kuka.roboticsAPI.ioModel.IODirection
public enum IODirection
Direction of I/Os.
| Enum Constant Summary | |
|---|---|
INPUT
Input I/O. |
|
OUTPUT
Output I/O. |
|
| Method Summary | |
|---|---|
static IODirection |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IODirection |
valueOfIgnoreCase(String value)
Creates an IODirection from the specified string ignoring the case. |
static IODirection[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| 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 IODirection OUTPUT
public static final IODirection INPUT
| Method Detail |
|---|
public static IODirection[] values()
for (IODirection c : IODirection.values()) System.out.println(c);
public static IODirection 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 static IODirection valueOfIgnoreCase(String value)
value - string value to parse
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||