org.semanticweb.HermiT.datatypes.owlreal
Enum NumberRange
java.lang.Object
java.lang.Enum<NumberRange>
org.semanticweb.HermiT.datatypes.owlreal.NumberRange
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<NumberRange>
public enum NumberRange
- extends java.lang.Enum<NumberRange>
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 |
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
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)