|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.amazonaws.services.dynamodb.model.AttributeValue
public class AttributeValue
AttributeValue can be String, Number, StringSet, NumberSet.
Constructor Summary | |
---|---|
AttributeValue()
Default constructor for a new AttributeValue object. |
|
AttributeValue(List<String> sS)
Constructs a new AttributeValue object. |
|
AttributeValue(String s)
Constructs a new AttributeValue object. |
Method Summary | |
---|---|
boolean |
equals(Object obj)
|
String |
getN()
AttributeValue can be String, Number, StringSet, NumberSet. |
List<String> |
getNS()
AttributeValue can be String, Number, StringSet, NumberSet. |
String |
getS()
AttributeValue can be String, Number, StringSet, NumberSet. |
List<String> |
getSS()
AttributeValue can be String, Number, StringSet, NumberSet. |
int |
hashCode()
|
void |
setN(String n)
AttributeValue can be String, Number, StringSet, NumberSet. |
void |
setNS(Collection<String> nS)
AttributeValue can be String, Number, StringSet, NumberSet. |
void |
setS(String s)
AttributeValue can be String, Number, StringSet, NumberSet. |
void |
setSS(Collection<String> sS)
AttributeValue can be String, Number, StringSet, NumberSet. |
String |
toString()
Returns a string representation of this object; useful for testing and debugging. |
AttributeValue |
withN(String n)
AttributeValue can be String, Number, StringSet, NumberSet. |
AttributeValue |
withNS(Collection<String> nS)
AttributeValue can be String, Number, StringSet, NumberSet. |
AttributeValue |
withNS(String... nS)
AttributeValue can be String, Number, StringSet, NumberSet. |
AttributeValue |
withS(String s)
AttributeValue can be String, Number, StringSet, NumberSet. |
AttributeValue |
withSS(Collection<String> sS)
AttributeValue can be String, Number, StringSet, NumberSet. |
AttributeValue |
withSS(String... sS)
AttributeValue can be String, Number, StringSet, NumberSet. |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public AttributeValue()
public AttributeValue(String s)
s
- AttributeValue can be String, Number, StringSet, NumberSet.
Strings are Unicode with UTF-8 binary encoding. The maximum size is
limited by the size of the primary key (1024 bytes as a range part of
a key or 2048 bytes as a single part hash key) or the item size (64k).public AttributeValue(List<String> sS)
sS
- AttributeValue can be String, Number, StringSet, NumberSet.
A Set of Strings.Method Detail |
---|
public String getS()
public void setS(String s)
s
- AttributeValue can be String, Number, StringSet, NumberSet. Strings
are Unicode with UTF-8 binary encoding. The maximum size is limited by
the size of the primary key (1024 bytes as a range part of a key or
2048 bytes as a single part hash key) or the item size (64k).public AttributeValue withS(String s)
Returns a reference to this object so that method calls can be chained together.
s
- AttributeValue can be String, Number, StringSet, NumberSet. Strings
are Unicode with UTF-8 binary encoding. The maximum size is limited by
the size of the primary key (1024 bytes as a range part of a key or
2048 bytes as a single part hash key) or the item size (64k).
public String getN()
public void setN(String n)
n
- AttributeValue can be String, Number, StringSet, NumberSet. Numbers
are positive or negative exact-value decimals and integers. A number
can have up to 38 digits precision and can be between 10^-128 to
10^+126.public AttributeValue withN(String n)
Returns a reference to this object so that method calls can be chained together.
n
- AttributeValue can be String, Number, StringSet, NumberSet. Numbers
are positive or negative exact-value decimals and integers. A number
can have up to 38 digits precision and can be between 10^-128 to
10^+126.
public List<String> getSS()
public void setSS(Collection<String> sS)
sS
- AttributeValue can be String, Number, StringSet, NumberSet. A Set of
Strings.public AttributeValue withSS(String... sS)
Returns a reference to this object so that method calls can be chained together.
sS
- AttributeValue can be String, Number, StringSet, NumberSet. A Set of
Strings.
public AttributeValue withSS(Collection<String> sS)
Returns a reference to this object so that method calls can be chained together.
sS
- AttributeValue can be String, Number, StringSet, NumberSet. A Set of
Strings.
public List<String> getNS()
public void setNS(Collection<String> nS)
nS
- AttributeValue can be String, Number, StringSet, NumberSet. A Set of
Numbers.public AttributeValue withNS(String... nS)
Returns a reference to this object so that method calls can be chained together.
nS
- AttributeValue can be String, Number, StringSet, NumberSet. A Set of
Numbers.
public AttributeValue withNS(Collection<String> nS)
Returns a reference to this object so that method calls can be chained together.
nS
- AttributeValue can be String, Number, StringSet, NumberSet. A Set of
Numbers.
public String toString()
toString
in class Object
Object.toString()
public int hashCode()
hashCode
in class Object
public boolean equals(Object obj)
equals
in class Object
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |