public enum IntervalRelations extends Enum<IntervalRelations>
Title: Interval Relations
Description: Allen Interval Relations
Copyright: Copyright (c) 2009
Company: Clark & Parsia, LLC.
| Enum Constant and Description |
|---|
CONTAINS |
DURING |
EQUALS |
FINISHED_BY |
FINISHES |
MEETS |
MET_BY |
OVERLAPPED_BY |
OVERLAPS |
PRECEDED_BY |
PRECEDES |
STARTED_BY |
STARTS |
| Modifier and Type | Method and Description |
|---|---|
static IntervalRelations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntervalRelations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntervalRelations CONTAINS
public static final IntervalRelations DURING
public static final IntervalRelations EQUALS
public static final IntervalRelations FINISHED_BY
public static final IntervalRelations FINISHES
public static final IntervalRelations MEETS
public static final IntervalRelations MET_BY
public static final IntervalRelations OVERLAPPED_BY
public static final IntervalRelations OVERLAPS
public static final IntervalRelations PRECEDED_BY
public static final IntervalRelations PRECEDES
public static final IntervalRelations STARTED_BY
public static final IntervalRelations STARTS
public static IntervalRelations[] values()
for (IntervalRelations c : IntervalRelations.values()) System.out.println(c);
public static IntervalRelations 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 © 2019. All rights reserved.