com.hp.hpl.jena.ontology

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » RSS RDF » Jena 2.5.5 » com.hp.hpl.jena.ontology 
com.hp.hpl.jena.ontology
Package documentation for com.hp.hpl.jena.ontology

Provides a set of abstractions and convenience classes for accessing and manipluating ontologies represented in RDF. The two prevalent ontology languages based on RDF are OWL and DAML+OIL. Since these two languages are similar, this package attempts to present a common set of abstractions, parameterised by vocabularies fot the different languages.

Note: this package primarily seeks to provide easy programmatic access to the terms in the ontologies. The ontology languages have well-defined semantics that provide entailment rules for triples not directly asserted by the ontology. By and large, an inference engine is needed to access these entailed triples, for which several options and an open architecture are provided elsewhere in Jena.

Java Source File NameTypeComment
AllDifferent.javaInterface

Interface defining an individual in which all members of a collection are declared pair-wise disjoint.

AllValuesFromRestriction.javaInterface

A property restriction that requires the named property to have have any range instances to be members of a given class.

AnnotationProperty.javaInterface

Interface that represents the category of annotation properties in an ontology language.

BooleanClassDescription.javaInterface

Encapsulates a class description formed from a boolean combination of other class descriptions (ie union, intersection or complement).

CardinalityQRestriction.javaInterface

Interface representing the ontology abstraction for a qualified cardinality restriction.

CardinalityRestriction.javaInterface

A property restriction that requires the named property to have have exactly the given number of values for a given instance to be a member of the class defined by the restriction.

ComplementClass.javaInterface
ConversionException.javaClass

Exception that is thrown when an ontology resource is converted to another facet, using com.hp.hpl.jena.rdf.model.RDFNode.as as() , and the requested conversion is not possible.

DataRange.javaInterface

Represents an ontology DataRange: a class-like construct that contains only concrete data literals.

DatatypeProperty.javaInterface

Interface that encapsulates the class of properties whose range values are datatype values (as distinct from ObjectProperty whose values are individuals).

EnumeratedClass.javaInterface

Encapsulates a class description representing a closed enumeration of individuals.

FunctionalProperty.javaInterface

Interface encapsulating the class of properties that are functional: that is, properties in which a given given domain value has a unique value in the range.

HasValueRestriction.javaInterface

A property restriction that requires the named property to have a given individual as its value.

Individual.javaInterface

Interface that encapsulates an individual in an ontology, sometimes referred to as a fact or assertion, or a member of the a-box.

IntersectionClass.javaInterface

Encapsulates a class description that is the intersection of a list of class expressions.

InverseFunctionalProperty.javaInterface

Interface encapsulating the class of properties that are inverse functional: that is, properties in which a given given range value has a unique value in the domain (effectively, a key).

LanguageConsistencyException.javaClass

An exception that denotes some inconsistency between the arguments to a method in the ontology API, and the language definition for a given ontology profile.

MaxCardinalityQRestriction.javaInterface

Interface representing the ontology abstraction for a qualified maximum cardinality restriction.

MaxCardinalityRestriction.javaInterface

A property restriction that requires the named property to have have at most the given number of values for a given instance to be a member of the class defined by the restriction.

MinCardinalityQRestriction.javaInterface

Interface representing the ontology abstraction for a qualified minimum cardinality restriction.

MinCardinalityRestriction.javaInterface

A property restriction that requires the named property to have have at least the given number of values for a given instance to be a member of the class defined by the restriction.

ObjectProperty.javaInterface

Interface encapsulating properties whose range values are restricted to individuals (as distinct from datatype valued DatatypePropertyproperties ).

OntClass.javaInterface

Interface that represents an ontology node characterising a class description.

OntDocumentManager.javaClass

Provides services for managing ontology documents, including loading imported documents, and locally caching documents from resolvable URL's to improve load performance.

OntModel.javaInterface

An enhanced view of a Jena model that is known to contain ontology data, under a given ontology Profile vocabulary (such as OWL). This class does not by itself compute the deductive extension of the graph under the semantic rules of the language.

OntModelSpec.javaClass

Encapsulates a description of the components of an ontology model, including the storage scheme, reasoner and language profile.

Ontology.javaInterface

Interface encapsulating the distinguished instance in a given ontology document that presents meta-data and other processing data about the document (including which other documents are imported by a document).

OntologyException.javaClass
OntProperty.javaInterface

Interface encapsulating a property in an ontology.

OntResource.javaInterface

Provides a common super-type for all of the abstractions in this ontology representation package.

OntTools.javaClass

Some general utilities and algorithms to support developers working with the general classes in the Jena ontology API.

OWLSyntaxChecker.javaInterface This interface is currently part of SPI, not the API. This means that the methods in it may be changed as part of the Jena development process without deprecation etc.
Profile.javaInterface

Interface that encapsulates the elements of a general vocabulary corresponding to a particular ontology language.

ProfileException.javaClass

Exception that is raised when an ontology operation is attempted that is not present in the language profile for the current ontology model.

ProfileRegistry.javaClass

Provides a means to map between the URI's that represent ontology languages and their language profiles.

QualifiedRestriction.javaInterface

Represents a qualified restriction, in which all values of the restricted property are required to be members of a given class.

Restriction.javaInterface

Interface that encapsulates a class description formed by restricting one or more properties to have constrained values and/or cardinalities.

SomeValuesFromRestriction.javaInterface

A property restriction that requires the named property to have at least one range instance belonging to the given class.

SymmetricProperty.javaInterface

Interface that encapsulates a property that is symmetric, i.e. one in which if p(x, y) holds, thenp(y, x) must also hold.

TransitiveProperty.javaInterface

Interface that encapsulates an property that is transitive i.e. one in which if p(x, y) holds, and p(x, z) holds, then p(x, z) must also hold.

UnionClass.javaInterface

Class description that is formed from the union of a list of a class descriptions.

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.