org.unlaxer.jaddress.parser.ParsingResultsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of japanese-address-parser Show documentation
Show all versions of japanese-address-parser Show documentation
a simplejapanese address parser
The newest version!
package org.unlaxer.jaddress.parser;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
public class ParsingResultsImpl implements ParsingResults{
private List resutls;
public ParsingResultsImpl(List resutls) {
super();
this.resutls = resutls;
}
public int size() {
return resutls.size();
}
public boolean isEmpty() {
return resutls.isEmpty();
}
public boolean contains(Object o) {
return resutls.contains(o);
}
public Iterator iterator() {
return resutls.iterator();
}
public Object[] toArray() {
return resutls.toArray();
}
public T[] toArray(T[] a) {
return resutls.toArray(a);
}
public boolean add(PartialParsingResult e) {
return resutls.add(e);
}
public boolean remove(Object o) {
return resutls.remove(o);
}
public boolean containsAll(Collection> c) {
return resutls.containsAll(c);
}
public boolean addAll(Collection extends PartialParsingResult> c) {
return resutls.addAll(c);
}
public boolean addAll(int index, Collection extends PartialParsingResult> c) {
return resutls.addAll(index, c);
}
public boolean removeAll(Collection> c) {
return resutls.removeAll(c);
}
public boolean retainAll(Collection> c) {
return resutls.retainAll(c);
}
public void clear() {
resutls.clear();
}
public boolean equals(Object o) {
return resutls.equals(o);
}
public int hashCode() {
return resutls.hashCode();
}
public PartialParsingResult get(int index) {
return resutls.get(index);
}
public PartialParsingResult set(int index, PartialParsingResult element) {
return resutls.set(index, element);
}
public void add(int index, PartialParsingResult element) {
resutls.add(index, element);
}
public PartialParsingResult remove(int index) {
return resutls.remove(index);
}
public int indexOf(Object o) {
return resutls.indexOf(o);
}
public int lastIndexOf(Object o) {
return resutls.lastIndexOf(o);
}
public ListIterator listIterator() {
return resutls.listIterator();
}
public ListIterator listIterator(int index) {
return resutls.listIterator(index);
}
public List subList(int fromIndex, int toIndex) {
return resutls.subList(fromIndex, toIndex);
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy