Package com.google.gwt.safehtml.shared
Class OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml
- java.lang.Object
-
- com.google.gwt.safehtml.shared.OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml
-
- All Implemented Interfaces:
SafeHtml
,java.io.Serializable
public class OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml extends java.lang.Object implements SafeHtml
A string wrapped as an object of typeSafeHtml
.This class is intended only for use in generated code where the code generator guarantees that instances of this type will adhere to the
SafeHtml
contract (hence the purposely unwieldy class name).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml(java.lang.String html)
Constructs an instance from a given HTML String.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
asString()
Returns this object's contained HTML 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.
-
-
-
Method Detail
-
asString
public java.lang.String asString()
Returns this object's contained HTML as a string.Based on this class' contract, the returned value will be non-null and a string that is safe to use in an HTML context.
-
equals
public boolean equals(java.lang.Object obj)
Compares this string to the specified object.
-
-