Tabnine Logo
DeleteAttributesRequest.getItemName
Code IndexAdd Tabnine to your IDE (free)

How to use
getItemName
method
in
com.amazonaws.services.simpledb.model.DeleteAttributesRequest

Best Java code snippets using com.amazonaws.services.simpledb.model.DeleteAttributesRequest.getItemName (Showing top 12 results out of 315)

origin: aws/aws-sdk-java

/**
 * 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.
 *
 * @return A string representation of this object.
 *
 * @see java.lang.Object#toString()
 */
@Override
public String toString() {
  StringBuilder sb = new StringBuilder();
  sb.append("{");
  if (getDomainName() != null)
    sb.append("DomainName: ").append(getDomainName()).append(",");
  if (getItemName() != null)
    sb.append("ItemName: ").append(getItemName()).append(",");
  if (getAttributes() != null)
    sb.append("Attributes: ").append(getAttributes()).append(",");
  if (getExpected() != null)
    sb.append("Expected: ").append(getExpected());
  sb.append("}");
  return sb.toString();
}
origin: aws/aws-sdk-java

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getDomainName() == null) ? 0 : getDomainName().hashCode());
  hashCode = prime * hashCode + ((getItemName() == null) ? 0 : getItemName().hashCode());
  hashCode = prime * hashCode + ((getAttributes() == null) ? 0 : getAttributes().hashCode());
  hashCode = prime * hashCode + ((getExpected() == null) ? 0 : getExpected().hashCode());
  return hashCode;
}
origin: aws/aws-sdk-java

@Override
public boolean equals(Object obj) {
  if (this == obj)
    return true;
  if (obj == null)
    return false;
  if (obj instanceof DeleteAttributesRequest == false)
    return false;
  DeleteAttributesRequest other = (DeleteAttributesRequest) obj;
  if (other.getDomainName() == null ^ this.getDomainName() == null)
    return false;
  if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == false)
    return false;
  if (other.getItemName() == null ^ this.getItemName() == null)
    return false;
  if (other.getItemName() != null && other.getItemName().equals(this.getItemName()) == false)
    return false;
  if (other.getAttributes() == null ^ this.getAttributes() == null)
    return false;
  if (other.getAttributes() != null && other.getAttributes().equals(this.getAttributes()) == false)
    return false;
  if (other.getExpected() == null ^ this.getExpected() == null)
    return false;
  if (other.getExpected() != null && other.getExpected().equals(this.getExpected()) == false)
    return false;
  return true;
}
origin: aws/aws-sdk-java

if (deleteAttributesRequest.getItemName() != null) {
  request.addParameter("ItemName", StringUtils.fromString(deleteAttributesRequest.getItemName()));
origin: aws-amplify/aws-sdk-android

/**
 * Returns a string representation of this object; useful for testing and
 * debugging.
 *
 * @return A string representation of this object.
 *
 * @see java.lang.Object#toString()
 */
@Override
public String toString() {
  StringBuilder sb = new StringBuilder();
  sb.append("{");
  if (getDomainName() != null) sb.append("DomainName: " + getDomainName() + ",");
  if (getItemName() != null) sb.append("ItemName: " + getItemName() + ",");
  if (getAttributes() != null) sb.append("Attributes: " + getAttributes() + ",");
  if (getExpected() != null) sb.append("Expected: " + getExpected() );
  sb.append("}");
  return sb.toString();
}

origin: aws-amplify/aws-sdk-android

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  
  hashCode = prime * hashCode + ((getDomainName() == null) ? 0 : getDomainName().hashCode()); 
  hashCode = prime * hashCode + ((getItemName() == null) ? 0 : getItemName().hashCode()); 
  hashCode = prime * hashCode + ((getAttributes() == null) ? 0 : getAttributes().hashCode()); 
  hashCode = prime * hashCode + ((getExpected() == null) ? 0 : getExpected().hashCode()); 
  return hashCode;
}

origin: aws-amplify/aws-sdk-android

@Override
public boolean equals(Object obj) {
  if (this == obj) return true;
  if (obj == null) return false;
  if (obj instanceof DeleteAttributesRequest == false) return false;
  DeleteAttributesRequest other = (DeleteAttributesRequest)obj;
  
  if (other.getDomainName() == null ^ this.getDomainName() == null) return false;
  if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == false) return false; 
  if (other.getItemName() == null ^ this.getItemName() == null) return false;
  if (other.getItemName() != null && other.getItemName().equals(this.getItemName()) == false) return false; 
  if (other.getAttributes() == null ^ this.getAttributes() == null) return false;
  if (other.getAttributes() != null && other.getAttributes().equals(this.getAttributes()) == false) return false; 
  if (other.getExpected() == null ^ this.getExpected() == null) return false;
  if (other.getExpected() != null && other.getExpected().equals(this.getExpected()) == false) return false; 
  return true;
}

origin: com.amazonaws/aws-java-sdk-simpledb

/**
 * 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.
 *
 * @return A string representation of this object.
 *
 * @see java.lang.Object#toString()
 */
@Override
public String toString() {
  StringBuilder sb = new StringBuilder();
  sb.append("{");
  if (getDomainName() != null)
    sb.append("DomainName: ").append(getDomainName()).append(",");
  if (getItemName() != null)
    sb.append("ItemName: ").append(getItemName()).append(",");
  if (getAttributes() != null)
    sb.append("Attributes: ").append(getAttributes()).append(",");
  if (getExpected() != null)
    sb.append("Expected: ").append(getExpected());
  sb.append("}");
  return sb.toString();
}
origin: aws-amplify/aws-sdk-android

  request.addParameter("DomainName", StringUtils.fromString(deleteAttributesRequest.getDomainName()));
if (deleteAttributesRequest.getItemName() != null) {
  request.addParameter("ItemName", StringUtils.fromString(deleteAttributesRequest.getItemName()));
origin: com.amazonaws/aws-java-sdk-simpledb

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getDomainName() == null) ? 0 : getDomainName().hashCode());
  hashCode = prime * hashCode + ((getItemName() == null) ? 0 : getItemName().hashCode());
  hashCode = prime * hashCode + ((getAttributes() == null) ? 0 : getAttributes().hashCode());
  hashCode = prime * hashCode + ((getExpected() == null) ? 0 : getExpected().hashCode());
  return hashCode;
}
origin: com.amazonaws/aws-java-sdk-simpledb

@Override
public boolean equals(Object obj) {
  if (this == obj)
    return true;
  if (obj == null)
    return false;
  if (obj instanceof DeleteAttributesRequest == false)
    return false;
  DeleteAttributesRequest other = (DeleteAttributesRequest) obj;
  if (other.getDomainName() == null ^ this.getDomainName() == null)
    return false;
  if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == false)
    return false;
  if (other.getItemName() == null ^ this.getItemName() == null)
    return false;
  if (other.getItemName() != null && other.getItemName().equals(this.getItemName()) == false)
    return false;
  if (other.getAttributes() == null ^ this.getAttributes() == null)
    return false;
  if (other.getAttributes() != null && other.getAttributes().equals(this.getAttributes()) == false)
    return false;
  if (other.getExpected() == null ^ this.getExpected() == null)
    return false;
  if (other.getExpected() != null && other.getExpected().equals(this.getExpected()) == false)
    return false;
  return true;
}
origin: com.amazonaws/aws-java-sdk-simpledb

if (deleteAttributesRequest.getItemName() != null) {
  request.addParameter("ItemName", StringUtils.fromString(deleteAttributesRequest.getItemName()));
com.amazonaws.services.simpledb.modelDeleteAttributesRequestgetItemName

Javadoc

The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.

Popular methods of DeleteAttributesRequest

  • <init>
    Constructs a new DeleteAttributesRequest object. Callers should use the setter or fluent setter (wit
  • withAttributes
    A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data t
  • withDomainName
    The name of the domain in which to perform the operation.
  • withItemName
    The name of the item. Similar to rows on a spreadsheet, items represent individual objects that cont
  • getAttributes
    A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data t
  • getDomainName
    The name of the domain in which to perform the operation.
  • getExpected
    The update condition which, if specified, determines whether the specified attributes will be delete
  • setAttributes
    A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data t
  • setDomainName
    The name of the domain in which to perform the operation.
  • setExpected
    The update condition which, if specified, determines whether the specified attributes will be delete
  • setItemName
    The name of the item. Similar to rows on a spreadsheet, items represent individual objects that cont
  • setItemName

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSharedPreferences (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • startActivity (Activity)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • JOptionPane (javax.swing)
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top 12 Jupyter Notebook extensions
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