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 TypeMethodDescriptionboolean
Two 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
, withnull
fields selected from theFieldSource
used inPartialURLMap.get(com.aoapps.net.partialurl.FieldSource)
.getValue()
Gets the value associated with the partial URL.int
hashCode()
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
, withnull
fields selected from theFieldSource
used 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.
-