java.lang.Object
com.aoapps.net.pathspace.PathMatch<V>
The result of a call to
PathSpace.get(com.aoapps.net.Path)
.-
Method Summary
Modifier and TypeMethodDescriptionboolean
Two matches are equal when they have the same prefix (by .equals), prefixPath (by .equals), subPath (by .equals), and value (by identity).getPath()
Gets the portion of the lookup path past the prefix path.Gets the prefix that matched the lookup.Gets the portion of the lookup path that matches the prefix.getValue()
Gets the value associated with the prefix.int
hashCode()
toString()
-
Method Details
-
toString
-
equals
Two matches are equal when they have the same prefix (by .equals), prefixPath (by .equals), subPath (by .equals), and value (by identity). -
hashCode
public int hashCode() -
getPrefix
Gets the prefix that matched the lookup. -
getPrefixPath
Gets the portion of the lookup path that matches the prefix. -
getPath
Gets the portion of the lookup path past the prefix path. -
getValue
Gets the value associated with the prefix.
-