public static enum LassoLayer.SelectionBehaviour extends Enum<LassoLayer.SelectionBehaviour>
Enum Constant and Description |
---|
BOUNDS_CONTAINMENT
A value indicating to the lasso layer that the bounds of a timeline
object need to be completely contained within the bounds of the lasso
in order for the timeline object to become selected.
|
INTERSECTION
A value indicating to the lasso layer that a simple intersection of
the bounds of a timeline object with the bounds of the lasso is
sufficient for the selection of the timeline object.
|
TIME_SPAN_CONTAINMENT
A value indicating to the lasso layer that the time span of a
timeline object needs to be completely contained within the time span
defined by the lasso in order for the timeline object to become
selected.
|
Modifier and Type | Method and Description |
---|---|
static LassoLayer.SelectionBehaviour |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LassoLayer.SelectionBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LassoLayer.SelectionBehaviour INTERSECTION
public static final LassoLayer.SelectionBehaviour TIME_SPAN_CONTAINMENT
public static final LassoLayer.SelectionBehaviour BOUNDS_CONTAINMENT
public static LassoLayer.SelectionBehaviour[] values()
for (LassoLayer.SelectionBehaviour c : LassoLayer.SelectionBehaviour.values()) System.out.println(c);
public static LassoLayer.SelectionBehaviour valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.