|
Did this page help you?Yes No Tell us about it... |
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.amazonaws.services.dynamodbv2.model.AttributeValue
public class AttributeValue
Represents the data for an attribute. You can set one, and only one, of the elements.
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)
|
ByteBuffer |
getB()
Represents a Binary data type |
List<ByteBuffer> |
getBS()
Represents a Binary set data type |
String |
getN()
Represents a Number data type |
List<String> |
getNS()
Represents a Number set data type |
String |
getS()
Represents a String data type |
List<String> |
getSS()
Represents a String set data type |
int |
hashCode()
|
void |
setB(ByteBuffer b)
Represents a Binary data type |
void |
setBS(Collection<ByteBuffer> bS)
Represents a Binary set data type |
void |
setN(String n)
Represents a Number data type |
void |
setNS(Collection<String> nS)
Represents a Number set data type |
void |
setS(String s)
Represents a String data type |
void |
setSS(Collection<String> sS)
Represents a String set data type |
String |
toString()
Returns a string representation of this object; useful for testing and debugging. |
AttributeValue |
withB(ByteBuffer b)
Represents a Binary data type |
AttributeValue |
withBS(ByteBuffer... bS)
Represents a Binary set data type |
AttributeValue |
withBS(Collection<ByteBuffer> bS)
Represents a Binary set data type |
AttributeValue |
withN(String n)
Represents a Number data type |
AttributeValue |
withNS(Collection<String> nS)
Represents a Number set data type |
AttributeValue |
withNS(String... nS)
Represents a Number set data type |
AttributeValue |
withS(String s)
Represents a String data type |
AttributeValue |
withSS(Collection<String> sS)
Represents a String set data type |
AttributeValue |
withSS(String... sS)
Represents a String set data type |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public AttributeValue()
public AttributeValue(String s)
s
- Represents a String data typepublic AttributeValue(List<String> sS)
sS
- Represents a String set data typeMethod Detail |
---|
public String getS()
public void setS(String s)
s
- Represents a String data typepublic AttributeValue withS(String s)
Returns a reference to this object so that method calls can be chained together.
s
- Represents a String data typepublic String getN()
public void setN(String n)
n
- Represents a Number data typepublic AttributeValue withN(String n)
Returns a reference to this object so that method calls can be chained together.
n
- Represents a Number data typepublic ByteBuffer getB()
public void setB(ByteBuffer b)
b
- Represents a Binary data typepublic AttributeValue withB(ByteBuffer b)
Returns a reference to this object so that method calls can be chained together.
b
- Represents a Binary data typepublic List<String> getSS()
public void setSS(Collection<String> sS)
sS
- Represents a String set data typepublic AttributeValue withSS(String... sS)
Returns a reference to this object so that method calls can be chained together.
sS
- Represents a String set data typepublic AttributeValue withSS(Collection<String> sS)
Returns a reference to this object so that method calls can be chained together.
sS
- Represents a String set data typepublic List<String> getNS()
public void setNS(Collection<String> nS)
nS
- Represents a Number set data typepublic AttributeValue withNS(String... nS)
Returns a reference to this object so that method calls can be chained together.
nS
- Represents a Number set data typepublic AttributeValue withNS(Collection<String> nS)
Returns a reference to this object so that method calls can be chained together.
nS
- Represents a Number set data typepublic List<ByteBuffer> getBS()
public void setBS(Collection<ByteBuffer> bS)
bS
- Represents a Binary set data typepublic AttributeValue withBS(ByteBuffer... bS)
Returns a reference to this object so that method calls can be chained together.
bS
- Represents a Binary set data typepublic AttributeValue withBS(Collection<ByteBuffer> bS)
Returns a reference to this object so that method calls can be chained together.
bS
- Represents a Binary set data typepublic 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 |