Class AsyncClientClass

java.lang.Object
software.amazon.awssdk.codegen.poet.client.AsyncClientInterface
software.amazon.awssdk.codegen.poet.client.AsyncClientClass
All Implemented Interfaces:
ClassSpec

public final class AsyncClientClass extends AsyncClientInterface
  • Constructor Details

  • Method Details

    • className

      public com.squareup.javapoet.ClassName className()
      Specified by:
      className in interface ClassSpec
      Overrides:
      className in class AsyncClientInterface
      Returns:
      The Poet representation of the class being generated, this may be used by other classes
    • staticImports

      public Iterable<StaticImport> staticImports()
      Description copied from interface: ClassSpec
      An optional hook to allow inclusion of static imports for example converting:
      
       import software.amazon.awssdk.utils.StringUtils;
       //...
         if(StringUtils.isBlank(value))...
       
      to
      
       import software.amazon.awssdk.utils.StringUtils.isBlank;
       //...
         if(isBlank(value))...
       
      Returns:
      the static imports to include