Class Text
- java.lang.Object
-
- com.google.appengine.api.datastore.Text
-
- All Implemented Interfaces:
Serializable
public final class Text extends Object implements Serializable
Textwraps around a string of unlimited size.Ordinary Java strings stored as properties in
Entityobjects are limited to 1500 bytes. However,Textobjects can also be stored in properties, and are unlimited in size. However, they will not be indexed for query purposes.Consider using a standard Java string and storing it with the
PropertyContainer.setUnindexedProperty(java.lang.String, java.lang.Object)method instead.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static longserialVersionUID
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(@Nullable Object object)TwoTextobjects are considered equal if their content strings match exactly.StringgetValue()Return the value of thisText.inthashCode()StringtoString()Returns the first 70 characters of the underlying string.
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Text
public Text(String value)
Construct a newTextobject with the specified value. This object cannot be modified after construction.
-
-