Tabnine Logo
ExportFilter.values
Code IndexAdd Tabnine to your IDE (free)

How to use
values
method
in
software.amazon.awssdk.services.applicationdiscovery.model.ExportFilter

Best Java code snippets using software.amazon.awssdk.services.applicationdiscovery.model.ExportFilter.values (Showing top 13 results out of 315)

origin: aws/aws-sdk-java-v2

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "name":
    return Optional.ofNullable(clazz.cast(name()));
  case "values":
    return Optional.ofNullable(clazz.cast(values()));
  case "condition":
    return Optional.ofNullable(clazz.cast(condition()));
  default:
    return Optional.empty();
  }
}
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("ExportFilter").add("Name", name()).add("Values", values()).add("Condition", condition()).build();
}
origin: software.amazon.awssdk/applicationdiscovery

/**
 * 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("ExportFilter").add("Name", name()).add("Values", values()).add("Condition", condition()).build();
}
origin: software.amazon.awssdk/applicationdiscovery

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "name":
    return Optional.ofNullable(clazz.cast(name()));
  case "values":
    return Optional.ofNullable(clazz.cast(values()));
  case "condition":
    return Optional.ofNullable(clazz.cast(condition()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/discovery

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "name":
    return Optional.ofNullable(clazz.cast(name()));
  case "values":
    return Optional.ofNullable(clazz.cast(values()));
  case "condition":
    return Optional.ofNullable(clazz.cast(condition()));
  default:
    return Optional.empty();
  }
}
origin: aws/aws-sdk-java-v2

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(name());
  hashCode = 31 * hashCode + Objects.hashCode(values());
  hashCode = 31 * hashCode + Objects.hashCode(condition());
  return hashCode;
}
origin: software.amazon.awssdk/discovery

@Override
public String toString() {
  return ToString.builder("ExportFilter").add("Name", name()).add("Values", values()).add("Condition", condition()).build();
}
origin: software.amazon.awssdk/applicationdiscovery

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(name());
  hashCode = 31 * hashCode + Objects.hashCode(values());
  hashCode = 31 * hashCode + Objects.hashCode(condition());
  return hashCode;
}
origin: software.amazon.awssdk/discovery

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(name());
  hashCode = 31 * hashCode + Objects.hashCode(values());
  hashCode = 31 * hashCode + Objects.hashCode(condition());
  return hashCode;
}
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 ExportFilter)) {
    return false;
  }
  ExportFilter other = (ExportFilter) obj;
  return Objects.equals(name(), other.name()) && Objects.equals(values(), other.values())
      && Objects.equals(condition(), other.condition());
}
origin: software.amazon.awssdk/discovery

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof ExportFilter)) {
    return false;
  }
  ExportFilter other = (ExportFilter) obj;
  return Objects.equals(name(), other.name()) && Objects.equals(values(), other.values())
      && Objects.equals(condition(), other.condition());
}
origin: software.amazon.awssdk/applicationdiscovery

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof ExportFilter)) {
    return false;
  }
  ExportFilter other = (ExportFilter) obj;
  return Objects.equals(name(), other.name()) && Objects.equals(values(), other.values())
      && Objects.equals(condition(), other.condition());
}
origin: software.amazon.awssdk/discovery

  /**
   * Marshall the given parameter object
   */
  public void marshall(ExportFilter exportFilter, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(exportFilter, "exportFilter");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(exportFilter.name(), NAME_BINDING);
      protocolMarshaller.marshall(exportFilter.values(), VALUES_BINDING);
      protocolMarshaller.marshall(exportFilter.condition(), CONDITION_BINDING);
    } catch (Exception e) {
      throw SdkClientException.builder().message("Unable to marshall request to JSON: " + e.getMessage()).cause(e).build();
    }
  }
}
software.amazon.awssdk.services.applicationdiscovery.modelExportFiltervalues

Javadoc

A single agentId for a Discovery Agent. An agentId can be found using the DescribeAgents action. Typically an ADS agentId is in the form o-0123456789abcdef0 .

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

Popular methods of ExportFilter

  • <init>
  • builder
  • condition
    Supported condition: EQUALS
  • name
    A single ExportFilter name. Supported filters: agentId.

Popular in Java

  • Creating JSON documents from java classes using gson
  • onCreateOptionsMenu (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • findViewById (Activity)
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • JList (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Top PhpStorm plugins
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