javax.rad.application
Enum IWorkScreenApplication.Modality

java.lang.Object
  extended by java.lang.Enum<IWorkScreenApplication.Modality>
      extended by javax.rad.application.IWorkScreenApplication.Modality
All Implemented Interfaces:
Serializable, Comparable<IWorkScreenApplication.Modality>
Enclosing interface:
IWorkScreenApplication

public static enum IWorkScreenApplication.Modality
extends Enum<IWorkScreenApplication.Modality>

The enum for modal content or workscreens.


Enum Constant Summary
Modal
          modal mode.
NotModal
          not modal mode.
WorkScreen
          use the modal option from the work screen.
 
Method Summary
static IWorkScreenApplication.Modality valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IWorkScreenApplication.Modality[] 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

Modal

public static final IWorkScreenApplication.Modality Modal
modal mode.


NotModal

public static final IWorkScreenApplication.Modality NotModal
not modal mode.


WorkScreen

public static final IWorkScreenApplication.Modality WorkScreen
use the modal option from the work screen.

Method Detail

values

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

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

valueOf

public static IWorkScreenApplication.Modality 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 © 2009 SIB Visions GmbH. All Rights Reserved.