fiftyone.mobile.detection
Class Match.PossibleSignatures

java.lang.Object
  extended by fiftyone.mobile.detection.Match.PossibleSignatures
Enclosing class:
Match

private class Match.PossibleSignatures
extends Object

A custom linked list used to identify the most frequently occurring signature indexes.


Field Summary
(package private)  Match.PossibleSignature first
           
(package private)  Match.PossibleSignature last
           
(package private)  int size
           
 
Constructor Summary
private Match.PossibleSignatures()
           
 
Method Summary
(package private)  void add(Match.PossibleSignature newItem)
          Adds the item to the end of the linked list.
(package private)  void addAfter(Match.PossibleSignature existing, Match.PossibleSignature newItem)
           
(package private)  void addBefore(Match.PossibleSignature existing, Match.PossibleSignature newItem)
           
(package private)  void remove(Match.PossibleSignature existing)
          Removes any reference to this element from the linked list.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

first

Match.PossibleSignature first

last

Match.PossibleSignature last

size

int size
Constructor Detail

Match.PossibleSignatures

private Match.PossibleSignatures()
Method Detail

addBefore

void addBefore(Match.PossibleSignature existing,
               Match.PossibleSignature newItem)

addAfter

void addAfter(Match.PossibleSignature existing,
              Match.PossibleSignature newItem)

add

void add(Match.PossibleSignature newItem)
Adds the item to the end of the linked list.


remove

void remove(Match.PossibleSignature existing)
Removes any reference to this element from the linked list.