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

Packages that use Signature
fiftyone.mobile.detection   
fiftyone.mobile.detection.entities   
fiftyone.mobile.detection.factories   
 

Uses of Signature in fiftyone.mobile.detection
 

Fields in fiftyone.mobile.detection declared as Signature
private  Signature Match.signature
           
(package private)  Signature Match.MatchState.signature
           
 

Fields in fiftyone.mobile.detection with type parameters of type Signature
private  List<Signature> Match.signatures
           
 ReadonlyList<Signature> Dataset.signatures
          A list of all the signatures the data set contains.
 

Methods in fiftyone.mobile.detection that return Signature
 Signature Match.getSignature()
          The signature with the closest match to the user agent provided.
 

Methods in fiftyone.mobile.detection that return types with arguments of type Signature
 ReadonlyList<Signature> Dataset.getSignatures()
          List of signatures the data set contains.
 

Methods in fiftyone.mobile.detection with parameters of type Signature
private  void BaseScore.evaluateSignature(Match match, Signature signature, int lastNodeCharacter)
           
protected  int NearestScore.getInitialScore(Match match, Signature signature, int lastNodeCharacter)
           
protected  int ClosestScore.getInitialScore(Match match, Signature signature, int lastNodeCharacter)
          Calculate the initial score based on the difference in length of the right most node and the target user agent.
protected abstract  int BaseScore.getInitialScore(Match match, Signature signature, int lastNodeCharacter)
          Sets any initial score before each node is evaluated.
private  int BaseScore.getScore(Match match, Signature signature, int lastNodeCharacter)
           
(package private)  void Match.setSignature(Signature signature)
           
 

Uses of Signature in fiftyone.mobile.detection.entities
 

Fields in fiftyone.mobile.detection.entities declared as Signature
private  Signature[] Value.signatures
           
private  Signature[] Profile.signatures
           
 

Methods in fiftyone.mobile.detection.entities that return Signature
 Signature[] Value.getSignatures()
          Array containing the signatures that the value is associated with.
private  Signature[] Value.GetSignatures()
          Gets all the signatures associated with the value.
private  Signature[] Profile.GetSignatures()
          Returns an array of signatures the profile relates to.
 Signature[] Profile.Signatures()
          Array of signatures associated with the profile.
 

Methods in fiftyone.mobile.detection.entities with parameters of type Signature
 int Signature.compareTo(Signature other)
          Compares this signature to another based on the node offsets.
 

Uses of Signature in fiftyone.mobile.detection.factories
 

Methods in fiftyone.mobile.detection.factories that return Signature
 Signature SignatureFactory.create(Dataset dataSet, int index, BinaryReader reader)