NOTE: Enabling infostreams may cause performance degradation in some components. @lucene.internal
13141516171819
public Complete(int id, String name) { this(id, name, new NoOutput()); } public Complete(int id, String name, int flags) { this(id, name, flags, new NoOutput()); }
22232425262728
public Repeat(int id, Repeats repeats) { this(id, "", repeats); } public Repeat(int id, String name) { this(id, name, new NoOutput()); }
26272829303132
public Repeat(int id, String name) { this(id, name, new NoOutput()); } public Repeat(int id, String name, Repeats repeats) { this(id, name, repeats, new NoOutput()); }
30313233343536
public Repeat(int id, String name, Repeats repeats) { this(id, name, repeats, new NoOutput()); } public Repeat(int id, String name, int flags) { this(id, name, flags, new NoOutput()); }
34353637383940
public Repeat(int id, String name, int flags) { this(id, name, flags, new NoOutput()); } public Repeat(int id, String name, int flags, Repeats repeats) { this(id, name, flags, repeats, new NoOutput()); }
16171819202122
private String name; private Output thisOutput; private ElementOutputList list; public ElementList(int id, String name) { this(id, name, new NoOutput()); }
20212223242526
public ElementList(int id, String name) { this(id, name, new NoOutput()); } public ElementList(int id, String name, int flags) { this(id, name, flags, new NoOutput()); }
33343536373839
this.id = id; this.name = name; this.not = (flags & NOT) > 0; this.caseSensitive = (flags & CASE) == 0 ? null : new Boolean((flags & CS) > 0); this.thisOutput = output; this.list = new ElementOutputList(this, new NoOutput()); }
private String str; private String string; private Output output; public Chr(int id, String str) { this(id, str, new NoOutput()); }
17181920212223
public Chr(int id, String str) { this(id, str, new NoOutput()); } public Chr(int id, String str, int flags) { this(id, str, flags, new NoOutput()); }