public final class Link extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<Link>
Link is a URL of limited length.
In addition to adding the meaning of URL onto a String, a Link can also be
longer than a Text value, with a limit of 2083 characters.
| Modifier and Type | Field and Description |
|---|---|
static long |
serialVersionUID |
| Constructor and Description |
|---|
Link(java.lang.String value)
Constructs a new
Link object with the specified value. |
| Modifier and Type | Method and Description |
|---|---|
int |
compareTo(Link l) |
boolean |
equals(java.lang.Object object)
Two
Link objects are considered equal if their content strings match exactly. |
java.lang.String |
getValue()
Returns the value of this
Link. |
int |
hashCode() |
java.lang.String |
toString()
Returns the entire text of this
Link. |
public static final long serialVersionUID
public Link(java.lang.String value)
Link object with the specified value. This object cannot be modified
after construction.public java.lang.String getValue()
Link.public int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object object)
Link objects are considered equal if their content strings match exactly.equals in class java.lang.Objectpublic java.lang.String toString()
Link.toString in class java.lang.Object