All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tinygroup.fulltext.impl.CollectionDocumentCreator Maven / Gradle / Ivy

The newest version!
package org.tinygroup.fulltext.impl;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

import org.tinygroup.fulltext.DocumentListCreator;
import org.tinygroup.fulltext.document.Document;

/**
 * 支持集合类型的对象操作
 * @author yancheng11334
 *
 */
public class CollectionDocumentCreator implements DocumentListCreator>{

	public boolean isMatch(Collection data) {
		return !(data==null || data.isEmpty());
	}

	public List getDocument(String type, Collection data,
			Object... arguments) {
		return new ArrayList(data);
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy