com.kuka.roboticsAPI.uiModel.userKeys
Enum UserKeyLED

java.lang.Object
  extended by java.lang.Enum<UserKeyLED>
      extended by com.kuka.roboticsAPI.uiModel.userKeys.UserKeyLED
All Implemented Interfaces:
Serializable, Comparable<UserKeyLED>

public enum UserKeyLED
extends Enum<UserKeyLED>

The possible user key LED elements.


Enum Constant Summary
Green
          Displays a green LED element.
Grey
          Displays a grey LED element.
NoLED
          Displays no LED element.
Red
          Displays a red LED element.
Yellow
          Displays a yellow LED element.
 
Method Summary
static UserKeyLED valueOf(String name)
          Returns the enum constant of this type with the specified name.
static UserKeyLED[] 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

NoLED

public static final UserKeyLED NoLED
Displays no LED element.


Red

public static final UserKeyLED Red
Displays a red LED element.


Yellow

public static final UserKeyLED Yellow
Displays a yellow LED element.


Green

public static final UserKeyLED Green
Displays a green LED element.


Grey

public static final UserKeyLED Grey
Displays a grey LED element.

Method Detail

values

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

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

valueOf

public static UserKeyLED 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


Copyright © 2019. All rights reserved.