Class AsyncClientClass
java.lang.Object
software.amazon.awssdk.codegen.poet.client.AsyncClientInterface
software.amazon.awssdk.codegen.poet.client.AsyncClientClass
- All Implemented Interfaces:
ClassSpec
-
Field Summary
Fields inherited from class software.amazon.awssdk.codegen.poet.client.AsyncClientInterface
STREAMING_TYPE_VARIABLE
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncom.squareup.javapoet.ClassName
An optional hook to allow inclusion of static imports for example converting:Methods inherited from class software.amazon.awssdk.codegen.poet.client.AsyncClientInterface
poetSpec
-
Constructor Details
-
AsyncClientClass
-
-
Method Details
-
className
public com.squareup.javapoet.ClassName className()- Specified by:
className
in interfaceClassSpec
- Overrides:
className
in classAsyncClientInterface
- Returns:
- The Poet representation of the class being generated, this may be used by other classes
-
staticImports
Description copied from interface:ClassSpec
An optional hook to allow inclusion of static imports for example converting:
toimport software.amazon.awssdk.utils.StringUtils; //... if(StringUtils.isBlank(value))...
import software.amazon.awssdk.utils.StringUtils.isBlank; //... if(isBlank(value))...
- Returns:
- the static imports to include
-