Enum PopOver.ArrowLocation

java.lang.Object
java.lang.Enum<PopOver.ArrowLocation>
com.dlsc.gemsfx.PopOver.ArrowLocation
All Implemented Interfaces:
Serializable, Comparable<PopOver.ArrowLocation>
Enclosing class:
PopOver

public static enum PopOver.ArrowLocation extends Enum<PopOver.ArrowLocation>
Locations where the arrow of the popover can be placed.
  • Enum Constant Details

    • LEFT_TOP

      public static final PopOver.ArrowLocation LEFT_TOP
      Places the arrow on the left side near the top edge.
    • LEFT_CENTER

      public static final PopOver.ArrowLocation LEFT_CENTER
      Places the arrow centered on the left side.
    • LEFT_BOTTOM

      public static final PopOver.ArrowLocation LEFT_BOTTOM
      Places the arrow on the left side near the bottom edge.
    • RIGHT_TOP

      public static final PopOver.ArrowLocation RIGHT_TOP
      Places the arrow on the right side near the top edge.
    • RIGHT_CENTER

      public static final PopOver.ArrowLocation RIGHT_CENTER
      Places the arrow centered on the right side.
    • RIGHT_BOTTOM

      public static final PopOver.ArrowLocation RIGHT_BOTTOM
      Places the arrow on the right side near the bottom edge.
    • TOP_LEFT

      public static final PopOver.ArrowLocation TOP_LEFT
      Places the arrow on the top side near the left edge.
    • TOP_CENTER

      public static final PopOver.ArrowLocation TOP_CENTER
      Places the arrow centered on the top side.
    • TOP_RIGHT

      public static final PopOver.ArrowLocation TOP_RIGHT
      Places the arrow on the top side near the right edge.
    • BOTTOM_LEFT

      public static final PopOver.ArrowLocation BOTTOM_LEFT
      Places the arrow on the bottom side near the left edge.
    • BOTTOM_CENTER

      public static final PopOver.ArrowLocation BOTTOM_CENTER
      Places the arrow centered on the bottom side.
    • BOTTOM_RIGHT

      public static final PopOver.ArrowLocation BOTTOM_RIGHT
      Places the arrow on the bottom side near the right edge.
  • Method Details

    • values

      public static PopOver.ArrowLocation[] 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

      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 name
      NullPointerException - if the argument is null