Java com.amazonaws.services.simpledb.util SimpleDBUtils fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.simpledb.util SimpleDBUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.simpledb.util SimpleDBUtils.

The text is from its open source code.

Method

DatedecodeDate(String value)
Decodes date value from the string representation created using encodeDate(..) function.
floatdecodeZeroPaddingFloat(String value)
Decodes zero-padded positive float value from the string representation
intdecodeZeroPaddingInt(String value)
Decodes zero-padded positive integer value from the string representation
longdecodeZeroPaddingLong(String value)
Decodes a zero-padded positive long value from the string representation
StringencodeDate(Date date)
Encodes date value into string format that can be compared lexicographically
StringencodeZeroPadding(int number, int maxNumDigits)
Encodes positive integer value into a string by zero-padding number up to the specified number of digits.
StringencodeZeroPadding(long number, int maxNumDigits)
Encodes positive long value into a string by zero-padding the value up to the specified number of digits.
StringencodeZeroPadding(float number, int maxNumDigits)
Encodes positive float value into a string by zero-padding number up to the specified number of digits
StringquoteName(String name)
Quotes and escapes an attribute name or domain name by wrapping it with backticks and escaping any backticks inside the name.
StringquoteValue(String value)
Quotes and escapes an attribute value by wrapping it with single quotes and escaping any single quotes inside the value.
StringquoteValues(Collection values)
Quotes and escapes a list of values so that they can be used in a SimpleDB query.