Package | Description |
---|---|
org.openimaj.feature.local.list | |
org.openimaj.twitter.collection | |
org.openimaj.util.list |
Modifier and Type | Interface and Description |
---|---|
interface |
LocalFeatureList<T extends LocalFeature<?,?>>
An interface defining list of
LocalFeature s. |
Modifier and Type | Class and Description |
---|---|
class |
FileLocalFeatureList<T extends LocalFeature<?,?>>
A
LocalFeatureList backed by a file. |
class |
MemoryLocalFeatureList<T extends LocalFeature<?,?>>
An in-memory list of local features.
|
class |
StreamLocalFeatureList<T extends LocalFeature<?,?>>
A list of
LocalFeature s backed by an input stream. |
Modifier and Type | Interface and Description |
---|---|
interface |
TwitterStatusList<T extends USMFStatus> |
Modifier and Type | Class and Description |
---|---|
class |
FileTwitterStatusList<T extends USMFStatus> |
class |
MemoryTwitterStatusList<T extends USMFStatus>
A List of
USMFStatus instances held in memory (backed by an ArrayList .) |
class |
StreamJSONStatusList
A list of json maps
|
class |
StreamTwitterStatusList<T extends USMFStatus>
Converts an input stream into a list
USMFStatus instances using various methods. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractFileBackedList<T extends Readable>
A (currently) read-only list that iterates over a file.
|
class |
AbstractStreamBackedList<T extends Readable>
A list of records that can be consumed from a stream.
|
Modifier and Type | Method and Description |
---|---|
RandomisableList<T> |
AbstractStreamBackedList.randomSubList(int nelem)
This method creates a random sublist in ram from elements consumed
from the target list.
|
RandomisableList<T> |
AbstractFileBackedList.randomSubList(int nelem) |
RandomisableList<T> |
RandomisableList.randomSubList(int nelem)
Extract a sublist made up of nelem elements from the this list.
|
RandomisableList<T> |
AbstractFileBackedList.subList(int fromIndex,
int toIndex) |