Enum AbstractDashboardWidget.ActiveContent
- java.lang.Object
-
- java.lang.Enum<AbstractDashboardWidget.ActiveContent>
-
- org.neotropic.util.visual.widgets.AbstractDashboardWidget.ActiveContent
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractDashboardWidget.ActiveContent>
- Enclosing class:
- AbstractDashboardWidget
public static enum AbstractDashboardWidget.ActiveContent extends Enum<AbstractDashboardWidget.ActiveContent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTENT_CONTENT
CONTENT_COVER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractDashboardWidget.ActiveContent
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractDashboardWidget.ActiveContent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTENT_COVER
public static final AbstractDashboardWidget.ActiveContent CONTENT_COVER
-
CONTENT_CONTENT
public static final AbstractDashboardWidget.ActiveContent CONTENT_CONTENT
-
-
Method Detail
-
values
public static AbstractDashboardWidget.ActiveContent[] 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 (AbstractDashboardWidget.ActiveContent c : AbstractDashboardWidget.ActiveContent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractDashboardWidget.ActiveContent 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
-
-