Class ReplaceableAttribute

java.lang.Object
com.amazonaws.services.simpledb.model.ReplaceableAttribute
All Implemented Interfaces:
Serializable, Cloneable

public class ReplaceableAttribute extends Object implements Serializable, Cloneable

See Also:
  • Constructor Details

    • ReplaceableAttribute

      public ReplaceableAttribute()
      Default constructor for ReplaceableAttribute object. Callers should use the setter or fluent setter (with...) methods to initialize the object after creating it.
    • ReplaceableAttribute

      public ReplaceableAttribute(String name, String value, Boolean replace)
      Constructs a new ReplaceableAttribute object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.
      Parameters:
      name - The name of the replaceable attribute.
      value - The value of the replaceable attribute.
      replace - A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false.
  • Method Details

    • setName

      public void setName(String name)
      The name of the replaceable attribute.
      Parameters:
      name - The name of the replaceable attribute.
    • getName

      public String getName()
      The name of the replaceable attribute.
      Returns:
      The name of the replaceable attribute.
    • withName

      public ReplaceableAttribute withName(String name)
      The name of the replaceable attribute.
      Parameters:
      name - The name of the replaceable attribute.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • setValue

      public void setValue(String value)
      The value of the replaceable attribute.
      Parameters:
      value - The value of the replaceable attribute.
    • getValue

      public String getValue()
      The value of the replaceable attribute.
      Returns:
      The value of the replaceable attribute.
    • withValue

      public ReplaceableAttribute withValue(String value)
      The value of the replaceable attribute.
      Parameters:
      value - The value of the replaceable attribute.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • setReplace

      public void setReplace(Boolean replace)
      A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false.
      Parameters:
      replace - A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false.
    • getReplace

      public Boolean getReplace()
      A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false.
      Returns:
      A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false.
    • withReplace

      public ReplaceableAttribute withReplace(Boolean replace)
      A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false.
      Parameters:
      replace - A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • isReplace

      public Boolean isReplace()
      A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false.
      Returns:
      A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false.
    • toString

      public String toString()
      Returns a string representation of this object; useful for testing and debugging.
      Overrides:
      toString in class Object
      Returns:
      A string representation of this object.
      See Also:
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • clone

      public ReplaceableAttribute clone()
      Overrides:
      clone in class Object