public static enum GraphicsBase.LassoSelectionBehaviour extends Enum<GraphicsBase.LassoSelectionBehaviour>
GraphicsBase.setLassoSelectionBehaviour(LassoSelectionBehaviour)
Enum Constant and Description |
---|
BOUNDS_CONTAINMENT
A value indicating to the lasso selection that the bounds of an
activity need to be completely contained within the bounds of the
lasso in order for the activity to become selected.
|
INTERSECTION
A value indicating to the lasso selection that a simple intersection
of the bounds of an activity with the bounds of the lasso is
sufficient for the selection of the activity.
|
TIME_INTERVAL_CONTAINMENT
A value indicating to the lasso selection that the time interval of
an activity has to be completely contained within the time interval
defined by the lasso in order for the activity to become selected.
|
Modifier and Type | Method and Description |
---|---|
static GraphicsBase.LassoSelectionBehaviour |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphicsBase.LassoSelectionBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphicsBase.LassoSelectionBehaviour INTERSECTION
public static final GraphicsBase.LassoSelectionBehaviour TIME_INTERVAL_CONTAINMENT
public static final GraphicsBase.LassoSelectionBehaviour BOUNDS_CONTAINMENT
public static GraphicsBase.LassoSelectionBehaviour[] values()
for (GraphicsBase.LassoSelectionBehaviour c : GraphicsBase.LassoSelectionBehaviour.values()) System.out.println(c);
public static GraphicsBase.LassoSelectionBehaviour 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 © 2014 Dirk Lemmermann Software & Consulting. All rights reserved.