com.clarkparsia.pellet.datatypes
Enum IntervalRelations

java.lang.Object
  extended by java.lang.Enum<IntervalRelations>
      extended by com.clarkparsia.pellet.datatypes.IntervalRelations
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IntervalRelations>

public enum IntervalRelations
extends java.lang.Enum<IntervalRelations>

Title: Interval Relations

Description: Allen Interval Relations

Copyright: Copyright (c) 2009

Company: Clark & Parsia, LLC.

Author:
Mike Smith

Enum Constant Summary
CONTAINS
           
DURING
           
EQUALS
           
FINISHED_BY
           
FINISHES
           
MEETS
           
MET_BY
           
OVERLAPPED_BY
           
OVERLAPS
           
PRECEDED_BY
           
PRECEDES
           
STARTED_BY
           
STARTS
           
 
Method Summary
static IntervalRelations valueOf(java.lang.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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONTAINS

public static final IntervalRelations CONTAINS

DURING

public static final IntervalRelations DURING

EQUALS

public static final IntervalRelations EQUALS

FINISHED_BY

public static final IntervalRelations FINISHED_BY

FINISHES

public static final IntervalRelations FINISHES

MEETS

public static final IntervalRelations MEETS

MET_BY

public static final IntervalRelations MET_BY

OVERLAPPED_BY

public static final IntervalRelations OVERLAPPED_BY

OVERLAPS

public static final IntervalRelations OVERLAPS

PRECEDED_BY

public static final IntervalRelations PRECEDED_BY

PRECEDES

public static final IntervalRelations PRECEDES

STARTED_BY

public static final IntervalRelations STARTED_BY

STARTS

public static final IntervalRelations STARTS
Method Detail

values

public static IntervalRelations[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (IntervalRelations c : IntervalRelations.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static IntervalRelations valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2004 Evren Sirin. All Rights Reserved.