java.lang.Object
com.aoapps.net.partialurl.PartialURLMatch<V>
The result of a call to
PartialURLMap.get(com.aoapps.net.partialurl.FieldSource).-
Method Summary
Modifier 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
-
equals
Two matches are equal when they have the same partialUrl (by .equals), singleUrl (by .equals), url (by .equals), and value (by identity). -
hashCode
public int hashCode() -
getPartialURL
Gets the partial URL that matched the lookup. This might be aMultiPartialURL. -
getSingleURL
Gets 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. -
getUrl
Gets 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:
-
getValue
Gets the value associated with the partial URL.
-
