package eu.dnetlib.pace.model; import java.util.List; /** * The Interface FieldList. */ public interface FieldList extends List, Field { /** * String list. * * @return the list */ public List stringList(); /** * Double[] Array * * @return the double[] array */ public double[] doubleArray(); }