|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||
java.lang.Objectjava.lang.Enum<Algebra.Relation>
com.numericalmethod.suanshu.interval.Algebra.Relation
public static enum Algebra.Relation
| Enum Constant Summary | |
|---|---|
AFTER
X takes place after Y |
|
BEFORE
X takes place before Y |
|
DURING
X during Y |
|
DURING_INVERSE
Y during X |
|
EQUAL
X is equal to Y |
|
FINISH
X finishes Y |
|
FINISH_INVERSE
Y finishes X |
|
MEET
X meets Y |
|
MEET_INVERSE
Y meets X |
|
OVERLAP
X overlaps with Y |
|
OVERLAP_INVERSE
Y overlaps with X |
|
START
X starts Y |
|
START_INVERSE
Y starts X |
|
| Method Summary | ||
|---|---|---|
abstract
|
isRelationBetween(Interval<T> x,
Interval<T> y)
Check if x and y satisfy a certain relation. |
|
static Algebra.Relation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
|
static Algebra.Relation[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
|
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Algebra.Relation BEFORE
public static final Algebra.Relation AFTER
public static final Algebra.Relation MEET
public static final Algebra.Relation MEET_INVERSE
public static final Algebra.Relation OVERLAP
public static final Algebra.Relation OVERLAP_INVERSE
public static final Algebra.Relation START
public static final Algebra.Relation START_INVERSE
public static final Algebra.Relation DURING
public static final Algebra.Relation DURING_INVERSE
public static final Algebra.Relation FINISH
public static final Algebra.Relation FINISH_INVERSE
public static final Algebra.Relation EQUAL
| Method Detail |
|---|
public static Algebra.Relation[] values()
for (Algebra.Relation c : Algebra.Relation.values()) System.out.println(c);
public static Algebra.Relation valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
public abstract <T extends java.lang.Comparable<T>> boolean isRelationBetween(Interval<T> x,
Interval<T> y)
x and y satisfy a certain relation.
T - a Comparable typex - an intervaly - another interval
x and y satisfy the relation
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||