internal IndexingStringQueryAcceptanceTestBase(string template, string[] matching, string[] nonMatching, StringSearchMode searchMode, bool withIndex)
 {
     this._template    = template;
     this._matching    = matching;
     this._nonMatching = nonMatching;
     this._searchMode  = searchMode;
     this._withIndex   = withIndex;
 }
Пример #2
0
 public override ResourceIterator <Node> FindNodes(Label label, string key, string template, StringSearchMode searchMode)
 {
     return(_database.findNodes(label, key, template, searchMode));
 }
Пример #3
0
 private static void setSearchMode(StringSearchMode ssm)
 {
     PlayerPrefs.SetInt(SEARCHMODEKEY, (int)ssm);
 }
Пример #4
0
 public static StringSearchMode GetSearchMode(StringSearchMode ssmDefault = StringSearchMode.Contains)
 {
     return((StringSearchMode)PlayerPrefs.GetInt(SEARCHMODEKEY, (int)ssmDefault));
 }