public static enum PathCalculator.TargetLocation extends Enum<PathCalculator.TargetLocation>
ABOVE_LEFT
.Enum Constant and Description |
---|
ABOVE
A enumerator value indicating that the target object is located in a
row above the source object and that the x-coordinate of its start
time is equal to the x-coordinate of the end time of the source
object.
|
ABOVE_LEFT
A enumerator value indicating that the target object is located in a
row above the source object and that the x-coordinate of its start
time is smaller than the x-coordinate of the end time of the source
object.
|
ABOVE_RIGHT
A enumerator value indicating that the target object is located in a
row above the source object and that the x-coordinate of its start
time is larger than the x-coordinate of the end time of the source
object.
|
BELOW
A enumerator value indicating that the target object is located in a
row below the source object and that the x-coordinate of its start
time is equal to the x-coordinate of the end time of the source
object.
|
BELOW_LEFT
A enumerator value indicating that the target object is located in a
row below the source object and that the x-coordinate of its start
time is smaller than the x-coordinate of the end time of the source
object.
|
BELOW_RIGHT
A enumerator value indicating that the target object is located in a
row below the source object and that the x-coordinate of its start
time is larger than the x-coordinate of the end time of the source
object.
|
LEFT
A enumerator value indicating that the target object is located in
the same row as the source object and that the x-coordinate of its
start time is smaller than the x-coordinate of the end time of the
source object.
|
RIGHT
A enumerator value indicating that the target object is located in
the same row as the source object and that the x-coordinate of its
start time is larger than the x-coordinate of the end time of the
source object.
|
SAME_LOCATION
A enumerator value indicating that the target object is located in
the same row as the source object and that the x-coordinate of its
start time is equal to the x-coordinate of the end time of the source
object.
|
Modifier and Type | Method and Description |
---|---|
static PathCalculator.TargetLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathCalculator.TargetLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathCalculator.TargetLocation BELOW_RIGHT
public static final PathCalculator.TargetLocation BELOW
public static final PathCalculator.TargetLocation BELOW_LEFT
public static final PathCalculator.TargetLocation ABOVE_RIGHT
public static final PathCalculator.TargetLocation ABOVE
public static final PathCalculator.TargetLocation ABOVE_LEFT
public static final PathCalculator.TargetLocation LEFT
public static final PathCalculator.TargetLocation RIGHT
public static final PathCalculator.TargetLocation SAME_LOCATION
public static PathCalculator.TargetLocation[] values()
for (PathCalculator.TargetLocation c : PathCalculator.TargetLocation.values()) System.out.println(c);
public static PathCalculator.TargetLocation 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.