Uses of Class
com.luchersol.core.specialized_checkers.io.CheckerURI
Packages that use CheckerURI
Package
Description
Specialized checkers for I/O and file system operations.
Core utility classes and base abstractions for the Checker framework.
-
Uses of CheckerURI in com.luchersol.core.specialized_checkers.io
Subclasses with type arguments of type CheckerURI in com.luchersol.core.specialized_checkers.ioModifier and TypeClassDescriptionclassA specialized checker forURIobjects, providing fluent validation methods for various URI components such as scheme, host, port, authority, fragment, path, and query.Methods in com.luchersol.core.specialized_checkers.io that return CheckerURIModifier and TypeMethodDescriptionstatic CheckerURICreates a CheckerURI from a string path with a default name.static CheckerURICreates a CheckerURI from a string path and assigns a custom name.static CheckerURICreates a CheckerURI for the given URI with a default name.static CheckerURICreates 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 CheckerURICheckerURI.self()Returns this instance (for fluent API). -
Uses of CheckerURI in com.luchersol.core.util
Methods in com.luchersol.core.util that return CheckerURIModifier and TypeMethodDescriptionChecker.isURI()Checks if the object is a URI and returns a CheckerURI for further validation.