Package | Description |
---|---|
manifold.json.rt.api |
Modifier and Type | Method and Description |
---|---|
Requester.Format |
Requester.getFormat() |
static Requester.Format |
Requester.Format.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Requester.Format[] |
Requester.Format.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
<R> R |
Requester.delete(String urlSuffix,
Object arguments,
Requester.Format format)
Make an HTTP DELETE request to
urlBase + urlSuffix . |
IJsonList<T> |
Requester.getMany(String urlSuffix,
Object arguments,
Requester.Format format)
Make an HTTP GET request to
urlBase + urlSuffix . |
T |
Requester.getOne(String urlSuffix,
Object arguments,
Requester.Format format)
Make an HTTP GET request to
urlBase + urlSuffix . |
<R> R |
Requester.patchMany(String urlSuffix,
List<T> payload,
Requester.Format format)
Make an HTTP PATCH request to
urlBase + urlSuffix . |
<R> R |
Requester.patchOne(String urlSuffix,
T payload,
Requester.Format format)
Make an HTTP PATCH request to
urlBase + urlSuffix . |
<R> R |
Requester.postMany(String urlSuffix,
List<T> payload,
Requester.Format format)
Make an HTTP POST request to
urlBase + urlSuffix . |
<R> R |
Requester.postOne(String urlSuffix,
T payload,
Requester.Format format)
Make an HTTP POST request to
urlBase + urlSuffix . |
<R> R |
Requester.putMany(String urlSuffix,
List<T> payload,
Requester.Format format)
Make an HTTP PUT request to
urlBase + urlSuffix . |
<R> R |
Requester.putOne(String urlSuffix,
T payload,
Requester.Format format)
Make an HTTP PUT request to
urlBase + urlSuffix . |
Requester<T> |
Requester.withResponseFormat(Requester.Format format)
Set the default format expected in the response.
|
Copyright © 2024. All rights reserved.