- java.lang.Object
-
- java.lang.Enum<PopOver.ArrowLocation>
-
- org.controlsfx.control.PopOver.ArrowLocation
-
- All Implemented Interfaces:
Serializable,Comparable<PopOver.ArrowLocation>
- Enclosing class:
- PopOver
public static enum PopOver.ArrowLocation extends Enum<PopOver.ArrowLocation>
All possible arrow locations.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOTTOM_CENTERBOTTOM_LEFTBOTTOM_RIGHTLEFT_BOTTOMLEFT_CENTERLEFT_TOPRIGHT_BOTTOMRIGHT_CENTERRIGHT_TOPTOP_CENTERTOP_LEFTTOP_RIGHT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PopOver.ArrowLocationvalueOf(String name)Returns 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 Detail
-
LEFT_TOP
public static final PopOver.ArrowLocation LEFT_TOP
-
LEFT_CENTER
public static final PopOver.ArrowLocation LEFT_CENTER
-
LEFT_BOTTOM
public static final PopOver.ArrowLocation LEFT_BOTTOM
-
RIGHT_TOP
public static final PopOver.ArrowLocation RIGHT_TOP
-
RIGHT_CENTER
public static final PopOver.ArrowLocation RIGHT_CENTER
-
RIGHT_BOTTOM
public static final PopOver.ArrowLocation RIGHT_BOTTOM
-
TOP_LEFT
public static final PopOver.ArrowLocation TOP_LEFT
-
TOP_CENTER
public static final PopOver.ArrowLocation TOP_CENTER
-
TOP_RIGHT
public static final PopOver.ArrowLocation TOP_RIGHT
-
BOTTOM_LEFT
public static final PopOver.ArrowLocation BOTTOM_LEFT
-
BOTTOM_CENTER
public static final PopOver.ArrowLocation BOTTOM_CENTER
-
BOTTOM_RIGHT
public static final PopOver.ArrowLocation BOTTOM_RIGHT
-
-
Method Detail
-
values
public static PopOver.ArrowLocation[] 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 (PopOver.ArrowLocation c : PopOver.ArrowLocation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PopOver.ArrowLocation 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
-
-