Class SafeUriString

java.lang.Object
com.google.gwt.safehtml.shared.SafeUriString
All Implemented Interfaces:
SafeUri

class SafeUriString extends Object implements SafeUri
A string wrapped as an object of type SafeUri.

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 Details

    • SafeUriString

      SafeUriString(String uri)
      Constructs a SafeUriString 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 the SafeUri interface.
      Parameters:
      uri - the string to be wrapped as a SafeUri
  • Method Details

    • asString

      public 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.

      Specified by:
      asString in interface SafeUri
      Returns:
      the contents as a String
    • equals

      public boolean equals(Object obj)
      Compares this string to the specified object.
      Specified by:
      equals in interface SafeUri
      Overrides:
      equals in class Object
      Parameters:
      obj - the object to compare to
    • hashCode

      public int hashCode()
      Returns a hash code for this string.
      Specified by:
      hashCode in interface SafeUri
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object