com.clarkparsia.owlapi.modularity.locality
Enum LocalityClass

java.lang.Object
  extended by java.lang.Enum<LocalityClass>
      extended by com.clarkparsia.owlapi.modularity.locality.LocalityClass
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LocalityClass>

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

Title: Locality Class Enumeration

Description: Recognized set of locality classes

Copyright: Copyright (c) 2008

Company: Clark & Parsia, LLC.

Author:
Mike Smith

Enum Constant Summary
BOTTOM_BOTTOM
          Locality class obtained when concepts and roles not present in the signature are given empty interpretations.
TOP_BOTTOM
          Locality class obtained when concepts not present in the signature are given top concept interpretation, roles not present are given empty interpretation.
TOP_TOP
          Locality class obtained when concepts not present in the signature are given top concept interpretation, roles not present are universal role interpretation.
 
Method Summary
static LocalityClass valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LocalityClass[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BOTTOM_BOTTOM

public static final LocalityClass BOTTOM_BOTTOM
Locality class obtained when concepts and roles not present in the signature are given empty interpretations. In the literature, ^{r \leftarrow \emptyset}_{A \leftarrow \emptyset}


TOP_BOTTOM

public static final LocalityClass TOP_BOTTOM
Locality class obtained when concepts not present in the signature are given top concept interpretation, roles not present are given empty interpretation. In the literature, ^{r \leftarrow \emptyset}_{A \leftarrow \Delta}


TOP_TOP

public static final LocalityClass TOP_TOP
Locality class obtained when concepts not present in the signature are given top concept interpretation, roles not present are universal role interpretation. In the literature, ^{r \leftarrow \Delta \times \Delta}_{A \leftarrow \Delta}

Method Detail

values

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

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

valueOf

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