Package org.openrefine.expr
Interface HasFieldsList
-
- All Superinterfaces:
HasFields
- All Known Implementing Classes:
HasFieldsListImpl
public interface HasFieldsList extends HasFields
Interface for objects each of which is a list of HasFields objects of the same kind (e.g., list of cells). Its getField method thus returns either another HasFieldsList object or an array or java.util.List of objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HasFields
get(int index)
HasFieldsList
getSubList(int from, int to)
int
length()
-
Methods inherited from interface org.openrefine.expr.HasFields
fieldAlsoHasFields, getField
-
-
-
-
Method Detail
-
length
int length()
-
get
HasFields get(int index)
-
getSubList
HasFieldsList getSubList(int from, int to)
-
-