Java Code Examples for org.apache.jena.ontology.OntClass#isAnon()
The following examples show how to use
org.apache.jena.ontology.OntClass#isAnon() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ModelStorage.java From FCA-Map with GNU General Public License v3.0 | 4 votes |
private static final boolean isIgnoredOntClass(OntClass c) { return c.isAnon(); }
Example 2
Source File: OntModelWrapper.java From FCA-Map with GNU General Public License v3.0 | 2 votes |
/** * Check whether the class should be skipped * * @param c class * @return true means the class should be ignored */ private static final boolean isSkipClass(OntClass c) { return c.isAnon(); }