public enum HitTestPriority extends java.lang.Enum<HitTestPriority>
setHitTestPriority
method.Enum Constant and Description |
---|
NodesBeforeLinks
Test nodes first, then links.
|
ZOrder
Test items in decreasing Z order, independently of their types.
|
Modifier and Type | Method and Description |
---|---|
static HitTestPriority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HitTestPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HitTestPriority ZOrder
public static final HitTestPriority NodesBeforeLinks
public static HitTestPriority[] values()
for (HitTestPriority c : HitTestPriority.values()) System.out.println(c);
public static HitTestPriority 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