public enum SimpleMethodOverload extends Enum<SimpleMethodOverload>
Enum Constant and Description |
---|
BYTES
Simple method only for sync operations that have a streaming output.
|
FILE
Simple method for streaming operations (input or output) that takes in the request object and a file to
upload from or download to.
|
INPUT_STREAM
Simple method only for sync operations that have a streaming output.
|
NO_ARG
Simple method that takes no arguments and creates an empty request object that delegates to the
NORMAL overload. |
NO_ARG_PAGINATED
Paginated simple method that takes no arguments and creates an empty request object.
|
NORMAL
The standard method overload.
|
PAGINATED
The standard paginated method overload that takes in a request object and returns a response object.
|
Modifier and Type | Method and Description |
---|---|
software.amazon.awssdk.codegen.docs.OperationDocProvider |
asyncDocsProvider(IntermediateModel model,
OperationModel opModel,
DocConfiguration docConfiguration) |
software.amazon.awssdk.codegen.docs.OperationDocProvider |
syncDocsProvider(IntermediateModel model,
OperationModel opModel,
DocConfiguration docConfiguration) |
static SimpleMethodOverload |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleMethodOverload[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleMethodOverload NORMAL
public static final SimpleMethodOverload PAGINATED
public static final SimpleMethodOverload NO_ARG
NORMAL
overload.public static final SimpleMethodOverload NO_ARG_PAGINATED
public static final SimpleMethodOverload FILE
public static final SimpleMethodOverload INPUT_STREAM
ResponseInputStream
to read the response
contents.public static final SimpleMethodOverload BYTES
ResponseBytes
to give byte-buffer access and convenience methods for type conversion.public static SimpleMethodOverload[] values()
for (SimpleMethodOverload c : SimpleMethodOverload.values()) System.out.println(c);
public static SimpleMethodOverload valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic software.amazon.awssdk.codegen.docs.OperationDocProvider syncDocsProvider(IntermediateModel model, OperationModel opModel, DocConfiguration docConfiguration)
public software.amazon.awssdk.codegen.docs.OperationDocProvider asyncDocsProvider(IntermediateModel model, OperationModel opModel, DocConfiguration docConfiguration)
Copyright © 2019. All rights reserved.