public class AttributeValue
extends java.lang.Object
implements java.io.Serializable
Represents the data for an attribute. You can set one, and only one, of the elements.
| コンストラクタと説明 |
|---|
AttributeValue()
Default constructor for a new AttributeValue object.
|
AttributeValue(java.util.List<java.lang.String> sS)
Constructs a new AttributeValue object.
|
AttributeValue(java.lang.String s)
Constructs a new AttributeValue object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.nio.ByteBuffer |
getB()
Represents a Binary data type
|
java.util.List<java.nio.ByteBuffer> |
getBS()
Represents a Binary set data type
|
java.lang.String |
getN()
Represents a Number data type
|
java.util.List<java.lang.String> |
getNS()
Represents a Number set data type
|
java.lang.String |
getS()
Represents a String data type
|
java.util.List<java.lang.String> |
getSS()
Represents a String set data type
|
int |
hashCode() |
void |
setB(java.nio.ByteBuffer b)
Represents a Binary data type
|
void |
setBS(java.util.Collection<java.nio.ByteBuffer> bS)
Represents a Binary set data type
|
void |
setN(java.lang.String n)
Represents a Number data type
|
void |
setNS(java.util.Collection<java.lang.String> nS)
Represents a Number set data type
|
void |
setS(java.lang.String s)
Represents a String data type
|
void |
setSS(java.util.Collection<java.lang.String> sS)
Represents a String set data type
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
AttributeValue |
withB(java.nio.ByteBuffer b)
Represents a Binary data type
Returns a reference to this object so that method calls can be chained together.
|
AttributeValue |
withBS(java.nio.ByteBuffer... bS)
Represents a Binary set data type
Returns a reference to this object so that method calls can be chained together.
|
AttributeValue |
withBS(java.util.Collection<java.nio.ByteBuffer> bS)
Represents a Binary set data type
Returns a reference to this object so that method calls can be chained together.
|
AttributeValue |
withN(java.lang.String n)
Represents a Number data type
Returns a reference to this object so that method calls can be chained together.
|
AttributeValue |
withNS(java.util.Collection<java.lang.String> nS)
Represents a Number set data type
Returns a reference to this object so that method calls can be chained together.
|
AttributeValue |
withNS(java.lang.String... nS)
Represents a Number set data type
Returns a reference to this object so that method calls can be chained together.
|
AttributeValue |
withS(java.lang.String s)
Represents a String data type
Returns a reference to this object so that method calls can be chained together.
|
AttributeValue |
withSS(java.util.Collection<java.lang.String> sS)
Represents a String set data type
Returns a reference to this object so that method calls can be chained together.
|
AttributeValue |
withSS(java.lang.String... sS)
Represents a String set data type
Returns a reference to this object so that method calls can be chained together.
|
public AttributeValue()
public AttributeValue(java.lang.String s)
s - Represents a String data typepublic AttributeValue(java.util.List<java.lang.String> sS)
sS - Represents a String set data typepublic java.lang.String getS()
public void setS(java.lang.String s)
s - Represents a String data typepublic AttributeValue withS(java.lang.String s)
Returns a reference to this object so that method calls can be chained together.
s - Represents a String data typepublic java.lang.String getN()
public void setN(java.lang.String n)
n - Represents a Number data typepublic AttributeValue withN(java.lang.String n)
Returns a reference to this object so that method calls can be chained together.
n - Represents a Number data typepublic java.nio.ByteBuffer getB()
public void setB(java.nio.ByteBuffer b)
b - Represents a Binary data typepublic AttributeValue withB(java.nio.ByteBuffer b)
Returns a reference to this object so that method calls can be chained together.
b - Represents a Binary data typepublic java.util.List<java.lang.String> getSS()
public void setSS(java.util.Collection<java.lang.String> sS)
sS - Represents a String set data typepublic AttributeValue withSS(java.lang.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(java.util.Collection<java.lang.String> sS)
Returns a reference to this object so that method calls can be chained together.
sS - Represents a String set data typepublic java.util.List<java.lang.String> getNS()
public void setNS(java.util.Collection<java.lang.String> nS)
nS - Represents a Number set data typepublic AttributeValue withNS(java.lang.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(java.util.Collection<java.lang.String> nS)
Returns a reference to this object so that method calls can be chained together.
nS - Represents a Number set data typepublic java.util.List<java.nio.ByteBuffer> getBS()
public void setBS(java.util.Collection<java.nio.ByteBuffer> bS)
bS - Represents a Binary set data typepublic AttributeValue withBS(java.nio.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(java.util.Collection<java.nio.ByteBuffer> bS)
Returns a reference to this object so that method calls can be chained together.
bS - Represents a Binary set data typepublic java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object