Enum NavItemTileWidget.View.ItemType
- java.lang.Object
-
- java.lang.Enum<NavItemTileWidget.View.ItemType>
-
- org.dashbuilder.client.navigation.widget.NavItemTileWidget.View.ItemType
-
- All Implemented Interfaces:
Serializable,Comparable<NavItemTileWidget.View.ItemType>
- Enclosing interface:
- NavItemTileWidget.View
public static enum NavItemTileWidget.View.ItemType extends Enum<NavItemTileWidget.View.ItemType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GROUPPERSPECTIVERUNTIME_PERSPECTIVE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NavItemTileWidget.View.ItemTypevalueOf(String name)Returns the enum constant of this type with the specified name.static NavItemTileWidget.View.ItemType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GROUP
public static final NavItemTileWidget.View.ItemType GROUP
-
PERSPECTIVE
public static final NavItemTileWidget.View.ItemType PERSPECTIVE
-
RUNTIME_PERSPECTIVE
public static final NavItemTileWidget.View.ItemType RUNTIME_PERSPECTIVE
-
-
Method Detail
-
values
public static NavItemTileWidget.View.ItemType[] 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 (NavItemTileWidget.View.ItemType c : NavItemTileWidget.View.ItemType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NavItemTileWidget.View.ItemType 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
-
-