org.semanticweb.HermiT.datatypes.owlreal
Enum NumberRange

java.lang.Object
  extended by java.lang.Enum<NumberRange>
      extended by org.semanticweb.HermiT.datatypes.owlreal.NumberRange
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NumberRange>

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


Enum Constant Summary
DECIMAL
           
INTEGER
           
NOTHING
           
RATIONAL
           
REAL
           
 
Method Summary
static NumberRange getMostSpecificRange(java.lang.Number n)
           
static NumberRange intersection(NumberRange it1, NumberRange it2)
           
 boolean isDense()
           
static boolean isSubsetOf(NumberRange subset, NumberRange superset)
           
static NumberRange union(NumberRange it1, NumberRange it2)
           
static NumberRange valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NumberRange[] 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

NOTHING

public static final NumberRange NOTHING

INTEGER

public static final NumberRange INTEGER

DECIMAL

public static final NumberRange DECIMAL

RATIONAL

public static final NumberRange RATIONAL

REAL

public static final NumberRange REAL
Method Detail

values

public static NumberRange[] 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 (NumberRange c : NumberRange.values())
    System.out.println(c);

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

valueOf

public static NumberRange 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

isDense

public boolean isDense()

intersection

public static NumberRange intersection(NumberRange it1,
                                       NumberRange it2)

union

public static NumberRange union(NumberRange it1,
                                NumberRange it2)

isSubsetOf

public static boolean isSubsetOf(NumberRange subset,
                                 NumberRange superset)

getMostSpecificRange

public static NumberRange getMostSpecificRange(java.lang.Number n)