public static enum Overlay.OverlayPriority extends java.lang.Enum<Overlay.OverlayPriority>
Lowest | BACKGROUND (below image) | IMAGE (image level) | SHAPE (just over the image) | TEXT (over image and shape) | TOOLTIP (all over the rest) Highest | TOPMOST (absolute topmost)You have 4 levels for each category (except TOPMOST) for finest adjustment:
Lowest | LOW | NORMAL | HIGH Highest | TOPTOP level should be used to give focus to a specific Overlay over all other in the same category.
Enum Constant and Description |
---|
BACKGROUND_HIGH |
BACKGROUND_LOW |
BACKGROUND_NORMAL |
BACKGROUND_TOP |
IMAGE_HIGH |
IMAGE_LOW |
IMAGE_NORMAL |
IMAGE_TOP |
SHAPE_HIGH |
SHAPE_LOW |
SHAPE_NORMAL |
SHAPE_TOP |
TEXT_HIGH |
TEXT_LOW |
TEXT_NORMAL |
TEXT_TOP |
TOOLTIP_HIGH |
TOOLTIP_LOW |
TOOLTIP_NORMAL |
TOOLTIP_TOP |
TOPMOST |
Modifier and Type | Method and Description |
---|---|
static Overlay.OverlayPriority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Overlay.OverlayPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Overlay.OverlayPriority BACKGROUND_LOW
public static final Overlay.OverlayPriority BACKGROUND_NORMAL
public static final Overlay.OverlayPriority BACKGROUND_HIGH
public static final Overlay.OverlayPriority BACKGROUND_TOP
public static final Overlay.OverlayPriority IMAGE_LOW
public static final Overlay.OverlayPriority IMAGE_NORMAL
public static final Overlay.OverlayPriority IMAGE_HIGH
public static final Overlay.OverlayPriority IMAGE_TOP
public static final Overlay.OverlayPriority SHAPE_LOW
public static final Overlay.OverlayPriority SHAPE_NORMAL
public static final Overlay.OverlayPriority SHAPE_HIGH
public static final Overlay.OverlayPriority SHAPE_TOP
public static final Overlay.OverlayPriority TEXT_LOW
public static final Overlay.OverlayPriority TEXT_NORMAL
public static final Overlay.OverlayPriority TEXT_HIGH
public static final Overlay.OverlayPriority TEXT_TOP
public static final Overlay.OverlayPriority TOOLTIP_LOW
public static final Overlay.OverlayPriority TOOLTIP_NORMAL
public static final Overlay.OverlayPriority TOOLTIP_HIGH
public static final Overlay.OverlayPriority TOOLTIP_TOP
public static final Overlay.OverlayPriority TOPMOST
public static Overlay.OverlayPriority[] values()
for (Overlay.OverlayPriority c : Overlay.OverlayPriority.values()) System.out.println(c);
public static Overlay.OverlayPriority valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null