Enum PopOver.ArrowLocation
- All Implemented Interfaces:
Serializable, Comparable<PopOver.ArrowLocation>
- Enclosing class:
PopOver
Locations where the arrow of the popover can be placed.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPlaces the arrow centered on the bottom side.Places the arrow on the bottom side near the left edge.Places the arrow on the bottom side near the right edge.Places the arrow on the left side near the bottom edge.Places the arrow centered on the left side.Places the arrow on the left side near the top edge.Places the arrow on the right side near the bottom edge.Places the arrow centered on the right side.Places the arrow on the right side near the top edge.Places the arrow centered on the top side.Places the arrow on the top side near the left edge.Places the arrow on the top side near the right edge. -
Method Summary
Modifier and TypeMethodDescriptionstatic PopOver.ArrowLocationReturns the enum constant of this type with the specified name.static PopOver.ArrowLocation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
LEFT_TOP
Places the arrow on the left side near the top edge. -
LEFT_CENTER
Places the arrow centered on the left side. -
LEFT_BOTTOM
Places the arrow on the left side near the bottom edge. -
RIGHT_TOP
Places the arrow on the right side near the top edge. -
RIGHT_CENTER
Places the arrow centered on the right side. -
RIGHT_BOTTOM
Places the arrow on the right side near the bottom edge. -
TOP_LEFT
Places the arrow on the top side near the left edge. -
TOP_CENTER
Places the arrow centered on the top side. -
TOP_RIGHT
Places the arrow on the top side near the right edge. -
BOTTOM_LEFT
Places the arrow on the bottom side near the left edge. -
BOTTOM_CENTER
Places the arrow centered on the bottom side. -
BOTTOM_RIGHT
Places the arrow on the bottom side near the right edge.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-