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 @NotNull Intersection |
Intersection.compute(int i,
int j,
int s,
int e)
Calculate what is the intersection between the areas
[i, j) and [s,
e) . |
static @NotNull Intersection |
Intersection.compute(@NotNull Reference reference,
int s,
int e)
Calculate what is the intersection between the given
reference and the
given area [s, e) . |
static @NotNull Intersection |
Intersection.compute(@NotNull Reference reference,
@NotNull Reference other)
Calculate the intersection between the references
reference and other . |
static @NotNull Intersection |
Intersection.compute(@NotNull Tree tree,
int s,
int e)
Calculate what is the intersection between the given
sketch and the given
area [s, e) . |
static @NotNull Intersection |
Intersection.compute(@NotNull Tree tree,
@NotNull Reference other)
Calculate the intersection between the sketches
sketch and other . |
static @NotNull Intersection |
Intersection.compute(@NotNull Tree tree,
@NotNull Tree other)
Calculate the intersection between the sketches
sketch and other . |
abstract @NotNull Intersection |
Intersection.opposite()
Get the opposite intersection of this intersection.
|
static Intersection |
Intersection.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Intersection[] |
Intersection.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|