Enum PopupPosition
- java.lang.Object
-
- java.lang.Enum<PopupPosition>
-
- com.hybris.backoffice.widgets.itemcomments.PopupPosition
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PopupPosition>
public enum PopupPosition extends java.lang.Enum<PopupPosition>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTER_END
AFTER_POINTER
AFTER_START
AT_POINTER
BEFORE_END
BEFORE_START
END_AFTER
END_BEFORE
OVERLAP
OVERLAP_AFTER
OVERLAP_BEFORE
OVERLAP_END
START_AFTER
START_BEFORE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PopupPosition
forName(java.lang.String position)
java.lang.String
getPosition()
static PopupPosition
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PopupPosition[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEFORE_START
public static final PopupPosition BEFORE_START
-
BEFORE_END
public static final PopupPosition BEFORE_END
-
END_BEFORE
public static final PopupPosition END_BEFORE
-
END_AFTER
public static final PopupPosition END_AFTER
-
AFTER_END
public static final PopupPosition AFTER_END
-
AFTER_START
public static final PopupPosition AFTER_START
-
START_AFTER
public static final PopupPosition START_AFTER
-
START_BEFORE
public static final PopupPosition START_BEFORE
-
OVERLAP
public static final PopupPosition OVERLAP
-
OVERLAP_END
public static final PopupPosition OVERLAP_END
-
OVERLAP_BEFORE
public static final PopupPosition OVERLAP_BEFORE
-
OVERLAP_AFTER
public static final PopupPosition OVERLAP_AFTER
-
AT_POINTER
public static final PopupPosition AT_POINTER
-
AFTER_POINTER
public static final PopupPosition AFTER_POINTER
-
-
Method Detail
-
values
public static PopupPosition[] 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 (PopupPosition c : PopupPosition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PopupPosition valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getPosition
public java.lang.String getPosition()
-
forName
public static PopupPosition forName(java.lang.String position)
-
-