Skip navigation links
A B C D E F G H I L M N O P R S T U W 

A

addRequestProperty(String, String) - Method in class org.libj.net.DelegateURLConnection
 
authenticate(HttpServletResponse) - Method in class org.libj.net.DelegateHttpServletRequest
 
AuthScheme - Class in org.libj.net
The AuthScheme class represents a strong type representation of the "Authorization" header schemes.
AuthScheme() - Constructor for class org.libj.net.AuthScheme
 

B

Basic - Class in org.libj.net
The "Authorization: Basic" header schemes.
Basic(String, String) - Constructor for class org.libj.net.Basic
Creates a new Basic instance with the specified username and password.
Basic() - Constructor for class org.libj.net.Basic
Creates a new Basic instance with a null username and password..
Bearer - Class in org.libj.net
The "Authorization: Bearer" header schemes.
Bearer(String) - Constructor for class org.libj.net.Bearer
Creates a new Bearer instance with the specified token.
Bearer() - Constructor for class org.libj.net.Bearer
Creates a new Bearer instance with a null token.

C

canonicalize(URL) - Static method in class org.libj.net.URLs
Returns the canonical version of the specified URL, where redundant names such as "." and ".." are dereferenced and removed from the path.
changeSessionId() - Method in class org.libj.net.DelegateHttpServletRequest
 
connect() - Method in class org.libj.net.DelegateURLConnection
 
connect() - Method in class org.libj.net.MemoryURLConnection
 
Cookies - Class in org.libj.net
Utility methods for management of cookies in HttpServletRequests and HttpServletResponses.
create(String) - Static method in class org.libj.net.URLs
Creates a URL by parsing the given string.
create(URL, String) - Static method in class org.libj.net.URLs
Creates a URL by parsing the given URL and spec string.
create(URL, String, URLStreamHandler) - Static method in class org.libj.net.URLs
Creates a URL by parsing the given URL and spec string.
create(String, String, String) - Static method in class org.libj.net.URLs
Creates a URL by parsing the given protocol, host, and file strings.
create(String, String, int, String) - Static method in class org.libj.net.URLs
Creates a URL by parsing the given protocol, host, port, and file strings.
create(String, String, int, String, URLStreamHandler) - Static method in class org.libj.net.URLs
Creates a URL by parsing the given protocol, host, port, and file strings.
create(String, String) - Static method in class org.libj.net.URLs
Creates a URL from the specified basedir parent directory, and path child path.
createCookieHeader(Collection<String>) - Static method in class org.libj.net.Cookies
Create a semicolon-delimited cookie header for the specified cookies.
createQuery(Map<String, String[]>, String) - Static method in class org.libj.net.HTTP
Create a query string based on the specified parameter map and the provided charset encoding.
createURL(byte[]) - Static method in class org.libj.net.MemoryURLStreamHandler
Returns a "memory" protocol URL for the specified data.
createURLStreamHandler(String) - Method in class org.libj.net.memory.Handler.Provider
 

D

decode(String) - Method in class org.libj.net.AuthScheme
Returns a AuthScheme instance by decoding the authorization header string.
decode(String) - Method in class org.libj.net.Basic
 
decode(String) - Method in class org.libj.net.Bearer
 
decode(String) - Static method in class org.libj.net.URIComponent
Decodes the provided string encoded in UTF-8 using a specification that is compatible with JavaScript's decodeURIComponent function.
decode(String, String) - Static method in class org.libj.net.URIComponent
Decodes the provided string using a specification that is compatible with JavaScript's decodeURIComponent function.
decode(String) - Static method in class org.libj.net.URLs
Decodes a application/x-www-form-urlencoded string.
decode(String, Charset) - Static method in class org.libj.net.URLs
Decodes an application/x-www-form-urlencoded string using a specific Charset.
decode(String, String) - Static method in class org.libj.net.URLs
Decodes an application/x-www-form-urlencoded string using a specific encoding scheme.
decodePath(String) - Static method in class org.libj.net.URLs
Returns the URL-decoded path string.
DelegateHttpServletRequest - Class in org.libj.net
A DelegateHttpServletRequest contains some other HttpServletRequest, which it uses as its basic source of data, possibly transforming the data along the way or providing additional functionality.
DelegateHttpServletRequest(HttpServletRequest) - Constructor for class org.libj.net.DelegateHttpServletRequest
Creates a new DelegateHttpServletRequest with the specified target HttpServletRequest.
DelegateHttpServletRequest() - Constructor for class org.libj.net.DelegateHttpServletRequest
Creates a new DelegateHttpServletRequest with a null target.
DelegateURLConnection - Class in org.libj.net
A DelegateURLConnection contains some other URLConnection, which it uses as its basic source of data, possibly transforming the data along the way or providing additional functionality.
DelegateURLConnection(URLConnection) - Constructor for class org.libj.net.DelegateURLConnection
Creates a new DelegateURLConnection with the specified target URLConnection.
DelegateURLConnection() - Constructor for class org.libj.net.DelegateURLConnection
Creates a new DelegateURLConnection with a null target.
disableHttp(URL) - Static method in class org.libj.net.URLs
Returns a URL with http and https protocols disabled.
disableRemote() - Static method in class org.libj.net.URLs
Disables all http and https access from this JVM.
doGet(String, Map<String, String[]>) - Static method in class org.libj.net.HTTP
Invoke a GET request on the specified URL with the provided parameter map which will be encoded as UTF-8.
doGet(String, Map<String, String[]>, String) - Static method in class org.libj.net.HTTP
Invoke a GET request on the specified URL with the provided parameter map and charset encoding.
doPost(URL, Map<String, String[]>) - Static method in class org.libj.net.HTTP
Invoke a POST request on the specified URL with the provided parameter map which will be encoded as UTF-8.
doPost(URL, Map<String, String[]>, Properties) - Static method in class org.libj.net.HTTP
Invoke a POST request on the specified URL with the provided parameter map which will be encoded as UTF-8.
doPost(URL, Map<String, String[]>, Properties, List<String>) - Static method in class org.libj.net.HTTP
Invoke a POST request on the specified URL with the provided parameter map which will be encoded as UTF-8.
downloadFile(String, File) - Static method in class org.libj.net.Downloads
Downloads a file from the specified url to the provided File.
downloadFile(HttpServletResponse, byte[], String, boolean) - Static method in class org.libj.net.Downloads
Send the given file as a byte array to the servlet response.
downloadFile(HttpServletResponse, File, boolean) - Static method in class org.libj.net.Downloads
Send the given file as a File object to the servlet response.
downloadFile(HttpServletResponse, InputStream, String, boolean) - Static method in class org.libj.net.Downloads
Send the given file as an InputStream to the servlet response.
Downloads - Class in org.libj.net
Utility functions for operations pertaining to file downloads.

E

encode(String) - Static method in class org.libj.net.URIComponent
Encodes the provided string as UTF-8 using a specification that is compatible with JavaScript's encodeURIComponent function.
encode(String, String) - Static method in class org.libj.net.URIComponent
Encodes the provided string using a specification that is compatible with JavaScript's encodeURIComponent function.
encode(String) - Static method in class org.libj.net.URLs
Translates a string into application/x-www-form-urlencoded format.
encode(String, String) - Static method in class org.libj.net.URLs
Translates a string into application/x-www-form-urlencoded format using a specific encoding scheme.
encode(String, Charset) - Static method in class org.libj.net.URLs
Translates a string into application/x-www-form-urlencoded format using a specific Charset.
encodePath(String) - Static method in class org.libj.net.URLs
Returns the URL-encoded path string.
equals(Object) - Method in class org.libj.net.Basic
 
equals(Object) - Method in class org.libj.net.Bearer
 
equals(Object) - Method in class org.libj.net.DelegateHttpServletRequest
 
equals(Object) - Method in class org.libj.net.DelegateURLConnection
 
equals(Object) - Method in class org.libj.net.Service
 
exists(URL, int) - Static method in class org.libj.net.URLs
Tests whether the specified URL references a resource that exists.
exists(URL) - Static method in class org.libj.net.URLs
Tests whether the specified URL references a resource that exists.

F

findOpenPort(int, int) - Static method in class org.libj.net.Sockets
Returns the first available port, evaluating ports sequentially from from to to.
findRandomOpenPort() - Static method in class org.libj.net.Sockets
Returns a random open port.
fromStringPath(String) - Static method in class org.libj.net.URLs
Returns a URL created from the specified string, or null if the specified string path is null.
fromURI(URI) - Static method in class org.libj.net.URLs
Creates a URL from the specified URI.
fromURL(URL) - Static method in class org.libj.net.URIs
Creates a URI from the specified URL.

G

getAliases() - Method in class org.libj.net.Service
Returns the aliases.
getAllowUserInteraction() - Method in class org.libj.net.DelegateURLConnection
 
getAsyncContext() - Method in class org.libj.net.DelegateHttpServletRequest
 
getAttribute(String) - Method in class org.libj.net.DelegateHttpServletRequest
 
getAttributeNames() - Method in class org.libj.net.DelegateHttpServletRequest
 
getAuthType() - Method in class org.libj.net.DelegateHttpServletRequest
 
getCanonicalParent(URI) - Static method in class org.libj.net.URIs
Returns the canonical URI representing the parent of the specified URI, or null if uri is null or does not name a parent directory (".." and "." path names are dereferenced in a canonical URI)).
getCanonicalParent(URL) - Static method in class org.libj.net.URLs
Returns the canonical URL representing the parent of the specified URL, or null if url is null or does not name a parent directory (".." and "." path names are dereferenced in a canonical URL)).
getCharacterEncoding() - Method in class org.libj.net.DelegateHttpServletRequest
 
getConnectTimeout() - Method in class org.libj.net.DelegateURLConnection
 
getContent() - Method in class org.libj.net.DelegateURLConnection
 
getContent(Class[]) - Method in class org.libj.net.DelegateURLConnection
 
getContentEncoding() - Method in class org.libj.net.DelegateURLConnection
 
getContentLength() - Method in class org.libj.net.DelegateHttpServletRequest
 
getContentLength() - Method in class org.libj.net.DelegateURLConnection
 
getContentLengthLong() - Method in class org.libj.net.DelegateHttpServletRequest
 
getContentLengthLong() - Method in class org.libj.net.DelegateURLConnection
 
getContentType() - Method in class org.libj.net.DelegateHttpServletRequest
 
getContentType() - Method in class org.libj.net.DelegateURLConnection
 
getContextPath() - Method in class org.libj.net.DelegateHttpServletRequest
 
getCookies() - Method in class org.libj.net.DelegateHttpServletRequest
 
getCookieValue(HttpServletRequest, String) - Static method in class org.libj.net.Cookies
Returns the cookie value associated with the given cookie name from the given request.
getData(URL) - Static method in class org.libj.net.MemoryURLStreamHandler
Returns the data for the provided URL.
getDate() - Method in class org.libj.net.DelegateURLConnection
 
getDateHeader(String) - Method in class org.libj.net.DelegateHttpServletRequest
 
getDefaultPort() - Method in class org.libj.net.offline.http.Handler
 
getDefaultPort() - Method in class org.libj.net.offline.https.Handler
 
getDefaultUseCaches() - Method in class org.libj.net.DelegateURLConnection
 
getDispatcherType() - Method in class org.libj.net.DelegateHttpServletRequest
 
getDoInput() - Method in class org.libj.net.DelegateURLConnection
 
getDoOutput() - Method in class org.libj.net.DelegateURLConnection
 
getExpiration() - Method in class org.libj.net.DelegateURLConnection
 
getHeader(String) - Method in class org.libj.net.DelegateHttpServletRequest
 
getHeaderField(String) - Method in class org.libj.net.DelegateURLConnection
 
getHeaderField(int) - Method in class org.libj.net.DelegateURLConnection
 
getHeaderFieldDate(String, long) - Method in class org.libj.net.DelegateURLConnection
 
getHeaderFieldInt(String, int) - Method in class org.libj.net.DelegateURLConnection
 
getHeaderFieldKey(int) - Method in class org.libj.net.DelegateURLConnection
 
getHeaderFieldLong(String, long) - Method in class org.libj.net.DelegateURLConnection
 
getHeaderFields() - Method in class org.libj.net.DelegateURLConnection
 
getHeaderNames() - Method in class org.libj.net.DelegateHttpServletRequest
 
getHeaders(String) - Method in class org.libj.net.DelegateHttpServletRequest
 
getIfModifiedSince() - Method in class org.libj.net.DelegateURLConnection
 
getInputStream() - Method in class org.libj.net.DelegateHttpServletRequest
 
getInputStream() - Method in class org.libj.net.DelegateURLConnection
 
getInputStream() - Method in class org.libj.net.MemoryURLConnection
 
getIntHeader(String) - Method in class org.libj.net.DelegateHttpServletRequest
 
getJarPath(URL) - Static method in class org.libj.net.URLs
Returns the path portion of the resource referenced inside a Jar of the specified url "Jar URL" (if url is "Jar URL" resembling the "jar:<url>...!..." semantics), or null if url is not a "Jar URL".
getJarURL(URL) - Static method in class org.libj.net.URLs
Returns a URL representing the location of the Jar in url, if url is "Jar URL" resembling the "jar:<url>...!..." semantics; or null if url is not a "Jar URL".
getLastModified() - Method in class org.libj.net.DelegateURLConnection
 
getLocalAddr() - Method in class org.libj.net.DelegateHttpServletRequest
 
getLocale() - Method in class org.libj.net.DelegateHttpServletRequest
 
getLocales() - Method in class org.libj.net.DelegateHttpServletRequest
 
getLocalName() - Method in class org.libj.net.DelegateHttpServletRequest
 
getLocalPort() - Method in class org.libj.net.DelegateHttpServletRequest
 
getMethod() - Method in class org.libj.net.DelegateHttpServletRequest
 
getName() - Method in class org.libj.net.Service
Returns the name.
getName(URI) - Static method in class org.libj.net.URIs
Returns the name of the file or directory denoted by the specified URI.
getName(URL) - Static method in class org.libj.net.URLs
Returns the name of the file or directory denoted by the specified URL.
getOutputStream() - Method in class org.libj.net.DelegateURLConnection
 
getParameter(String) - Method in class org.libj.net.DelegateHttpServletRequest
 
getParameterMap() - Method in class org.libj.net.DelegateHttpServletRequest
 
getParameterNames() - Method in class org.libj.net.DelegateHttpServletRequest
 
getParameterValues(String) - Method in class org.libj.net.DelegateHttpServletRequest
 
getParent(URI) - Static method in class org.libj.net.URIs
Returns the URI representing the parent of the specified URI, or null if uri is null or does not name a parent directory.
getParent(URL) - Static method in class org.libj.net.URLs
Returns the URL representing the parent of the specified URL, or null if url is null or does not name a parent directory.
getPart(String) - Method in class org.libj.net.DelegateHttpServletRequest
 
getParts() - Method in class org.libj.net.DelegateHttpServletRequest
 
getPassword() - Method in class org.libj.net.Basic
Returns the password.
getPathInfo() - Method in class org.libj.net.DelegateHttpServletRequest
 
getPathTranslated() - Method in class org.libj.net.DelegateHttpServletRequest
 
getPermission() - Method in class org.libj.net.DelegateURLConnection
 
getPort() - Method in class org.libj.net.Service
Returns the port.
getProtocol() - Method in class org.libj.net.DelegateHttpServletRequest
 
getQueryString() - Method in class org.libj.net.DelegateHttpServletRequest
 
getReader() - Method in class org.libj.net.DelegateHttpServletRequest
 
getReadTimeout() - Method in class org.libj.net.DelegateURLConnection
 
getRealPath(String) - Method in class org.libj.net.DelegateHttpServletRequest
Deprecated.
getRemoteAddr() - Method in class org.libj.net.DelegateHttpServletRequest
 
getRemoteHost() - Method in class org.libj.net.DelegateHttpServletRequest
 
getRemotePort() - Method in class org.libj.net.DelegateHttpServletRequest
 
getRemoteUser() - Method in class org.libj.net.DelegateHttpServletRequest
 
getRequestDispatcher(String) - Method in class org.libj.net.DelegateHttpServletRequest
 
getRequestedSessionId() - Method in class org.libj.net.DelegateHttpServletRequest
 
getRequestProperties() - Method in class org.libj.net.DelegateURLConnection
 
getRequestProperty(String) - Method in class org.libj.net.DelegateURLConnection
 
getRequestURI() - Method in class org.libj.net.DelegateHttpServletRequest
 
getRequestURL() - Method in class org.libj.net.DelegateHttpServletRequest
 
getScheme() - Method in class org.libj.net.DelegateHttpServletRequest
 
getServerName() - Method in class org.libj.net.DelegateHttpServletRequest
 
getServerPort() - Method in class org.libj.net.DelegateHttpServletRequest
 
getService(int) - Static method in class org.libj.net.Services
Returns the Service definition for the specified TCP/UDP port, or null if a Service is not defined for the port.
getService(URI) - Static method in class org.libj.net.Services
 
getService(String) - Static method in class org.libj.net.Services
Returns the Service definition for the specified TCP/UDP scheme, or null if a Service is not defined for the scheme.
getServletContext() - Method in class org.libj.net.DelegateHttpServletRequest
 
getServletPath() - Method in class org.libj.net.DelegateHttpServletRequest
 
getSession(boolean) - Method in class org.libj.net.DelegateHttpServletRequest
 
getSession() - Method in class org.libj.net.DelegateHttpServletRequest
 
getShortName(URI) - Static method in class org.libj.net.URIs
Returns the short name of the file or directory denoted by the specified URI.
getShortName(URL) - Static method in class org.libj.net.URLs
Returns the short name of the file or directory denoted by the specified URL.
getToken() - Method in class org.libj.net.Bearer
Returns the token.
getURL() - Method in class org.libj.net.DelegateURLConnection
 
getUseCaches() - Method in class org.libj.net.DelegateURLConnection
 
getUsername() - Method in class org.libj.net.Basic
Returns the username.
getUserPrincipal() - Method in class org.libj.net.DelegateHttpServletRequest
 

H

Handler - Class in org.libj.net.memory
Handler class extending MemoryURLStreamHandler.
Handler() - Constructor for class org.libj.net.memory.Handler
 
Handler - Class in org.libj.net.offline.http
An "offline" stream handler for the http protocol.
Handler() - Constructor for class org.libj.net.offline.http.Handler
 
Handler - Class in org.libj.net.offline.https
An "offline" stream handler for the https protocol.
Handler() - Constructor for class org.libj.net.offline.https.Handler
 
Handler.Provider - Class in org.libj.net.memory
 
hashCode() - Method in class org.libj.net.Basic
 
hashCode() - Method in class org.libj.net.Bearer
 
hashCode() - Method in class org.libj.net.DelegateHttpServletRequest
 
hashCode() - Method in class org.libj.net.DelegateURLConnection
 
hashCode() - Method in class org.libj.net.Service
 
HTTP - Class in org.libj.net
Utility functions pertaining to the HTTP protocol.

I

idToData - Static variable in class org.libj.net.MemoryURLStreamHandler
 
InetAddresses - Class in org.libj.net
Utility methods for InetAddress.
isAsyncStarted() - Method in class org.libj.net.DelegateHttpServletRequest
 
isAsyncSupported() - Method in class org.libj.net.DelegateHttpServletRequest
 
isJar(URL) - Static method in class org.libj.net.URLs
Tests whether the specified URL references a Jar resource, otherwise false.
isLocal(URI) - Static method in class org.libj.net.URIs
Tests whether the specified URI represents a location that is either a local file with scheme "file:", or a local JAR file with scheme "jar:file:".
isLocal(URL) - Static method in class org.libj.net.URLs
Tests whether the specified URL represents a location that is either a local file with protocol "file:", or a local JAR file with protocol "jar:file:".
isLocalFile(URI) - Static method in class org.libj.net.URIs
Tests whether the specified URI represents a file path.
isLocalFile(URL) - Static method in class org.libj.net.URLs
Tests whether the specified URL represents a file path.
isLocalJarFile(URI) - Static method in class org.libj.net.URIs
Tests whether the specified URI represents a location that is a local JAR file with scheme "jar:file:".
isLocalJarFile(URL) - Static method in class org.libj.net.URLs
Tests whether the specified URL represents a location that is a local JAR file with protocol "jar:file:".
isRequestedSessionIdFromCookie() - Method in class org.libj.net.DelegateHttpServletRequest
 
isRequestedSessionIdFromURL() - Method in class org.libj.net.DelegateHttpServletRequest
 
isRequestedSessionIdFromUrl() - Method in class org.libj.net.DelegateHttpServletRequest
 
isRequestedSessionIdValid() - Method in class org.libj.net.DelegateHttpServletRequest
 
isSecure() - Method in class org.libj.net.DelegateHttpServletRequest
 
isUserInRole(String) - Method in class org.libj.net.DelegateHttpServletRequest
 

L

login(String, String) - Method in class org.libj.net.DelegateHttpServletRequest
 
logout() - Method in class org.libj.net.DelegateHttpServletRequest
 

M

matches(String) - Method in class org.libj.net.AuthScheme
Tests whether the authorization header string matches this AuthScheme subclass's implementation.
MemoryURLConnection - Class in org.libj.net
A URLConnection wrapping data in the form of a byte array.
MemoryURLConnection(URL, byte[]) - Constructor for class org.libj.net.MemoryURLConnection
Creates a new MemoryURLConnection with the specified url and data.
MemoryURLStreamHandler - Class in org.libj.net
A URLStreamHandler that implements the "memory" protocol.
MemoryURLStreamHandler() - Constructor for class org.libj.net.MemoryURLStreamHandler
 

N

name() - Method in class org.libj.net.AuthScheme
Returns the name of this "Authorization" scheme.
name() - Method in class org.libj.net.Basic
 
name() - Method in class org.libj.net.Bearer
 

O

OfflineURLStreamHandler - Class in org.libj.net.offline
An "offline" stream protocol handler.
OfflineURLStreamHandler() - Constructor for class org.libj.net.offline.OfflineURLStreamHandler
 
openConnection(URL) - Method in class org.libj.net.memory.Handler
 
openConnection(URL) - Method in class org.libj.net.offline.OfflineURLStreamHandler
 
openConnection(URL, Proxy) - Method in class org.libj.net.offline.OfflineURLStreamHandler
 
org.libj.net - package org.libj.net
 
org.libj.net.memory - package org.libj.net.memory
 
org.libj.net.offline - package org.libj.net.offline
 
org.libj.net.offline.http - package org.libj.net.offline.http
 
org.libj.net.offline.https - package org.libj.net.offline.https
 

P

parse(String, Class<? extends AuthScheme>...) - Static method in class org.libj.net.AuthScheme
Returns an instance of a AuthScheme subclass specified in schemes that matches the spec of the authorization header string.
parse(String) - Method in class org.libj.net.AuthScheme
Returns a AuthScheme instance by parsing the authorization header string, or null if the specified string is null.
Provider() - Constructor for class org.libj.net.memory.Handler.Provider
 

R

REGEX - Static variable in class org.libj.net.URLs
A regular expression pattern that matches URL strings.
register() - Static method in class org.libj.net.offline.OfflineURLStreamHandler
Registers the OfflineURLStreamHandler in this JVM.
relativePath(URI, URI) - Static method in class org.libj.net.URIs
Constructs a relative path between the specified from and provided to.
removeAttribute(String) - Method in class org.libj.net.DelegateHttpServletRequest
 
removeCookie(HttpServletResponse, String) - Static method in class org.libj.net.Cookies
Remove the cookie in the response with the provided name.

S

Service - Class in org.libj.net
Class representing an IANA Network Service, as available in /etc/services.
Service(String, int, Collection<String>) - Constructor for class org.libj.net.Service
Creates a new Service with the specified service name, port, and aliases.
Services - Class in org.libj.net
Class for obtaining IANA Network Service information, as available in /etc/services.
setAllowUserInteraction(boolean) - Method in class org.libj.net.DelegateURLConnection
 
setAttribute(String, Object) - Method in class org.libj.net.DelegateHttpServletRequest
 
setCharacterEncoding(String) - Method in class org.libj.net.DelegateHttpServletRequest
 
setConnectTimeout(int) - Method in class org.libj.net.DelegateURLConnection
 
setCookieValue(HttpServletResponse, String, String, int) - Static method in class org.libj.net.Cookies
Set the cookie in the response with the provided name, value, and expiration maxAge.
setDefaultUseCaches(boolean) - Method in class org.libj.net.DelegateURLConnection
 
setDoInput(boolean) - Method in class org.libj.net.DelegateURLConnection
 
setDoOutput(boolean) - Method in class org.libj.net.DelegateURLConnection
 
setIfModifiedSince(long) - Method in class org.libj.net.DelegateURLConnection
 
setReadTimeout(int) - Method in class org.libj.net.DelegateURLConnection
 
setRequestProperties(URLConnection, Properties) - Static method in class org.libj.net.URLConnections
Sets the specified Properties in the provided URLConnection.
setRequestProperty(String, String) - Method in class org.libj.net.DelegateURLConnection
 
setUseCaches(boolean) - Method in class org.libj.net.DelegateURLConnection
 
Sockets - Class in org.libj.net
Utility functions for operations pertaining to Socket and ServerSocket classes.
startAsync() - Method in class org.libj.net.DelegateHttpServletRequest
 
startAsync(ServletRequest, ServletResponse) - Method in class org.libj.net.DelegateHttpServletRequest
 

T

target - Variable in class org.libj.net.DelegateHttpServletRequest
The target HttpServletRequest.
target - Variable in class org.libj.net.DelegateURLConnection
The target URLConnection.
toCanonicalURL(String) - Static method in class org.libj.net.URLs
Returns a canonical URL created from the specified string, or null if the specified string is null (".." and "." path names are dereferenced in a canonical URL, and redundant '/' path separators are removed).
toCanonicalURL(String, String) - Static method in class org.libj.net.URLs
Returns a canonical URL created from the specified basedir parent directory, and path child path (".." and "." path names are dereferenced in a canonical URL, and redundant '/' path separators are removed).
toString() - Method in class org.libj.net.DelegateHttpServletRequest
 
toString() - Method in class org.libj.net.DelegateURLConnection
 
toString() - Method in class org.libj.net.Service
 
toStringIP(InetAddress) - Static method in class org.libj.net.InetAddresses
Returns the decimal representation of the IP of an InetAddress
toURI(URI, String) - Static method in class org.libj.net.URIs
Returns an URI created from the specified baseURI parent URI, and path child path.
toURL(File...) - Static method in class org.libj.net.URLs
Converts an array of File objects into an array of URL objects.
tryOpenRedirectStream(URL) - Static method in class org.libj.net.URLConnections
Returns an InputStream to the specified url that may or may not exist at a redirected location.

U

upgrade(Class<T>) - Method in class org.libj.net.DelegateHttpServletRequest
 
URIComponent - Class in org.libj.net
Utility functions for encoding and decoding URI strings using a specification that is compatible with JavaScript's decodeURIComponent function.
URIs - Class in org.libj.net
Utility functions for operations pertaining to URI.
URLConnections - Class in org.libj.net
Utility functions operations pertaining to URLConnection.
URLs - Class in org.libj.net
Utility functions for operations pertaining to URL.

W

withLiteralHost(String) - Static method in class org.libj.net.URLs
Returns a URL for which the host is treated as a literal string (as opposed to its resolved IP address, as is dereferenced by default during the URL.equals(Object) and URL.hashCode() operations).
A B C D E F G H I L M N O P R S T U W 
Skip navigation links

Copyright © 2020 LibJ. All rights reserved.