|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.google.appengine.api.datastore.Text
public final class Text
Text
wraps around a string of unlimited size.
Ordinary Java strings stored as properties in Entity
objects are limited to 500 characters. However, Text
objects can also be stored in properties, and are unlimited in
size. However, they will not be indexed for query purposes.
Field Summary | |
---|---|
static long |
serialVersionUID
|
Constructor Summary | |
---|---|
Text(java.lang.String value)
Construct a new Text object with the specified value. |
Method Summary | |
---|---|
boolean |
equals(java.lang.Object object)
Two Text objects are considered equal if their content
strings match exactly. |
java.lang.String |
getValue()
Return the value of this Text . |
int |
hashCode()
|
java.lang.String |
toString()
Returns the first 70 characters of the underlying string. |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final long serialVersionUID
Constructor Detail |
---|
public Text(java.lang.String value)
Text
object with the specified value.
This object cannot be modified after construction.
Method Detail |
---|
public java.lang.String getValue()
Text
.
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object object)
Text
objects are considered equal if their content
strings match exactly.
equals
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |