com.kuka.roboticsAPI.uiModel
Enum ApplicationDialogType

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

public enum ApplicationDialogType
extends Enum<ApplicationDialogType>

The possible application dialog types. The icon for the dialog is chosen according to the dialog type.


Enum Constant Summary
ERROR
          Displays dialog with icon for "Error".
INFORMATION
          Displays dialog with icon for "Information".
QUESTION
          Displays dialog with icon for "Question".
WARNING
          Displays dialog with icon for "Warning".
 
Method Summary
static ApplicationDialogType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ApplicationDialogType[] 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

INFORMATION

public static final ApplicationDialogType INFORMATION
Displays dialog with icon for "Information".


QUESTION

public static final ApplicationDialogType QUESTION
Displays dialog with icon for "Question".


WARNING

public static final ApplicationDialogType WARNING
Displays dialog with icon for "Warning".


ERROR

public static final ApplicationDialogType ERROR
Displays dialog with icon for "Error".

Method Detail

values

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

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

valueOf

public static ApplicationDialogType 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.