package com.jstarcraft.core.storage.lucene.converter.sort; import java.lang.reflect.Field; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.util.Collection; import java.util.LinkedList; import org.apache.lucene.index.IndexableField; import com.jstarcraft.core.storage.exception.StorageException; import com.jstarcraft.core.storage.lucene.annotation.LuceneSort; import com.jstarcraft.core.storage.lucene.converter.LuceneContext; import com.jstarcraft.core.storage.lucene.converter.SortConverter; /** * 集合排序转换器 * * @author Birdy * */ public class CollectionSortConverter implements SortConverter { @Override public Iterable<IndexableField> convert(LuceneContext context, String path, Field field, LuceneSort annotatio, Type type, Object data) { Collection<IndexableField> indexables = new LinkedList<>(); ParameterizedType parameterizedType = ParameterizedType.class.cast(type); Type[] types = parameterizedType.getActualTypeArguments(); throw new StorageException(); } }