Package | Description |
---|---|
org.jamplate.model |
A package that specifies that primary components of a processor that uses the
jamplate-style processing.
|
Modifier and Type | Method and Description |
---|---|
static @Nullable Relation |
Relation.compute(int i,
int j,
int s,
int e)
Calculate the direction from the area
[i, j) to the area [s, e) . |
static @Nullable Relation |
Relation.compute(@NotNull Reference reference,
int s,
int e)
Calculate the direction from the given
reference to the area [s,
e) . |
static @Nullable Relation |
Relation.compute(@NotNull Reference reference,
@NotNull Reference other)
Calculate the direction from the given
reference to the other . |
static @Nullable Relation |
Relation.compute(@NotNull Tree tree,
int s,
int e)
Calculate the direction from the given
sketch to the area [s, e) . |
static @Nullable Relation |
Relation.compute(@NotNull Tree tree,
@NotNull Reference other)
Calculate the direction from the given
sketch to the other . |
static @Nullable Relation |
Relation.compute(@NotNull Tree tree,
@NotNull Tree other)
Calculate the direction from the given
sketch to the other . |
abstract @NotNull Relation |
Relation.opposite()
The opposite direction of this direction.
|
@Nullable Relation |
Intersection.relation()
Returns the relation from this the opposite intersection to this intersection.
|
static Relation |
Relation.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Relation[] |
Relation.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|