Github user afs commented on a diff in the pull request:
https://github.com/apache/jena/pull/436#discussion_r195399760
--- Diff:
jena-text/src/main/java/org/apache/jena/query/text/assembler/TextVocab.java ---
@@ -108,6 +108,10 @@
public static final Property pDefTokenizer = Vocab.property(NS,
"defineTokenizer");
public static final Property pAddLang = Vocab.property(NS,
"addLang");
public static final Property pUseAnalyzer = Vocab.property(NS,
"useAnalyzer");
+ public static final Property pSearchFor = Vocab.property(NS,
"searchFor");
+ public static final Property pAuxIndex = Vocab.property(NS,
"auxIndex");
+ public static final Property pIndexAnalyzer = Vocab.property(NS,
"indexAnalyzer");
+ public static final Property indexAnalyzer = Vocab.property(NS,
"IndexAnalyzer");
--- End diff --
Is this meant to be a class? If so, Resource, not Property. If not,
pIndexAnalyzer covers it.
---