com.ibm.pim.view
Enum ScreenType

java.lang.Object
  extended by java.lang.Enum<ScreenType>
      extended by com.ibm.pim.view.ScreenType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ScreenType>

public enum ScreenType
extends java.lang.Enum<ScreenType>

ScreenType denotes the different types of Screen in MDMPIM to which the user can specify particular attributes (via ScreenViews within a View)

Since:
6.0.0
See Also:
View, ScreenView

Enum Constant Summary
CATEGORY_MULTI_EDIT
          Category Multi Edit Screen
CATEGORY_SINGLE_EDIT
          Category Single Edit Screen
ITEM_LIST
          Item List Screen
ITEM_LOCATION_DATA
          Item Location Data Screen
ITEM_MULTI_EDIT
          Item Multi Edit Screen
ITEM_POPUP
          Item Popup Screen
ITEM_SINGLE_EDIT
          Item Single Edit Screen
 
Method Summary
static ScreenType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScreenType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ITEM_SINGLE_EDIT

public static final ScreenType ITEM_SINGLE_EDIT
Item Single Edit Screen


ITEM_MULTI_EDIT

public static final ScreenType ITEM_MULTI_EDIT
Item Multi Edit Screen


ITEM_LIST

public static final ScreenType ITEM_LIST
Item List Screen


ITEM_POPUP

public static final ScreenType ITEM_POPUP
Item Popup Screen


ITEM_LOCATION_DATA

public static final ScreenType ITEM_LOCATION_DATA
Item Location Data Screen


CATEGORY_SINGLE_EDIT

public static final ScreenType CATEGORY_SINGLE_EDIT
Category Single Edit Screen


CATEGORY_MULTI_EDIT

public static final ScreenType CATEGORY_MULTI_EDIT
Category Multi Edit Screen

Method Detail

values

public static final ScreenType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ScreenType c : ScreenType.values())
        System.out.println(c);

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

valueOf

public static ScreenType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name