Package com.google.gwt.safehtml.shared
Class SafeUriString
- java.lang.Object
-
- com.google.gwt.safehtml.shared.SafeUriString
-
- All Implemented Interfaces:
SafeUri
class SafeUriString extends java.lang.Object implements SafeUri
A string wrapped as an object of typeSafeUri
.This class is package-private and intended for internal use by the
com.google.gwt.safehtml
package. All implementors must implement .equals and .hashCode so that they operate just like String.equals() and String.hashCode().
-
-
Constructor Summary
Constructors Constructor Description SafeUriString(java.lang.String uri)
Constructs aSafeUriString
from a string.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
asString()
Returns this object's contained URI as a string.boolean
equals(java.lang.Object obj)
Compares this string to the specified object.int
hashCode()
Returns a hash code for this string.java.lang.String
toString()
-
-
-
Constructor Detail
-
SafeUriString
SafeUriString(java.lang.String uri)
Constructs aSafeUriString
from a string. Callers are responsible for ensuring that the string passed as the argument to this constructor satisfies the constraints of the contract imposed by theSafeUri
interface.- Parameters:
uri
- the string to be wrapped as aSafeUri
-
-
Method Detail
-
asString
public java.lang.String asString()
Returns this object's contained URI as a string.Based on this class' contract, the returned value will be non-null and a string that is safe to use in a URL context.
-
equals
public boolean equals(java.lang.Object obj)
Compares this string to the specified object.
-
hashCode
public int hashCode()
Returns a hash code for this string.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-