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

A

AbstractMethod - Class in org.dmfs.httpessentials.methods
An abstract HttpMethod.
AbstractMethod(String, boolean) - Constructor for class org.dmfs.httpessentials.methods.AbstractMethod
Instantiates a new HttpMethod with the given verb.
ACCEPTED - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 202 Accepted

B

BAD_GATEWAY - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 502 Bad Gateway
BAD_REQUEST - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 400 Bad Request

C

charset(String) - Method in interface org.dmfs.httpessentials.types.MediaType
Returns the value of the charset parameter of this content type.
ClientErrorException - Exception in org.dmfs.httpessentials.exceptions
This is a special UnexpectedStatusException for 4xx status codes (i.e. client errors).
ClientErrorException(HttpStatus) - Constructor for exception org.dmfs.httpessentials.exceptions.ClientErrorException
Create a new ClientErrorException.
ClientErrorException(HttpStatus, String) - Constructor for exception org.dmfs.httpessentials.exceptions.ClientErrorException
Create a new ClientErrorException with a message.
CONFLICT - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 409 Conflict
CONNECT - Static variable in interface org.dmfs.httpessentials.HttpMethod
HTTP Method CONNECT
contains(HeaderType<?>) - Method in interface org.dmfs.httpessentials.headers.Headers
Returns whether these Headers contain a Header of the given HeaderType.
contentLength() - Method in interface org.dmfs.httpessentials.client.HttpRequestEntity
Returns the length of the content, if known.
contentLength() - Method in interface org.dmfs.httpessentials.client.HttpResponseEntity
Returns the length of the content, if known.
contentStream() - Method in interface org.dmfs.httpessentials.client.HttpResponseEntity
Returns the content InputStream of the entity.
contentType() - Method in interface org.dmfs.httpessentials.client.HttpRequestEntity
Returns the MediaType of the entity, if known.
contentType() - Method in interface org.dmfs.httpessentials.client.HttpResponseEntity
Returns the MediaType of the entity, if known.
CONTINUE - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 100 Continue
count() - Method in exception org.dmfs.httpessentials.exceptions.TooManyRedirectsException
Get the number of redirects that has led to this exception.
CREATED - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 201 Created

D

DELETE - Static variable in interface org.dmfs.httpessentials.HttpMethod
HTTP Method DELETE

E

entity(ValueType) - Method in interface org.dmfs.httpessentials.headers.HeaderType
Factory method to create Headers of this type from a value.
entity(ValueType) - Method in interface org.dmfs.httpessentials.parameters.ParameterType
Factory method to create Parameters of this type from a value.
Entity<ValueType> - Interface in org.dmfs.httpessentials.typedentity
Interface of an entity that has a specific EntityType and a value.
entity(ValueType) - Method in interface org.dmfs.httpessentials.typedentity.EntityType
Factory method to create Entitys of this EntityType from a value.
EntityConverter<ValueType> - Interface in org.dmfs.httpessentials.typedentity
Helper to convert Entity values to instances of their respective ValueType and back to String representations.
entityFromString(String) - Method in interface org.dmfs.httpessentials.headers.HeaderType
Factory method to create Headers of this type from the given String representation.
entityFromString(String) - Method in interface org.dmfs.httpessentials.parameters.ParameterType
Factory method to create Parameters of this type from the given String representation.
entityFromString(String) - Method in interface org.dmfs.httpessentials.typedentity.EntityType
Factory method to create Entitys of this type from the given String representation.
EntityType<ValueType> - Interface in org.dmfs.httpessentials.typedentity
Represents type of an Entity.
equals(Object) - Method in interface org.dmfs.httpessentials.HttpStatus
 
equals(Object) - Method in class org.dmfs.httpessentials.methods.AbstractMethod
 
equals(Object) - Method in class org.dmfs.httpessentials.status.NoneHttpStatus
 
equals(Object) - Method in class org.dmfs.httpessentials.status.SimpleHttpStatus
 
equals(Object) - Method in class org.dmfs.httpessentials.status.StatusLineHttpStatus
 
execute(URI, HttpRequest<T>) - Method in interface org.dmfs.httpessentials.client.HttpRequestExecutor
Sends the given HttpRequest to the given URI and returns the result.
EXPECTATION_FAILED - Static variable in interface org.dmfs.httpessentials.HttpStatus

F

FAILED_DEPENDENCY - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 424 Failed Dependency (WebDAV)
firstParameter(ParameterType<T>, T) - Method in interface org.dmfs.httpessentials.parameters.Parametrized
Returns the first Parameter of the given type or a parameter with a default value if no such parameter exists.
FORBIDDEN - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 403 Forbidden
FOUND - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 302 Found

G

GATEWAY_TIMEOUT - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 504 Gateway Timeout
GET - Static variable in interface org.dmfs.httpessentials.HttpMethod
HTTP Method GET
GONE - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 410 Gone

H

handleResponse(HttpResponse) - Method in interface org.dmfs.httpessentials.client.HttpResponseHandler
Actually handles the HttpResponse.
hashCode() - Method in interface org.dmfs.httpessentials.HttpStatus
 
hashCode() - Method in class org.dmfs.httpessentials.methods.AbstractMethod
 
hashCode() - Method in class org.dmfs.httpessentials.status.NoneHttpStatus
 
hashCode() - Method in class org.dmfs.httpessentials.status.SimpleHttpStatus
 
hashCode() - Method in class org.dmfs.httpessentials.status.StatusLineHttpStatus
 
hasParameter(ParameterType<T>) - Method in interface org.dmfs.httpessentials.parameters.Parametrized
Checks whether this object has a Parameter of the given ParameterType.
HEAD - Static variable in interface org.dmfs.httpessentials.HttpMethod
HTTP Method HEAD
Header<ValueType> - Interface in org.dmfs.httpessentials.headers
Interface of an HTTP header.
header(SingletonHeaderType<T>) - Method in interface org.dmfs.httpessentials.headers.Headers
Returns the value of the header of the given SingletonHeaderType.
header(ListHeaderType<T>) - Method in interface org.dmfs.httpessentials.headers.Headers
Returns the value of the header of the given ListHeaderType.
headers() - Method in interface org.dmfs.httpessentials.client.HttpRequest
Returns a Headers containing the Headers to send with the request.
headers() - Method in interface org.dmfs.httpessentials.client.HttpResponse
Returns the response headers.
Headers - Interface in org.dmfs.httpessentials.headers
Interface of an object that holds a list of Headers.
HeaderType<ValueType> - Interface in org.dmfs.httpessentials.headers
Represents a header type.
HTTP_VERSION_NOT_SUPPORTED - Static variable in interface org.dmfs.httpessentials.HttpStatus
HttpException - Exception in org.dmfs.httpessentials.exceptions
An Exception that's thrown when an error at HTTP level occurred.
HttpException(String) - Constructor for exception org.dmfs.httpessentials.exceptions.HttpException
Create a new HttpException with a message.
HttpException(String, Throwable) - Constructor for exception org.dmfs.httpessentials.exceptions.HttpException
Create a new HttpException with a message and a cause.
HttpMethod - Interface in org.dmfs.httpessentials
Represents an HTTP method and provides static members for HTTP methods defined in RFC 7231, section 4.3 and RFC 5789
HttpRequest<T> - Interface in org.dmfs.httpessentials.client
Defines an interface of an HTTP request.
HttpRequestEntity - Interface in org.dmfs.httpessentials.client
Defines an interface of an HTTP message request body entity.
HttpRequestExecutor - Interface in org.dmfs.httpessentials.client
The interface of an instance that knows how to execute an HttpRequest.
HttpResponse - Interface in org.dmfs.httpessentials.client
An interface of an HTTP response object.
HttpResponseEntity - Interface in org.dmfs.httpessentials.client
Defines an interface of an HTTP response message body entity.
HttpResponseHandler<T> - Interface in org.dmfs.httpessentials.client
An interface of a handler for responses.
HttpStatus - Interface in org.dmfs.httpessentials
Interface of an HTTP status.

I

IdempotentMethod - Class in org.dmfs.httpessentials.methods
An idempotent HttpMethod that's not safe.
IdempotentMethod(String, boolean) - Constructor for class org.dmfs.httpessentials.methods.IdempotentMethod
 
INSUFFICIENT_STORAGE - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 507 Insufficient Storage (WebDAV)
INTERNAL_SERVER_ERROR - Static variable in interface org.dmfs.httpessentials.HttpStatus
isClientError() - Method in interface org.dmfs.httpessentials.HttpStatus
Returns whether this status represents a client error status code.
isClientError() - Method in class org.dmfs.httpessentials.status.NoneHttpStatus
 
isClientError() - Method in class org.dmfs.httpessentials.status.SimpleHttpStatus
 
isClientError() - Method in class org.dmfs.httpessentials.status.StatusLineHttpStatus
 
isIdempotent() - Method in interface org.dmfs.httpessentials.HttpMethod
Returns if this request method is idempotent, which means that sending multiple identical requests with that method has the same effect as sending one single request to the server.
isIdempotent() - Method in class org.dmfs.httpessentials.methods.IdempotentMethod
 
isIdempotent() - Method in class org.dmfs.httpessentials.methods.Method
 
isIdempotent() - Method in class org.dmfs.httpessentials.methods.SafeMethod
 
isInformational() - Method in interface org.dmfs.httpessentials.HttpStatus
Returns whether this represents an informational status code.
isInformational() - Method in class org.dmfs.httpessentials.status.NoneHttpStatus
 
isInformational() - Method in class org.dmfs.httpessentials.status.SimpleHttpStatus
 
isInformational() - Method in class org.dmfs.httpessentials.status.StatusLineHttpStatus
 
isRedirect() - Method in interface org.dmfs.httpessentials.HttpStatus
Returns whether this status represents a redirection status code.
isRedirect() - Method in class org.dmfs.httpessentials.status.NoneHttpStatus
 
isRedirect() - Method in class org.dmfs.httpessentials.status.SimpleHttpStatus
 
isRedirect() - Method in class org.dmfs.httpessentials.status.StatusLineHttpStatus
 
isSafe() - Method in interface org.dmfs.httpessentials.HttpMethod
Returns if this request method is safe, which means that the request is not intended and not expected to change any state on the server.
isSafe() - Method in class org.dmfs.httpessentials.methods.IdempotentMethod
 
isSafe() - Method in class org.dmfs.httpessentials.methods.Method
 
isSafe() - Method in class org.dmfs.httpessentials.methods.SafeMethod
 
isServerError() - Method in interface org.dmfs.httpessentials.HttpStatus
Returns whether this status represents a server error status code.
isServerError() - Method in class org.dmfs.httpessentials.status.NoneHttpStatus
 
isServerError() - Method in class org.dmfs.httpessentials.status.SimpleHttpStatus
 
isServerError() - Method in class org.dmfs.httpessentials.status.StatusLineHttpStatus
 
isSuccess() - Method in interface org.dmfs.httpessentials.HttpStatus
Returns whether this status represents a success status code.
isSuccess() - Method in class org.dmfs.httpessentials.status.NoneHttpStatus
 
isSuccess() - Method in class org.dmfs.httpessentials.status.SimpleHttpStatus
 
isSuccess() - Method in class org.dmfs.httpessentials.status.StatusLineHttpStatus
 

L

LENGTH_REQUIRED - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 411 Length Required
ListHeaderType<ValueType> - Interface in org.dmfs.httpessentials.headers
Represents a header type.
LOCKED - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 423 Locked (WebDAV)

M

mainType() - Method in interface org.dmfs.httpessentials.types.MediaType
Returns the main type.
MediaType - Interface in org.dmfs.httpessentials.types
Interface of media types as defined in RFC 2045, Section 5 and RFC 7231, Section 3.1.1.1 By contract MediaTypes are equal if their main and subtype are equal (using case-insensitive comparison).
merged(Header<List<ValueType>>, Header<List<ValueType>>) - Method in interface org.dmfs.httpessentials.headers.ListHeaderType
 
method() - Method in interface org.dmfs.httpessentials.client.HttpRequest
Returns the HTTP method of this request.
Method - Class in org.dmfs.httpessentials.methods
A HttpMethod that's neither safe nor idempotent.
Method(String, boolean) - Constructor for class org.dmfs.httpessentials.methods.Method
 
METHOD_NOT_ALLOWED - Static variable in interface org.dmfs.httpessentials.HttpStatus
MOVED_PERMANENTLY - Static variable in interface org.dmfs.httpessentials.HttpStatus
MULTIPLE_CHOICES - Static variable in interface org.dmfs.httpessentials.HttpStatus
MULTISTATUS - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 207 Multistatus (WebDAV)

N

name() - Method in interface org.dmfs.httpessentials.headers.HeaderType
Returns the name of the header.
name() - Method in interface org.dmfs.httpessentials.parameters.ParameterType
Returns the name of the parameter.
name() - Method in interface org.dmfs.httpessentials.typedentity.EntityType
Returns the name of the type.
newLocation() - Method in exception org.dmfs.httpessentials.exceptions.RedirectionException
Returns the new URI as returned by the server, may be null for some status codes.
NO_CONTENT - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 204 No Content
NON_AUTHORITATIVE_INFORMATION - Static variable in interface org.dmfs.httpessentials.HttpStatus
NONE - Static variable in interface org.dmfs.httpessentials.HttpStatus
A dummy HTTP status which can be used to return "no status".
NoneHttpStatus - Class in org.dmfs.httpessentials.status
Represents an HttpStatus for "no status".
NoneHttpStatus() - Constructor for class org.dmfs.httpessentials.status.NoneHttpStatus
Creates an HttpStatus that represents a non existing status.
NOT_ACCEPTABLE - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 406 Not Acceptable
NOT_FOUND - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 404 Not Found
NOT_IMPLEMENTED - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 501 Not Implemented
NOT_MODIFIED - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 304 Not Modified
NotFoundException - Exception in org.dmfs.httpessentials.exceptions
This Exception is thrown when an unhandled HttpStatus.NOT_FOUND status code occurs.
NotFoundException(URI) - Constructor for exception org.dmfs.httpessentials.exceptions.NotFoundException
Create a new NotFoundException.
NotFoundException(URI, String) - Constructor for exception org.dmfs.httpessentials.exceptions.NotFoundException
Create a new NotFoundException with a message.

O

OK - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 200 OK
OPTIONS - Static variable in interface org.dmfs.httpessentials.HttpMethod
HTTP Method OPTIONS
org.dmfs.httpessentials - package org.dmfs.httpessentials
 
org.dmfs.httpessentials.client - package org.dmfs.httpessentials.client
 
org.dmfs.httpessentials.exceptions - package org.dmfs.httpessentials.exceptions
 
org.dmfs.httpessentials.headers - package org.dmfs.httpessentials.headers
 
org.dmfs.httpessentials.methods - package org.dmfs.httpessentials.methods
 
org.dmfs.httpessentials.parameters - package org.dmfs.httpessentials.parameters
 
org.dmfs.httpessentials.status - package org.dmfs.httpessentials.status
 
org.dmfs.httpessentials.typedentity - package org.dmfs.httpessentials.typedentity
 
org.dmfs.httpessentials.types - package org.dmfs.httpessentials.types
 

P

Parameter<ValueType> - Interface in org.dmfs.httpessentials.parameters
The interface of a special Entity that represents a parameter.
parameters(ParameterType<T>) - Method in interface org.dmfs.httpessentials.parameters.Parametrized
Returns an Iterator of all Parameters of the given ParameterType.
ParameterType<ValueType> - Interface in org.dmfs.httpessentials.parameters
Represents the type of a parameter.
Parametrized - Interface in org.dmfs.httpessentials.parameters
Interface of an object that has typed parameters.
PARTIAL_CONTENT - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 206 Partial Content
PATCH - Static variable in interface org.dmfs.httpessentials.HttpMethod
HTTP Method PATCH
PAYLOAD_TOO_LARGE - Static variable in interface org.dmfs.httpessentials.HttpStatus
PAYMENT_REQUIRED - Static variable in interface org.dmfs.httpessentials.HttpStatus
PERMANENT_REDIRECT - Static variable in interface org.dmfs.httpessentials.HttpStatus
POST - Static variable in interface org.dmfs.httpessentials.HttpMethod
HTTP Method POST
PRECONDITION_FAILED - Static variable in interface org.dmfs.httpessentials.HttpStatus
PROCESSING - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 102 Processing (WebDAV) Note that this has been removed from the WebDAV specification in RFC 4918, see RFC 4918, section 21.4
ProtocolError - Exception in org.dmfs.httpessentials.exceptions
An Exception that's thrown when an error at application level occurred while handling a response.
ProtocolError(String) - Constructor for exception org.dmfs.httpessentials.exceptions.ProtocolError
Create a new ProtocolError with a message.
ProtocolError(String, Throwable) - Constructor for exception org.dmfs.httpessentials.exceptions.ProtocolError
Create a new ProtocolError with a message and a cause.
ProtocolException - Exception in org.dmfs.httpessentials.exceptions
An Exception that's thrown when an unrecoverable protocol error at application level occurred while handling a response.
ProtocolException(String) - Constructor for exception org.dmfs.httpessentials.exceptions.ProtocolException
Create a new ProtocolException with a message.
ProtocolException(String, Throwable) - Constructor for exception org.dmfs.httpessentials.exceptions.ProtocolException
Create a new ProtocolException with a message and a cause.
PROXY_AUTHENTICATION_REQUIRED - Static variable in interface org.dmfs.httpessentials.HttpStatus
PUT - Static variable in interface org.dmfs.httpessentials.HttpMethod
HTTP Method PUT

R

reason() - Method in interface org.dmfs.httpessentials.HttpStatus
Returns the reason phrase of this status code.
reason() - Method in class org.dmfs.httpessentials.status.NoneHttpStatus
 
reason() - Method in class org.dmfs.httpessentials.status.SimpleHttpStatus
 
reason() - Method in class org.dmfs.httpessentials.status.StatusLineHttpStatus
 
redirectingLocation() - Method in exception org.dmfs.httpessentials.exceptions.RedirectionException
Returns the URI of the location that returned the redirect.
RedirectionException - Exception in org.dmfs.httpessentials.exceptions
An Exception that's thrown when the server returns a (unhandled) redirect.
RedirectionException(HttpStatus, URI, URI) - Constructor for exception org.dmfs.httpessentials.exceptions.RedirectionException
 
RedirectionException(HttpStatus, String, URI, URI) - Constructor for exception org.dmfs.httpessentials.exceptions.RedirectionException
 
RedirectionLoopException - Exception in org.dmfs.httpessentials.exceptions
An Exception that's thrown when a redirection loop has been detected.
RedirectionLoopException(HttpStatus, URI, URI) - Constructor for exception org.dmfs.httpessentials.exceptions.RedirectionLoopException
Create a new redirection loop exception for the given status, source and destination.
REQUEST_ENTITY_TOO_LARGE - Static variable in interface org.dmfs.httpessentials.HttpStatus
Deprecated.
REQUEST_TIMEOUT - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 408 Request Timeout
REQUEST_URI_TOO_LONG - Static variable in interface org.dmfs.httpessentials.HttpStatus
Deprecated.
requestEntity() - Method in interface org.dmfs.httpessentials.client.HttpRequest
Returns an HttpRequestEntity that contains the body of this request.
requestUri() - Method in interface org.dmfs.httpessentials.client.HttpResponse
Returns the URI the request was originally sent to.
RESET_CONTENT - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 205 Reset Content
responseEntity() - Method in interface org.dmfs.httpessentials.client.HttpResponse
Returns an HttpResponseEntity representing the data in the response.
responseHandler(HttpResponse) - Method in interface org.dmfs.httpessentials.client.HttpRequest
Returns a handler for the response.
responseUri() - Method in interface org.dmfs.httpessentials.client.HttpResponse
Returns the URI of the server instance that actually handled the request.

S

SafeMethod - Class in org.dmfs.httpessentials.methods
A safe HttpMethod.
SafeMethod(String, boolean) - Constructor for class org.dmfs.httpessentials.methods.SafeMethod
 
SEE_OTHER - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 303 See Other
ServerErrorException - Exception in org.dmfs.httpessentials.exceptions
This is a special UnexpectedStatusException for 5xx status codes (i.e. server errors).
ServerErrorException(HttpStatus) - Constructor for exception org.dmfs.httpessentials.exceptions.ServerErrorException
Create a new ServerErrorException.
ServerErrorException(HttpStatus, String) - Constructor for exception org.dmfs.httpessentials.exceptions.ServerErrorException
Create a new ServerErrorException with a message.
SERVICE_UNAVAILABLE - Static variable in interface org.dmfs.httpessentials.HttpStatus
SimpleHttpStatus - Class in org.dmfs.httpessentials.status
Simple implementation of an HttpStatus.
SimpleHttpStatus(int, String) - Constructor for class org.dmfs.httpessentials.status.SimpleHttpStatus
Initialize an HttpStatus object.
SingletonHeaderType<ValueType> - Interface in org.dmfs.httpessentials.headers
Represents a header type.
status() - Method in interface org.dmfs.httpessentials.client.HttpResponse
Returns the status of the response.
status() - Method in exception org.dmfs.httpessentials.exceptions.UnexpectedStatusException
Returns the HttpStatus as returned by the server.
statusCode() - Method in interface org.dmfs.httpessentials.HttpStatus
Returns the status code.
statusCode() - Method in class org.dmfs.httpessentials.status.NoneHttpStatus
 
statusCode() - Method in class org.dmfs.httpessentials.status.SimpleHttpStatus
 
statusCode() - Method in class org.dmfs.httpessentials.status.StatusLineHttpStatus
 
StatusLineHttpStatus - Class in org.dmfs.httpessentials.status
An HttpStatus that's derived from an HTTP status line.
StatusLineHttpStatus(String) - Constructor for class org.dmfs.httpessentials.status.StatusLineHttpStatus
Creates an HttpStatus object from a given status line
subType() - Method in interface org.dmfs.httpessentials.types.MediaType
Returns the sub-type of this content type.
supportsRequestPayload() - Method in interface org.dmfs.httpessentials.HttpMethod
Returns whether this HttpMethod allows to send a message body.
supportsRequestPayload() - Method in class org.dmfs.httpessentials.methods.AbstractMethod
 
SWITCHING_PROTOCOLS - Static variable in interface org.dmfs.httpessentials.HttpStatus

T

TEMPORARY_REDIRECT - Static variable in interface org.dmfs.httpessentials.HttpStatus
TooManyRedirectsException - Exception in org.dmfs.httpessentials.exceptions
An Exception that's thrown when the client has been redirected too often.
TooManyRedirectsException(HttpStatus, int, URI, URI) - Constructor for exception org.dmfs.httpessentials.exceptions.TooManyRedirectsException
Create a new TooManyRedirectsException for the given status, source and destination.
toString() - Method in class org.dmfs.httpessentials.status.NoneHttpStatus
 
toString() - Method in interface org.dmfs.httpessentials.typedentity.Entity
Returns the String representation of the entity value.
TRACE - Static variable in interface org.dmfs.httpessentials.HttpMethod
HTTP Method TRACE
type() - Method in interface org.dmfs.httpessentials.headers.Header
Returns the HeaderType of this header.
type() - Method in interface org.dmfs.httpessentials.parameters.Parameter
Returns the ParameterType of this parameter.
type() - Method in interface org.dmfs.httpessentials.typedentity.Entity
Returns the EntityType of this value.
type() - Method in interface org.dmfs.httpessentials.types.MediaType
Returns the content type in the form <maintype>/<subtype>.

U

UNAUTHORIZED - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 401 Unauthorized
UnauthorizedException - Exception in org.dmfs.httpessentials.exceptions
This Exception is thrown when an unhandled HttpStatus.UNAUTHORIZED status code occurs.
UnauthorizedException() - Constructor for exception org.dmfs.httpessentials.exceptions.UnauthorizedException
Create a new UnauthorizedException.
UnauthorizedException(String) - Constructor for exception org.dmfs.httpessentials.exceptions.UnauthorizedException
Create a new UnauthorizedException with a message.
UnexpectedStatusException - Exception in org.dmfs.httpessentials.exceptions
An exception that's thrown when a response status code was unexpected.
UnexpectedStatusException(HttpStatus) - Constructor for exception org.dmfs.httpessentials.exceptions.UnexpectedStatusException
UnexpectedStatusException(HttpStatus, String) - Constructor for exception org.dmfs.httpessentials.exceptions.UnexpectedStatusException
Create a new UnexpectedStatusException with a message.
UNPROCESSABLE_ENTITY - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 422 Unprocessable Entity (WebDAV)
UNSUPPORTED_MEDIA_TYPE - Static variable in interface org.dmfs.httpessentials.HttpStatus
UPGRADE_REQUIRED - Static variable in interface org.dmfs.httpessentials.HttpStatus
uri() - Method in exception org.dmfs.httpessentials.exceptions.NotFoundException
Returns the URI that was not found.
URI_TOO_LONG - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 414 URI Too Long
USE_PROXY - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 305 Use Proxy

V

value() - Method in interface org.dmfs.httpessentials.typedentity.Entity
Returns the actual value of this entity.
value(String) - Method in interface org.dmfs.httpessentials.typedentity.EntityConverter
Parses the given string representation of a value into an instance of type ValueType.
valueFromString(String) - Method in interface org.dmfs.httpessentials.typedentity.EntityType
Convert a string to a value of type <ValueType>
valueString(ValueType) - Method in interface org.dmfs.httpessentials.headers.HeaderType
Returns the string representation of the given value as defined for this HeaderType.
valueString(ValueType) - Method in interface org.dmfs.httpessentials.parameters.ParameterType
Returns the string representation of the given parameter value as defined for this Parameter.
valueString(ValueType) - Method in interface org.dmfs.httpessentials.typedentity.EntityConverter
Renders the given entity value into its string representation.
valueString(ValueType) - Method in interface org.dmfs.httpessentials.typedentity.EntityType
Returns the string representation of the given entity value as defined for this EntityType.
VARIANT_ALSO_NEGOTIATES - Static variable in interface org.dmfs.httpessentials.HttpStatus
HTTP status: 506 Variant Also Negotiates (experimental)
verb() - Method in interface org.dmfs.httpessentials.HttpMethod
Returns the HTTP verb of this method.
verb() - Method in class org.dmfs.httpessentials.methods.AbstractMethod
 

W

withHeader(Header<T>) - Method in interface org.dmfs.httpessentials.headers.Headers
Returns Headers that contain the given header.
withoutHeaderType(HeaderType<T>) - Method in interface org.dmfs.httpessentials.headers.Headers
Removes any header of the given HeaderType and returns the resulting Headers.
writeContent(OutputStream) - Method in interface org.dmfs.httpessentials.client.HttpRequestEntity
Writes the content to the given OutputStream.
A B C D E F G H I L M N O P R S T U V W 
Skip navigation links