com.google.zxing.client.result
Class URLTOResultParser

java.lang.Object
  extended by com.google.zxing.client.result.ResultParser
      extended by com.google.zxing.client.result.URLTOResultParser

public final class URLTOResultParser
extends ResultParser

Parses the "URLTO" result format, which is of the form "URLTO:[title]:[url]". This seems to be used sometimes, but I am not able to find documentation on its origin or official format?

Author:
Sean Owen

Constructor Summary
URLTOResultParser()
           
 
Method Summary
 URIParsedResult parse(Result result)
          Attempts to parse the raw Result's contents as a particular type of information (email, URL, etc.) and return a ParsedResult encapsulating the result of parsing.
 
Methods inherited from class com.google.zxing.client.result.ResultParser
isStringOfDigits, isSubstringOfAlphaNumeric, isSubstringOfDigits, maybeAppend, maybeAppend, maybeWrap, parseHexDigit, parseResult, unescapeBackslash
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

URLTOResultParser

public URLTOResultParser()
Method Detail

parse

public URIParsedResult parse(Result result)
Description copied from class: ResultParser
Attempts to parse the raw Result's contents as a particular type of information (email, URL, etc.) and return a ParsedResult encapsulating the result of parsing.

Specified by:
parse in class ResultParser