E - the type of entities in the nodepublic abstract class DefaultNode<E extends OWLObject> extends Object implements Node<E>
| Modifier and Type | Field and Description |
|---|---|
protected static OWLClass |
BOTTOM_CLASS |
protected static OWLDataPropertyNode |
BOTTOM_DATA_NODE |
protected static OWLDataProperty |
BOTTOM_DATA_PROPERTY |
protected static OWLClassNode |
BOTTOM_NODE |
protected static OWLObjectPropertyNode |
BOTTOM_OBJECT_NODE |
protected static OWLObjectProperty |
BOTTOM_OBJECT_PROPERTY |
protected static OWLClass |
TOP_CLASS |
protected static OWLDataPropertyNode |
TOP_DATA_NODE |
protected static OWLDataProperty |
TOP_DATA_PROPERTY |
protected static OWLDatatype |
TOP_DATATYPE |
protected static OWLClassNode |
TOP_NODE |
protected static OWLObjectPropertyNode |
TOP_OBJECT_NODE |
protected static OWLObjectProperty |
TOP_OBJECT_PROPERTY |
| Modifier | Constructor and Description |
|---|---|
protected |
DefaultNode() |
|
DefaultNode(E entity) |
|
DefaultNode(Set<E> entities) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(E entity) |
boolean |
contains(E entity)
Determines if this node contains the specified entity.
|
boolean |
equals(Object obj) |
protected abstract E |
getBottomEntity() |
Set<E> |
getEntities()
Gets the entities contained in this node.
|
Set<E> |
getEntitiesMinus(E E)
Gets the entities contained in this node minus the specified entitie
e. |
Set<E> |
getEntitiesMinusBottom()
Gets the entities contained in this node minus the bottom entity.
|
Set<E> |
getEntitiesMinusTop()
Gets the entities contained in this node minus the top entity.
|
E |
getRepresentativeElement()
Gets one of the entities contained in this entity set.
|
int |
getSize()
Gets the number of entities contained in this
Node. |
protected abstract E |
getTopEntity() |
int |
hashCode() |
boolean |
isBottomNode()
Determines if this node represents the bottom node (in a hierarchy).
|
boolean |
isSingleton()
Determines if this
Node contains just one entity. |
boolean |
isTopNode()
Determines if this node represents the top node (in a hierarchy).
|
Iterator<E> |
iterator() |
String |
toString() |
protected static final OWLClass TOP_CLASS
protected static final OWLClassNode TOP_NODE
protected static final OWLClass BOTTOM_CLASS
protected static final OWLClassNode BOTTOM_NODE
protected static final OWLDataProperty TOP_DATA_PROPERTY
protected static final OWLDataPropertyNode TOP_DATA_NODE
protected static final OWLDataProperty BOTTOM_DATA_PROPERTY
protected static final OWLDataPropertyNode BOTTOM_DATA_NODE
protected static final OWLDatatype TOP_DATATYPE
protected static final OWLObjectProperty TOP_OBJECT_PROPERTY
protected static final OWLObjectPropertyNode TOP_OBJECT_NODE
protected static final OWLObjectProperty BOTTOM_OBJECT_PROPERTY
protected static final OWLObjectPropertyNode BOTTOM_OBJECT_NODE
public DefaultNode(E entity)
entity - the entity to addprotected DefaultNode()
protected abstract E getTopEntity()
protected abstract E getBottomEntity()
public void add(E entity)
entity - entity to be addedpublic boolean isTopNode()
Nodeowl:Thing. For an object property node, the top node is the node
that contains owl:topObjectProperty. For a data property node, the
top node is the node that contains owl:topDataPropertyisTopNode in interface Node<E extends OWLObject>true if this node is an OWLClass node and it
contains owl:Thing. true if this node is an OWLObjectProperty node
and it contains owl:topObjectProperty. true if this node is an OWLDataProperty node and
it contains owl:topDataProperty. false if none of the above.public boolean isBottomNode()
Nodeowl:Nothing. For an object property node, the bottom node is the
node that contains owl:bottomObjectProperty. For a data property
node, the bottom node is the node that contains
owl:bottomDataPropertyisBottomNode in interface Node<E extends OWLObject>true if this node is an OWLClass node and it
contains owl:Nothing. true if this node is an OWLObjectProperty node
and it contains owl:bottomObjectProperty. true if this node is an OWLDataProperty node and
it contains owl:bottomDataProperty. false if none of the above.public Set<E> getEntities()
NodegetEntities in interface Node<E extends OWLObject>Node.public int getSize()
NodeNode.public boolean contains(E entity)
Nodepublic Set<E> getEntitiesMinus(E E)
Nodee. This essentially returns the entities that are returned by
Node.getEntities() minus the specified entity egetEntitiesMinus in interface Node<E extends OWLObject>E - The entity that, is contained within this node, but should not
be included in the return set.e. If e is not contained within
this node then the full set of entities returned is the same as
that returned by Node.getEntities()public Set<E> getEntitiesMinusTop()
Nodeowl:Thing. For a node of object
properties the top entity is owl:topObjectProperty. For a node of
data properties the top entity is owl:topDataPropertygetEntitiesMinusTop in interface Node<E extends OWLObject>Node.getEntities().public Set<E> getEntitiesMinusBottom()
Nodeowl:Nothing. For a node
of object properties the bottom entity is
owl:bottomObjectProperty. For a node of data properties the bottom
entity is owl:bottomDataPropertygetEntitiesMinusBottom in interface Node<E extends OWLObject>Node.getEntities().public boolean isSingleton()
NodeNode contains just one entity.isSingleton in interface Node<E extends OWLObject>true if this Node contains just one entity,
otherwise falsepublic E getRepresentativeElement()
NodegetRepresentativeElement in interface Node<E extends OWLObject>Copyright © 2014 The University of Manchester. All Rights Reserved.