com.kuka.appframework
Enum BlockIcon

java.lang.Object
  extended by java.lang.Enum<BlockIcon>
      extended by com.kuka.appframework.BlockIcon
All Implemented Interfaces:
Serializable, Comparable<BlockIcon>

public enum BlockIcon
extends Enum<BlockIcon>

This enum contains a list of available block icons.


Enum Constant Summary
CALCULATE
          The calculate icon.
CAMERA
          The camera icon.
DECIDE
          The decide icon.
DEPALLETIZE
          The depalletize icon.
DESTACK
          The destack icon.
ENTER
          The enter icon.
INFORM
          The inform icon.
LEAVE
          The leave icon.
MEASURE
          The measure icon.
MEASURE_BASE
          The measure base icon.
MOVE
          The moving icon.
ON_OFF
          The on/off icon.
PALLETIZE
          The palletize icon.
PICK
          The pick icon.
PLACE
          The place icon.
REPEAT
          The repeat icon.
REQUEST
          The request icon.
STACK
          The stack icon.
WAIT
          The wait icon.
 
Method Summary
static BlockIcon valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BlockIcon[] 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

CALCULATE

public static final BlockIcon CALCULATE
The calculate icon.


CAMERA

public static final BlockIcon CAMERA
The camera icon.


DECIDE

public static final BlockIcon DECIDE
The decide icon.


DEPALLETIZE

public static final BlockIcon DEPALLETIZE
The depalletize icon.


DESTACK

public static final BlockIcon DESTACK
The destack icon.


ENTER

public static final BlockIcon ENTER
The enter icon.


INFORM

public static final BlockIcon INFORM
The inform icon.


LEAVE

public static final BlockIcon LEAVE
The leave icon.


MEASURE

public static final BlockIcon MEASURE
The measure icon.


MEASURE_BASE

public static final BlockIcon MEASURE_BASE
The measure base icon.


MOVE

public static final BlockIcon MOVE
The moving icon.


ON_OFF

public static final BlockIcon ON_OFF
The on/off icon.


PALLETIZE

public static final BlockIcon PALLETIZE
The palletize icon.


PICK

public static final BlockIcon PICK
The pick icon.


PLACE

public static final BlockIcon PLACE
The place icon.


REPEAT

public static final BlockIcon REPEAT
The repeat icon.


REQUEST

public static final BlockIcon REQUEST
The request icon.


STACK

public static final BlockIcon STACK
The stack icon.


WAIT

public static final BlockIcon WAIT
The wait icon.

Method Detail

values

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

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

valueOf

public static BlockIcon 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 © 2018. All rights reserved.