com.google.appengine.api.datastore
Class Link
- java.lang.Object
-
- com.google.appengine.api.datastore.Link
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Link>
public final class Link extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<Link>
ALink
is a URL of limited length.In addition to adding the meaning of
URL
onto a String, aLink
can also be longer than a Text value, with a limit of 2083 characters.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description static long
serialVersionUID
-
Constructor Summary
Constructors Constructor and Description Link(java.lang.String value)
Constructs a newLink
object with the specified value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description int
compareTo(Link l)
boolean
equals(java.lang.Object object)
TwoLink
objects are considered equal if their content strings match exactly.java.lang.String
getValue()
Returns the value of thisLink
.int
hashCode()
java.lang.String
toString()
Returns the entire text of thisLink
.
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Link
public Link(java.lang.String value)
Constructs a newLink
object with the specified value. This object cannot be modified after construction.
-
-
Method Detail
-
getValue
public java.lang.String getValue()
Returns the value of thisLink
.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object object)
TwoLink
objects are considered equal if their content strings match exactly.- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
Returns the entire text of thisLink
.- Overrides:
toString
in classjava.lang.Object
-
-