Uses of Class
fiftyone.mobile.detection.Dataset

Packages that use Dataset
fiftyone.mobile.detection   
fiftyone.mobile.detection.entities   
fiftyone.mobile.detection.entities.memory   
fiftyone.mobile.detection.entities.stream   
fiftyone.mobile.detection.factories   
 

Uses of Dataset in fiftyone.mobile.detection
 

Fields in fiftyone.mobile.detection declared as Dataset
 Dataset Provider.dataSet
          The data set associated with the provider.
private  Dataset Match.dataSet
          The data set used for the detection.
 

Methods in fiftyone.mobile.detection that return Dataset
(package private)  Dataset Match.getDataSet()
           
private static Dataset AutoUpdate.getNewDataset(String[] licenseKeys, String dataFilePath)
          Downloads the latest Premium data and saves to disk if the data has been downloaded correctly and is newer than data currently in that position (if any) in that path.
 

Constructors in fiftyone.mobile.detection with parameters of type Dataset
Match(Dataset dataSet)
          Constructs a new detection match ready to be used.
Match(Dataset dataSet, String targetUserAgent)
          Constructs a new detection match ready to be used to identify the profiles associated with the target user agent.
Provider(Dataset dataSet)
          Constructs a new provided using the data set.
Provider(Dataset dataSet, Controller controller, int cacheServiceInternal)
          Constructs a new provider with the dataset, controller and cache specified.
Provider(Dataset dataSet, int cacheServiceInterval)
          Constructs a new provided using the data set.
 

Uses of Dataset in fiftyone.mobile.detection.entities
 

Fields in fiftyone.mobile.detection.entities declared as Dataset
private  Dataset BaseEntity.dataSet
          The data set the item relates to.
 

Methods in fiftyone.mobile.detection.entities that return Dataset
protected  Dataset BaseEntity.getDataSet()
           
 

Methods in fiftyone.mobile.detection.entities with parameters of type Dataset
private static byte[] NodeIndex.getCharacters(Dataset dataSet, boolean isString, byte[] value)
          Returns the characters the node index relates to.
private static NodeIndex[] Node.readNodeIndexes(Dataset dataSet, BinaryReader reader, int offset, short count)
          Used by the constructor to read the variable length list of child node indexes associated with the node.
private static NodeNumericIndex[] Node.readNodeNumericIndexes(Dataset dataSet, BinaryReader reader, short count)
          Used by the constructor to read the variable length list of child node numeric indexes associated with the node.
private  int[] Signature.ReadOffsets(Dataset dataSet, BinaryReader reader, int length)
          Uses the offsets list which must be locked to read in the arrays of nodes or profiles that relate to the signature.
 

Constructors in fiftyone.mobile.detection.entities with parameters of type Dataset
AsciiString(Dataset dataSet, int offset, BinaryReader reader)
          Constructs a new instance of AsciiString
BaseEntity(Dataset dataSet, int offsetOrIndex)
          Constructs the base item for the data set and index provided.
Component(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
NodeNumericIndex(Dataset dataSet, short value, int relatedNodeOffset)
           
Profile(Dataset dataSet, int offset, BinaryReader reader)
          Constructs a new instance of the Profile
ProfileOffset(Dataset dataSet, int offset, BinaryReader reader)
           
Property(Dataset dataSet, int index, BinaryReader reader)
          Constructs a new instance of Property
RankedSignatureIndex(Dataset dataSet, int index, BinaryReader reader)
           
Signature(Dataset dataSet, int index, BinaryReader reader)
          Constructs a new instance of Signature
Value(Dataset dataSet, int index, BinaryReader reader)
          Constructs a new instance of Value
 

Uses of Dataset in fiftyone.mobile.detection.entities.memory
 

Fields in fiftyone.mobile.detection.entities.memory declared as Dataset
protected  Dataset BaseList.dataSet
          The dataset which contains the list.
 

Constructors in fiftyone.mobile.detection.entities.memory with parameters of type Dataset
BaseList(Dataset dataSet, BinaryReader reader, BaseEntityFactory<T> entityFactory)
          Constructs a new instance of .
MemoryFixedList(Dataset dataSet, BinaryReader reader, BaseEntityFactory<T> entityFactory)
          Constructs a new instance of FixedList
MemoryVariableList(Dataset dataSet, BinaryReader reader, BaseEntityFactory<T> entityFactory)
          Constructs a new instance of VariableList
 

Uses of Dataset in fiftyone.mobile.detection.entities.stream
 

Fields in fiftyone.mobile.detection.entities.stream declared as Dataset
protected  Dataset BaseList.dataSet
          The dataset which contains the list.
 

Constructors in fiftyone.mobile.detection.entities.stream with parameters of type Dataset
BaseList(Dataset dataSet, BinaryReader reader, Source source, BaseEntityFactory<T> entityFactory)
          Constructs a new instance of BaseList ready to read entities from the source.
StreamFixedList(Dataset dataSet, BinaryReader reader, Source source, BaseEntityFactory<T> entityFactory)
           
StreamVariableList(Dataset dataSet, BinaryReader reader, Source source, BaseEntityFactory<T> entityFactory)
          Constructs a new instance of VariableList
 

Uses of Dataset in fiftyone.mobile.detection.factories
 

Methods in fiftyone.mobile.detection.factories that return Dataset
static Dataset StreamFactory.create(byte[] data)
           
static Dataset MemoryFactory.create(byte[] data)
           
static Dataset MemoryFactory.create(byte[] data, boolean init)
           
static Dataset StreamFactory.create(String filename)
           
static Dataset MemoryFactory.create(String filename)
           
static Dataset MemoryFactory.create(String filename, boolean init)
           
static Dataset MemoryFactory.read(BinaryReader reader, boolean init)
           
(package private) static Dataset StreamFactory.read(BinaryReader reader, Source source)
           
 

Methods in fiftyone.mobile.detection.factories with parameters of type Dataset
 Value ValueFactory.create(Dataset dataSet, int index, BinaryReader reader)
           
 Signature SignatureFactory.create(Dataset dataSet, int index, BinaryReader reader)
           
 Node RootNodeFactory.create(Dataset dataSet, int index, BinaryReader reader)
           
 RankedSignatureIndex RankedSignatureIndexFactory.create(Dataset dataSet, int index, BinaryReader reader)
          Creates a new instance of the ranked signature index from the source stream.
 Property PropertyFactory.create(Dataset dataSet, int index, BinaryReader reader)
           
 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)
           
 Node NodeFactory.create(Dataset dataSet, int index, BinaryReader reader)
           
 Map MapFactory.create(Dataset dataSet, int index, BinaryReader reader)
           
 Component ComponentFactory.create(Dataset dataSet, int index, BinaryReader reader)
           
abstract  T BaseEntityFactory.create(Dataset dataSet, int index, BinaryReader reader)
           
 AsciiString AsciiStringFactory.create(Dataset dataSet, int offset, BinaryReader reader)
          Creates a new instance of AsciiString
 

Constructors in fiftyone.mobile.detection.factories with parameters of type Dataset
SignatureFactory(Dataset dataset)