Enum HippoIconStack.Position
- java.lang.Object
-
- java.lang.Enum<HippoIconStack.Position>
-
- org.hippoecm.frontend.plugins.standards.icon.HippoIconStack.Position
-
- All Implemented Interfaces:
Serializable
,Comparable<HippoIconStack.Position>
- Enclosing class:
- HippoIconStack
public static enum HippoIconStack.Position extends Enum<HippoIconStack.Position>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOTTOM_CENTER
BOTTOM_LEFT
BOTTOM_RIGHT
CENTER
CENTER_LEFT
CENTER_RIGHT
TOP_CENTER
TOP_LEFT
TOP_RIGHT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HippoIconStack.Position
valueOf(String name)
Returns the enum constant of this type with the specified name.static HippoIconStack.Position[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOP_LEFT
public static final HippoIconStack.Position TOP_LEFT
-
TOP_CENTER
public static final HippoIconStack.Position TOP_CENTER
-
TOP_RIGHT
public static final HippoIconStack.Position TOP_RIGHT
-
CENTER_LEFT
public static final HippoIconStack.Position CENTER_LEFT
-
CENTER
public static final HippoIconStack.Position CENTER
-
CENTER_RIGHT
public static final HippoIconStack.Position CENTER_RIGHT
-
BOTTOM_LEFT
public static final HippoIconStack.Position BOTTOM_LEFT
-
BOTTOM_CENTER
public static final HippoIconStack.Position BOTTOM_CENTER
-
BOTTOM_RIGHT
public static final HippoIconStack.Position BOTTOM_RIGHT
-
-
Method Detail
-
values
public static HippoIconStack.Position[] 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 (HippoIconStack.Position c : HippoIconStack.Position.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HippoIconStack.Position 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
-
-