|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.google.appengine.api.datastore.ShortBlob
public final class ShortBlob
ShortBlob
contains an array of bytes no longer than
DataTypeUtils.MAX_SHORT_BLOB_PROPERTY_LENGTH
. Unlike Blob
,
ShortBlobs
are indexed by the datastore and can therefore be
filtered and sorted on in queries. If your data is too large to fit
in a ShortBlob
use Blob
instead.
Field Summary | |
---|---|
static long |
serialVersionUID
|
Constructor Summary | |
---|---|
ShortBlob(byte[] bytes)
Construct a new ShortBlob with the specified bytes. |
Method Summary | |
---|---|
int |
compareTo(ShortBlob other)
|
boolean |
equals(java.lang.Object object)
Two ShortBlob objects are considered equal if their contained
bytes match exactly. |
byte[] |
getBytes()
Return the bytes stored in this ShortBlob . |
int |
hashCode()
|
java.lang.String |
toString()
Simply prints the number of bytes contained in this ShortBlob . |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final long serialVersionUID
Constructor Detail |
---|
public ShortBlob(byte[] bytes)
ShortBlob
with the specified bytes. This
blob cannot be modified after construction.
Method Detail |
---|
public byte[] getBytes()
ShortBlob
.
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object object)
ShortBlob
objects are considered equal if their contained
bytes match exactly.
equals
in class java.lang.Object
public java.lang.String toString()
ShortBlob
.
toString
in class java.lang.Object
public int compareTo(ShortBlob other)
compareTo
in interface java.lang.Comparable<ShortBlob>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |