Uses of Class
fiftyone.mobile.detection.entities.BaseEntity

Packages that use BaseEntity
fiftyone.mobile.detection   
fiftyone.mobile.detection.entities   
fiftyone.mobile.detection.entities.memory   
fiftyone.mobile.detection.entities.stream   
 

Uses of BaseEntity in fiftyone.mobile.detection
 

Classes in fiftyone.mobile.detection with type parameters of type BaseEntity
 interface ReadonlyList<T extends BaseEntity>
          A list which only provides those features needed to read items from the list.
 

Uses of BaseEntity in fiftyone.mobile.detection.entities
 

Subclasses of BaseEntity in fiftyone.mobile.detection.entities
 class AsciiString
          ASCII format strings are the only ones used in the data set.
 class Component
          Every device can be split into the major components of hardware, operating system and browser.
 class Map
          A node index contains the characters and related child nodes of the current node should any of the characters match at the position.
 class Node
          A node in the trie data structures held at each character position.
 class NodeIndex
          A node index contains the characters and related child nodes of the current node should any of the characters match at the position.
 class NodeNumericIndex
          Represents a child of a node with a numeric value rather than character values.
 class Profile
          Represents a collection of properties and values relating to a profile which in turn relates to a component.
 class ProfileOffset
          Maps a profile id to its position in the data file.
 class Property
          Encapsulates all the information about a property including how it's values should be used and what they mean.
 class RankedSignatureIndex
          Maps a ranked signature index to the signature index.
 class Signature
          The relevant characters from a user agent structured in a manner to enable rapid comparison with a target user agent.
 class Value
          A value associated with a property and component within the dataset.
 

Methods in fiftyone.mobile.detection.entities with parameters of type BaseEntity
protected  int BaseEntity.binarySearch(BaseEntity[] list, int indexOrOffset)
          Uses a divide and conquer method to search the ordered list of indexes.
 

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

Classes in fiftyone.mobile.detection.entities.memory with type parameters of type BaseEntity
 class BaseList<T extends BaseEntity>
          Lists can be stored as a set of related objects entirely within memory, or the relevant objects loaded as required from a file or other permanent store as required.
 class MemoryFixedList<T extends BaseEntity>
          A readonly list of fixed length entity types held in memory.
 class MemoryVariableList<T extends BaseEntity>
          A readonly list of variable length entity types held in memory.
 

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

Classes in fiftyone.mobile.detection.entities.stream with type parameters of type BaseEntity
 class BaseList<T extends BaseEntity>
          Lists can be stored as a set of related objects entirely within memory, or the relevant objects loaded as required from a file or other permanent store as required.
 class StreamFixedList<T extends BaseEntity>
          Constructs a new instance of FixedList.
 class StreamVariableList<T extends BaseEntity>
          A readonly list of variable length entity types held on persistent storage rather than in memory.