Uses of Class
specialized_checkers.io.CheckerURI
Packages that use CheckerURI
-
Uses of CheckerURI in specialized_checkers.io
Subclasses with type arguments of type CheckerURI in specialized_checkers.ioModifier and TypeClassDescriptionclass
A specialized checker forURI
objects, providing fluent validation methods for various URI components such as scheme, host, port, authority, fragment, path, and query.Methods in specialized_checkers.io that return CheckerURIModifier and TypeMethodDescriptionstatic CheckerURI
Creates a CheckerURI from a string path with a default name.static CheckerURI
Creates a CheckerURI from a string path and assigns a custom name.static CheckerURI
Creates a CheckerURI for the given URI with a default name.static CheckerURI
Creates a CheckerURI for the given URI and assigns a custom name.CheckerURI.hasAuthority()
Checks if the URI has an authority component.CheckerURI.hasAuthority
(String... authorities) Checks if the URI's authority matches any of the specified authorities.CheckerURI.hasFrament()
Checks if the URI has a fragment component.CheckerURI.hasFrament
(String... fragments) Checks if the URI's fragment matches any of the specified fragments.CheckerURI.hasHost()
Checks if the URI has a host component.Checks if the URI's host matches any of the specified hosts.CheckerURI.hasPath()
Checks if the URI has a path component.Checks if the URI's path matches any of the specified paths.CheckerURI.hasPort()
Checks if the URI has a port component.CheckerURI.hasPort
(int... ports) Checks if the URI's port matches any of the specified ports.CheckerURI.hasQuery()
Checks if the URI has a query component.Checks if the URI's query matches any of the specified queries.CheckerURI.hasSqueme()
Checks if the URI has a scheme component.Checks if the URI's scheme matches any of the specified schemes.CheckerURI.isAbsolute()
Checks if the URI is absolute (has a scheme).CheckerURI.isRelative()
Checks if the URI is relative (does not have a scheme).protected CheckerURI
CheckerURI.self()
Returns this instance (for fluent API). -
Uses of CheckerURI in util
Methods in util that return CheckerURIModifier and TypeMethodDescriptionChecker.isURI()
Checks if the object is a URI and returns a CheckerURI for further validation.