Package nl.gx.webmanager.wcb.dojotype
Enum DojoModule.ModuleType
- java.lang.Object
-
- java.lang.Enum<DojoModule.ModuleType>
-
- nl.gx.webmanager.wcb.dojotype.DojoModule.ModuleType
-
- All Implemented Interfaces:
Serializable
,Comparable<DojoModule.ModuleType>
- Enclosing interface:
- DojoModule
public static enum DojoModule.ModuleType extends Enum<DojoModule.ModuleType>
Specifies the module type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LAYER
Module
Deprecated.MODULE
Panel
Deprecated.PANEL
SEARCH_FACET
SIDEBAR_WIDGET
SidebarWidget
Deprecated.SIMPLE_SEARCH
SimpleSearch
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static DojoModule.ModuleType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DojoModule.ModuleType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SIDEBAR_WIDGET
public static final DojoModule.ModuleType SIDEBAR_WIDGET
-
MODULE
public static final DojoModule.ModuleType MODULE
-
SIMPLE_SEARCH
public static final DojoModule.ModuleType SIMPLE_SEARCH
-
PANEL
public static final DojoModule.ModuleType PANEL
-
LAYER
public static final DojoModule.ModuleType LAYER
-
SEARCH_FACET
public static final DojoModule.ModuleType SEARCH_FACET
-
SidebarWidget
@Deprecated public static final DojoModule.ModuleType SidebarWidget
Deprecated.
-
Module
@Deprecated public static final DojoModule.ModuleType Module
Deprecated.
-
SimpleSearch
@Deprecated public static final DojoModule.ModuleType SimpleSearch
Deprecated.
-
Panel
@Deprecated public static final DojoModule.ModuleType Panel
Deprecated.
-
-
Method Detail
-
values
public static DojoModule.ModuleType[] 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 (DojoModule.ModuleType c : DojoModule.ModuleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DojoModule.ModuleType 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
-
getValue
public String getValue()
-
-