Java com.amazonaws.services.dynamodbv2.model AttributeValue fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.dynamodbv2.model AttributeValue fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.dynamodbv2.model AttributeValue.

The text is from its open source code.

Constructor

AttributeValue(String s)
Constructs a new AttributeValue object.
AttributeValue(java.util.List sS)
Constructs a new AttributeValue object.
AttributeValue()
Default constructor for AttributeValue object.

Method

AttributeValueaddMEntry(String key, AttributeValue value)
booleanequals(Object obj)
java.nio.ByteBuffergetB()

An attribute of type Binary.

BooleangetBOOL()

An attribute of type Boolean.

java.util.ListgetBS()

An attribute of type Binary Set.

java.util.ListgetL()

An attribute of type List.

java.util.MapgetM()

An attribute of type Map.

StringgetN()

An attribute of type Number.

java.util.ListgetNS()

An attribute of type Number Set.

BooleangetNULL()

An attribute of type Null.

StringgetS()

An attribute of type String.

java.util.ListgetSS()

An attribute of type String Set.

BooleanisBOOL()

An attribute of type Boolean.

BooleanisNULL()

An attribute of type Null.

voidsetB(java.nio.ByteBuffer b)

An attribute of type Binary.

voidsetBOOL(Boolean bOOL)

An attribute of type Boolean.

voidsetBS(java.util.Collection bS)

An attribute of type Binary Set.

voidsetL(java.util.Collection l)

An attribute of type List.

voidsetM(java.util.Map m)

An attribute of type Map.

voidsetN(String n)

An attribute of type Number.

voidsetNS(java.util.Collection nS)

An attribute of type Number Set.

voidsetNULL(Boolean nULLValue)

An attribute of type Null.

voidsetS(String s)

An attribute of type String.

voidsetSS(java.util.Collection sS)

An attribute of type String Set.

AttributeValuewithB(java.nio.ByteBuffer b)

An attribute of type Binary.

AttributeValuewithBOOL(Boolean bOOL)

An attribute of type Boolean.

AttributeValuewithN(String n)

An attribute of type Number.

AttributeValuewithNS(String... nS)

An attribute of type Number Set.

AttributeValuewithNS(java.util.Collection nS)

An attribute of type Number Set.

AttributeValuewithNULL(Boolean nULLValue)

An attribute of type Null.

AttributeValuewithS(String s)

An attribute of type String.

AttributeValuewithSS(String... sS)

An attribute of type String Set.

AttributeValuewithSS(java.util.Collection sS)

An attribute of type String Set.