You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Check if this ontology has full-text search enabled.
101
+
* <p>
102
+
* This is necessary for finding term using full-text queries. If enabled, an index will be generated in during
103
+
* initialization by {@link #initialize(boolean, boolean)}.
104
+
* <p>
105
+
* Search is enabled by default.
106
+
* @see #findTerm(String, boolean)
107
+
* @see #findIndividuals(String, boolean)
108
+
* @see #findResources(String, boolean)
109
+
*/
77
110
booleanisSearchEnabled();
78
111
112
+
/**
113
+
* Enable or disable search for this ontology.
114
+
* <p>
115
+
* Changes are only applicable if the service is re-initialized.
116
+
*/
79
117
voidsetSearchEnabled( booleansearchEnabled );
80
118
119
+
/**
120
+
* Obtain the URIs used as additional properties when inferring parents and children.
121
+
* <p>
122
+
* The default is to use <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a>, <a href="http://www.obofoundry.org/ro/ro.owl#proper_part_of">proper part of</a>
123
+
* and all of their sub-properties if inference is enabled.
0 commit comments