Package org.openbravo.client.application
Enum MenuManager.MenuEntryType
- java.lang.Object
-
- java.lang.Enum<MenuManager.MenuEntryType>
-
- org.openbravo.client.application.MenuManager.MenuEntryType
-
- All Implemented Interfaces:
Serializable
,Comparable<MenuManager.MenuEntryType>
- Enclosing class:
- MenuManager
public static enum MenuManager.MenuEntryType extends Enum<MenuManager.MenuEntryType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description External
Form
Process
ProcessDefinition
ProcessManual
Report
Summary
View
Window
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MenuManager.MenuEntryType
valueOf(String name)
Returns the enum constant of this type with the specified name.static MenuManager.MenuEntryType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Window
public static final MenuManager.MenuEntryType Window
-
Process
public static final MenuManager.MenuEntryType Process
-
ProcessManual
public static final MenuManager.MenuEntryType ProcessManual
-
Report
public static final MenuManager.MenuEntryType Report
-
Form
public static final MenuManager.MenuEntryType Form
-
External
public static final MenuManager.MenuEntryType External
-
Summary
public static final MenuManager.MenuEntryType Summary
-
View
public static final MenuManager.MenuEntryType View
-
ProcessDefinition
public static final MenuManager.MenuEntryType ProcessDefinition
-
-
Method Detail
-
values
public static MenuManager.MenuEntryType[] 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 (MenuManager.MenuEntryType c : MenuManager.MenuEntryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MenuManager.MenuEntryType 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 nameNullPointerException
- if the argument is null
-
-