fiftyone.mobile.detection
Class Match.PossibleSignature

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

private class Match.PossibleSignature
extends Object

Used to represent a signature index and the number of times it occurs in the matched nodes.


Field Summary
 int frequency
          The number of times the signature index occurs.
 Match.PossibleSignature next
          The next signature index in the linked list.
 Match.PossibleSignature previous
          The previous signature index in the linked list.
 int rankedSignatureIndex
          The ranked signature index.
 
Constructor Summary
Match.PossibleSignature(int rankedSignatureIndex, int frequency)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

rankedSignatureIndex

public final int rankedSignatureIndex
The ranked signature index.


frequency

public int frequency
The number of times the signature index occurs.


next

public Match.PossibleSignature next
The next signature index in the linked list.


previous

public Match.PossibleSignature previous
The previous signature index in the linked list.

Constructor Detail

Match.PossibleSignature

Match.PossibleSignature(int rankedSignatureIndex,
                        int frequency)