| Package | Description |
|---|---|
| fiftyone.mobile.detection |
Contains classes necessary to perform device detection and access device
data.
|
| fiftyone.mobile.detection.entities | |
| fiftyone.mobile.detection.entities.memory | |
| fiftyone.mobile.detection.entities.stream | |
| fiftyone.mobile.detection.factories | |
| fiftyone.mobile.detection.factories.memory | |
| fiftyone.mobile.detection.factories.stream |
| Modifier and Type | Class and Description |
|---|---|
class |
IndirectDataset
A data set which includes a pool of
data readers that are used to fetch data from the source when the data
set is used to retrieve data not already in memory.
|
| Modifier and Type | Field and Description |
|---|---|
Dataset |
Provider.dataSet
The data set associated with the provider.
|
| Modifier and Type | Method and Description |
|---|---|
Dataset |
Match.getDataSet() |
static Dataset |
AutoUpdate.getDataSetWithHeaderLoaded(File binaryFile)
Provides access to the header fields of a data set.
|
| Constructor and Description |
|---|
MatchResult(Dataset dataset)
Creates a default instance of MatchState.
|
Provider(Dataset dataSet)
Constructs a new Provider using the data set without a cache.
|
Provider(Dataset dataSet,
ILoadingCache cache)
Constructs a new Provider using the data set, with a cache provided by the caller
|
Provider(Dataset dataSet,
int cacheSize)
Constructs a new Provider using the data set, with a cache of the size
provided.
|
| Modifier and Type | Field and Description |
|---|---|
Dataset |
BaseEntity.dataSet
The data set the item relates to.
|
| Modifier and Type | Method and Description |
|---|---|
protected Dataset |
BaseEntity.getDataSet() |
| Modifier and Type | Method and Description |
|---|---|
NodeNumericIndex[] |
Node.readNodeNumericIndexes(Dataset dataSet,
BinaryReader reader,
short count)
Used by the constructor to read the variable length list of child
indexes that contain numeric values.
|
| Constructor and Description |
|---|
AsciiString(Dataset dataSet,
int offset,
BinaryReader reader)
Constructs a new instance of AsciiString.
|
Component(Dataset dataSet,
int index,
BinaryReader reader)
Constructs a new instance of Component
|
ComponentV31(Dataset dataSet,
int index,
BinaryReader reader)
Constructs a new instance of ComponentV31.
|
ComponentV32(Dataset dataSet,
int index,
BinaryReader reader)
Constructs a new instance of Component.
|
Map(Dataset dataSet,
int index,
BinaryReader reader)
Constructs a new instance of NodeIndex
|
Node(Dataset dataSet,
int offset,
BinaryReader reader)
Constructs a new instance of Node
|
NodeIndex(Dataset dataSet,
int index,
boolean isString,
byte[] value,
int relatedNodeOffset)
Constructs a new instance of NodeIndex
|
NodeIndexBase(Dataset dataSet,
int index,
int relatedNodeOffset)
Constructs a new instance of NodeIndex
|
Profile(Dataset dataSet,
int offset,
BinaryReader reader)
Constructs a new instance of the Profile
|
ProfileOffset(Dataset dataSet,
int offset,
BinaryReader reader)
Constructs a new ProfileOffset that maps profile Id to the corresponding
position in the data file.
|
Property(Dataset dataSet,
int index,
BinaryReader reader)
Constructs a new instance of Property
|
Signature(Dataset dataSet,
int index,
BinaryReader reader)
Constructs a new instance of Signature.
|
SignatureV31(Dataset ds,
int index,
BinaryReader reader)
Constructs a new instance of SignatureV31.
|
SignatureV32(Dataset dataSet,
int index,
BinaryReader reader)
Constructs a new instance of SignatureV32.
|
Value(Dataset dataSet,
int index,
BinaryReader reader)
Constructs a new instance of Value.
|
Value(Dataset dataSet,
Property property,
String value)
Constructs a new instance of Value.
|
| Modifier and Type | Field and Description |
|---|---|
protected Dataset |
MemoryBaseList.dataSet
The dataset which contains the list.
|
| Constructor and Description |
|---|
MemoryFixedList(Dataset dataSet,
BinaryReader reader,
BaseEntityFactory<T> entityFactory)
Constructs a new instance of MemoryFixedList.
|
MemoryVariableList(Dataset dataSet,
BinaryReader reader,
BaseEntityFactory<T> entityFactory)
Constructs a new instance of VariableList of type T.
|
Node(Dataset dataSet,
int offset,
BinaryReader reader)
Creates a new Node object for use with memory mode.
|
NodeV31(Dataset dataSet,
int offset,
BinaryReader reader)
Constructs a new instance of NodeV31.
|
NodeV32(Dataset dataSet,
int offset,
BinaryReader reader)
Constructs a new instance of NodeV32.
|
Profile(Dataset dataSet,
int offset,
BinaryReader reader)
Constructs a new instance of the Profile.
|
PropertiesList(Dataset dataSet,
BinaryReader reader,
BaseEntityFactory<Property> entityFactory)
Constructs a new instance of PropertiesList.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Dataset
A data set returned from the stream factory which includes a pool of
data readers that are used to fetch data from the source when the data
set is used to retrieve data not already in memory.
|
| Modifier and Type | Method and Description |
|---|---|
static Dataset |
MemoryFactory.create(byte[] data)
Creates a new Dataset from the byte array.
|
static Dataset |
MemoryFactory.create(byte[] data,
boolean init)
Creates a new Dataset from the byte array.
|
static Dataset |
MemoryFactory.create(FileInputStream fileInputStream)
Creates a lazily initialised
Dataset from a
FileInputStream. |
static Dataset |
MemoryFactory.create(FileInputStream fileInputStream,
boolean init)
Creates an optionally initialised
Dataset from a
FileInputStream. |
static Dataset |
MemoryFactory.create(FileInputStream fileInputStream,
boolean init,
Date lastModified)
Creates an optionally initialised
Dataset from a
FileInputStream. |
static Dataset |
MemoryFactory.create(String filename)
Creates a new DataSet from the file provided.
|
static Dataset |
MemoryFactory.create(String filename,
boolean init)
Creates a new DataSet from the file provided.
|
static Dataset |
MemoryFactory.create(String filename,
boolean init,
Date lastModified)
Creates a new Dataset from the file provided.
|
| Modifier and Type | Method and Description |
|---|---|
protected abstract Profile |
ProfileFactory.construct(Dataset dataSet,
int index,
BinaryReader reader)
Returns a new Profile object.
|
protected abstract Node |
NodeFactory.construct(Dataset dataSet,
int index,
BinaryReader reader)
Implements the creation of a new instance of Node.
|
Value |
ValueFactory.create(Dataset dataSet,
int index,
BinaryReader reader) |
Signature |
SignatureFactoryV32.create(Dataset dataSet,
int index,
BinaryReader reader)
Creates a new instance of SignatureV32.
|
Signature |
SignatureFactoryV31.create(Dataset dataSet,
int index,
BinaryReader reader)
Creates a new instance of SignatureV31.
|
Node |
RootNodeFactory.create(Dataset dataSet,
int index,
BinaryReader reader) |
Property |
PropertyFactory.create(Dataset dataSet,
int index,
BinaryReader reader)
Creates a new instance of Property.
|
ProfileOffset |
ProfileOffsetFactory.create(Dataset dataSet,
int index,
BinaryReader reader)
Creates a new instance of profile offset from the reader
|
Profile |
ProfileFactory.create(Dataset dataSet,
int index,
BinaryReader reader)
Creates a new instance of Profile.
|
Node |
NodeFactory.create(Dataset dataSet,
int index,
BinaryReader reader)
Creates a new instance of Node.
|
Map |
MapFactory.create(Dataset dataSet,
int index,
BinaryReader reader)
Creates a new instance of Map.
|
Component |
ComponentFactoryV32.create(Dataset dataSet,
int index,
BinaryReader reader)
Creates a new instance of ComponentV32.
|
Component |
ComponentFactoryV31.create(Dataset dataSet,
int index,
BinaryReader reader)
Constructs a new instance of ComponentV31.
|
abstract T |
BaseEntityFactory.create(Dataset dataSet,
int index,
BinaryReader reader)
Creates a new entity.
|
AsciiString |
AsciiStringFactory.create(Dataset dataSet,
int offset,
BinaryReader reader)
Creates a new instance of AsciiString.
|
static void |
MemoryFactory.load(Dataset dataSet,
BinaryReader reader,
boolean init)
Creates a new DataSet from the binary reader provided.
|
static void |
CommonFactory.loadHeader(Dataset dataSet,
BinaryReader reader)
Loads the data set headers information.
|
static NodeIndex[] |
NodeFactoryShared.readNodeIndexesV31(Dataset dataSet,
BinaryReader reader,
int offset,
int count)
Used by the constructor to read the variable length list of child
node indexes associated with the node in V3.1 format.
|
static NodeIndex[] |
NodeFactoryShared.readNodeIndexesV32(Dataset dataSet,
BinaryReader reader,
int offset,
int count)
Used by the constructor to read the variable length list of child
node indexes associated with the node in V3.2 format.
|
| Constructor and Description |
|---|
SignatureFactoryV31(Dataset dataSet)
Constructs a new instance of SignatureFactoryV31.
|
SignatureFactoryV32(Dataset dataSet)
Constructs a new instance of SignatureFactoryV32.
|
| Modifier and Type | Method and Description |
|---|---|
protected Profile |
ProfileMemoryFactory.construct(Dataset dataSet,
int index,
BinaryReader reader) |
protected Node |
NodeMemoryFactoryV32.construct(Dataset dataSet,
int index,
BinaryReader reader)
Implements the creation of a new instance of Node version 3.2.
|
protected Node |
NodeMemoryFactoryV31.construct(Dataset dataSet,
int index,
BinaryReader reader)
Implements the creation of a new instance of Node version 3.1.
|
| Modifier and Type | Method and Description |
|---|---|
protected Profile |
ProfileStreamFactory.construct(Dataset dataSet,
int index,
BinaryReader reader) |
protected Node |
NodeStreamFactoryV32.construct(Dataset dataSet,
int index,
BinaryReader reader)
Constructs a new "Entities.Stream.NodeV32 entity from the offset
provided.
|
protected Node |
NodeStreamFactoryV31.construct(Dataset dataSet,
int index,
BinaryReader reader)
Constructs a new Entities.Stream.NodeV31 entity from the offset provided.
|
Copyright © 2017 51Degrees. All rights reserved.