Java com.google.common.html.types SafeHtmlBuilder fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.html.types SafeHtmlBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.html.types SafeHtmlBuilder.

The text is from its open source code.

Constructor

SafeHtmlBuilder(@CompileTimeConstant final String elementName)
Creates a builder for the given elementName , which must consist only of lowercase letters, digits and - .

Method

SafeHtmlBuilderappendContent(SafeHtml... htmls)
Appends the given htmls as this element's content, in sequence.
SafeHtmlBuilderappendContent(Iterable htmls)
Appends the given htmls as this element's content, in the sequence the Iterable returns them.
SafeHtmlBuilderappendContent(Iterator htmls)
Appends the given htmls as this element's content, in the sequence the Iterator returns them.
SafeHtmlbuild()
SafeHtmlBuilderescapeAndAppendContent(String text)
HTML-escapes and appends text to this element's content.