public static final class Ontology.Impl extends AbstractChangeable implements Ontology, Serializable
Ontology.Impl
Constructor and Description |
---|
Ontology.Impl(String name,
String description) |
Modifier and Type | Method and Description |
---|---|
boolean |
containsTerm(String name)
Determines if this ontology currently contains a term named
name |
boolean |
containsTriple(Term subject,
Term object,
Term predicate)
See if a triple exists in this ontology
|
OntologyTerm |
createOntologyTerm(Ontology o) |
Term |
createTerm(String name)
Create a new term in this ontology.
|
Term |
createTerm(String name,
String description)
Create a new term in this ontology.
|
Term |
createTerm(String name,
String description,
Object[] synonyms)
Create a new term in this ontology.
|
Triple |
createTriple(Term subject,
Term object,
Term predicate,
String name,
String description)
Creates a new Triple.
|
Variable |
createVariable(String name,
String description)
Create a new term in this ontology that is used as a variable.
|
void |
deleteTerm(Term t)
Remove a term from an ontology, together with all triples which refer to it.
|
String |
getDescription()
Return a human-readable description of this ontology, or the empty
string if none is available
|
String |
getName()
Return the name of this ontology
|
OntologyOps |
getOps()
Return the associated OntologyOps.
|
Term |
getTerm(String name)
Fetch the term with the specified name.
|
Set<Term> |
getTerms()
Return all the terms in this ontology
|
Set<Triple> |
getTriples(Term subject,
Term object,
Term predicate)
Return all triples from this ontology which match the supplied
pattern.
|
Term |
importTerm(Term t,
String name)
Create a view of a term from another ontology.
|
void |
setDescription(String description)
set the description of this ontology
|
void |
setName(String name)
Set the name for this ontology
|
String |
toString() |
addChangeListener, addChangeListener, generateChangeSupport, getChangeSupport, hasListeners, hasListeners, isUnchanging, removeChangeListener, removeChangeListener
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
addChangeListener, addChangeListener, isUnchanging, removeChangeListener, removeChangeListener
public Ontology.Impl(String name, String description)
public String getName()
Ontology
public String getDescription()
Ontology
getDescription
in interface Ontology
public void setDescription(String description)
Ontology
setDescription
in interface Ontology
public Set<Term> getTerms()
Ontology
public Term getTerm(String name) throws NoSuchElementException
Ontology
getTerm
in interface Ontology
name
- the name of the termname
NoSuchElementException
- if no term exists with that namepublic Set<Triple> getTriples(Term subject, Term object, Term predicate)
Ontology
null
,
they are treated as wildcards.getTriples
in interface Ontology
subject
- The subject to search for, or null
object
- The object to search for, or null
predicate
- The relationship to search for, or null
.public Term createTerm(String name) throws AlreadyExistsException, IllegalArgumentException, ChangeVetoException
Ontology
createTerm
in interface Ontology
name
- The name of the term (must be unique))AlreadyExistsException
- if a term of this name already existsIllegalArgumentException
- if either name
or
description
is null
, or violates
some other constraint of this implementation.ChangeVetoException
public Term createTerm(String name, String description) throws AlreadyExistsException, IllegalArgumentException, ChangeVetoException
Ontology
createTerm
in interface Ontology
name
- The name of the term (must be unique)description
- A human-readable description (may be empty)AlreadyExistsException
- if a term of this name already existsIllegalArgumentException
- if either name
or
description
is null
, or violates
some other constraint of this implementation.ChangeVetoException
public Term createTerm(String name, String description, Object[] synonyms) throws AlreadyExistsException, IllegalArgumentException, ChangeVetoException
Ontology
createTerm
in interface Ontology
name
- The name of the term (must be unique)description
- A human-readable description (may be empty)synonyms
- Some synonyms for this term.AlreadyExistsException
- if a term of this name already existsIllegalArgumentException
- if either name
or
description
is null
, or violates
some other constraint of this implementation.ChangeVetoException
public Variable createVariable(String name, String description) throws AlreadyExistsException, ChangeVetoException, IllegalArgumentException
Ontology
createVariable
in interface Ontology
name
- The name of the term (must be unique)description
- A human-readable description (may be empty)AlreadyExistsException
- if a term of this name already existsChangeVetoException
IllegalArgumentException
- if either name
or
description
is null
, or violates
some other constraint of this implementation.public OntologyTerm createOntologyTerm(Ontology o) throws AlreadyExistsException, ChangeVetoException
public Term importTerm(Term t, String name) throws IllegalArgumentException, ChangeVetoException
Ontology
importTerm
in interface Ontology
t
- the Term to importname
- the local name to import it under, optionally nullIllegalArgumentException
ChangeVetoException
public void deleteTerm(Term t) throws ChangeVetoException
Ontology
deleteTerm
in interface Ontology
ChangeVetoException
public boolean containsTerm(String name)
Ontology
name
containsTerm
in interface Ontology
public boolean containsTriple(Term subject, Term object, Term predicate)
Ontology
containsTriple
in interface Ontology
public Triple createTriple(Term subject, Term object, Term predicate, String name, String description) throws AlreadyExistsException, IllegalArgumentException, ChangeVetoException, NullPointerException, IllegalArgumentException
Ontology
createTriple
in interface Ontology
subject
- the subject Termobject
- the object Termpredicate
- the predicate Termname
- the name of the triple, or nulldescription
- the description of the triple, or nullAlreadyExistsException
- if a triple already exists with the same
subject, object and predicate, regardless of the name and descriptionIllegalArgumentException
- if subject, object or predicate are not all
from the same ontologyChangeVetoException
NullPointerException
- if subject, object or predicate are nullpublic OntologyOps getOps()
Ontology
Copyright © 2014 BioJava. All rights reserved.