java.lang.Object
com.aoapps.net.partialurl.PartialURLMatch<V>
The result of a call to 
PartialURLMap.get(com.aoapps.net.partialurl.FieldSource).- 
Method SummaryModifier and TypeMethodDescriptionbooleanTwo matches are equal when they have the same partialUrl (by .equals), singleUrl (by .equals), url (by .equals), and value (by identity).Gets the partial URL that matched the lookup.Gets the single partial URL that matched the lookup.getUrl()Gets the completedURL, withnullfields selected from theFieldSourceused inPartialURLMap.get(com.aoapps.net.partialurl.FieldSource).getValue()Gets the value associated with the partial URL.inthashCode()toString()
- 
Method Details- 
toString
- 
equalsTwo matches are equal when they have the same partialUrl (by .equals), singleUrl (by .equals), url (by .equals), and value (by identity).
- 
hashCodepublic int hashCode()
- 
getPartialURLGets the partial URL that matched the lookup. This might be aMultiPartialURL.
- 
getSingleURLGets the single partial URL that matched the lookup. This will be the same object asgetPartialURL()when it is aSinglePartialURL. Will be one of theMultiPartialURL.getCombinations()when is aMultiPartialURL.
- 
getUrlGets the completedURL, withnullfields selected from theFieldSourceused inPartialURLMap.get(com.aoapps.net.partialurl.FieldSource).Implementation Note: 
 this implementation usesSinglePartialURL.toURL(com.aoapps.net.partialurl.FieldSource)ongetSingleURL().- See Also:
 
- 
getValueGets the value associated with the partial URL.
 
- 

