blob: e6e60c71edae35f682702195225c3b0081f7421f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.uima.ruta.resource;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.apache.uima.cas.text.AnnotationFS;
import org.apache.uima.ruta.RutaStream;
import org.apache.uima.ruta.type.RutaBasic;
public class AnonymousWordList implements RutaWordList {
private final List<String> list;
public AnonymousWordList(List<String> strings) {
super();
this.list = strings;
}
@Override
public boolean contains(String s, boolean ignoreCase, int size, char[] ignoreChars,
int maxIgnoreChars, boolean ignoreWS) {
return list.contains(s);
}
@Override
public boolean containsFragment(String s, boolean ignoreCase, int size, char[] ignoreChars,
int maxIgnoreChars, boolean ignoreWS) {
return contains(s, ignoreCase, size, ignoreChars, maxIgnoreChars, ignoreWS);
}
@Override
public List<AnnotationFS> find(RutaStream stream, boolean ignoreCase, int size,
char[] ignoreToken, int maxIgnoredTokens, boolean ignoreWS) {
List<AnnotationFS> result = new ArrayList<AnnotationFS>();
for (String each : list) {
stream.moveToFirst();
while (stream.hasNext()) {
RutaBasic next = (RutaBasic) stream.next();
if (each.equals(next.getCoveredText())) {
result.add(next);
}
}
}
return result;
}
@Override
public List<AnnotationFS> find(RutaStream stream, Map<String, Object> typeMap,
boolean ignoreCase, int ignoreLength, boolean edit, double distance, String ignoreToken) {
return new ArrayList<AnnotationFS>();
}
@Override
public List<String> contains(String string, boolean ignoreCase, int ignoreLength, boolean edit,
double distance, String ignoreToken) {
return null;
}
@Override
public List<String> containsFragment(String string, boolean ignoreCase, int ignoreLength,
boolean edit, double distance, String ignoreToken) {
return null;
}
}