Tabnine Logo
ListUserPoolsResponse.userPools
Code IndexAdd Tabnine to your IDE (free)

How to use
userPools
method
in
software.amazon.awssdk.services.cognitoidentityprovider.model.ListUserPoolsResponse

Best Java code snippets using software.amazon.awssdk.services.cognitoidentityprovider.model.ListUserPoolsResponse.userPools (Showing top 8 results out of 315)

origin: aws/aws-sdk-java-v2

/**
 * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
 * redacted from this string using a placeholder value.
 */
@Override
public String toString() {
  return ToString.builder("ListUserPoolsResponse").add("UserPools", userPools()).add("NextToken", nextToken()).build();
}
origin: aws/aws-sdk-java-v2

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof ListUserPoolsResponse)) {
    return false;
  }
  ListUserPoolsResponse other = (ListUserPoolsResponse) obj;
  return Objects.equals(userPools(), other.userPools()) && Objects.equals(nextToken(), other.nextToken());
}
origin: aws/aws-sdk-java-v2

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(userPools());
  hashCode = 31 * hashCode + Objects.hashCode(nextToken());
  return hashCode;
}
origin: aws/aws-sdk-java-v2

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "UserPools":
    return Optional.ofNullable(clazz.cast(userPools()));
  case "NextToken":
    return Optional.ofNullable(clazz.cast(nextToken()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cognitoidp

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(userPools());
  hashCode = 31 * hashCode + Objects.hashCode(nextToken());
  return hashCode;
}
origin: software.amazon.awssdk/cognitoidp

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "UserPools":
    return Optional.ofNullable(clazz.cast(userPools()));
  case "NextToken":
    return Optional.ofNullable(clazz.cast(nextToken()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cognitoidp

@Override
public String toString() {
  return ToString.builder("ListUserPoolsResponse").add("UserPools", userPools()).add("NextToken", nextToken()).build();
}
origin: software.amazon.awssdk/cognitoidp

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof ListUserPoolsResponse)) {
    return false;
  }
  ListUserPoolsResponse other = (ListUserPoolsResponse) obj;
  return Objects.equals(userPools(), other.userPools()) && Objects.equals(nextToken(), other.nextToken());
}
software.amazon.awssdk.services.cognitoidentityprovider.modelListUserPoolsResponseuserPools

Javadoc

The user pools from the response to list users.

Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.

Popular methods of ListUserPoolsResponse

  • <init>
  • nextToken
    An identifier that was returned from the previous call to this operation, which can be used to retu
  • builder

Popular in Java

  • Parsing JSON documents to java classes using gson
  • runOnUiThread (Activity)
  • getSharedPreferences (Context)
  • setContentView (Activity)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now