Package org.apache.juneau.html
Class HtmlClassMeta
java.lang.Object
org.apache.juneau.ExtendedMeta
org.apache.juneau.ExtendedClassMeta
org.apache.juneau.html.HtmlClassMeta
Metadata on classes specific to the HTML serializers and parsers pulled from the 
@Html annotation on
 the class.
 See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected HtmlFormatReturns the@Html(format)annotation defined on the class.HtmlRender<?>Returns the@Html(render)annotation defined on the class.protected booleanisHtml()protected booleanprotected booleanbooleanReturns the@Html(noTableHeaders)annotation defined on the class.protected booleanReturns the@Html(noTables)annotation defined on the class.protected booleanprotected booleanisXml()Methods inherited from class org.apache.juneau.ExtendedClassMetagetClassMeta, getInnerClass
- 
Constructor Details- 
HtmlClassMetaConstructor.- Parameters:
- cm- The class that this annotation is defined on.
- mp- HTML metadata provider (for finding information about other artifacts).
 
 
- 
- 
Method Details- 
getFormatReturns the@Html(format)annotation defined on the class.- Returns:
- The value of the annotation.
 
- 
isXml- Returns:
- true if- getFormat()returns- HtmlFormat.XML.
 
- 
isPlainText- Returns:
- true if- getFormat()returns- HtmlFormat.PLAIN_TEXT.
 
- 
isHtml- Returns:
- true if- getFormat()returns- HtmlFormat.HTML.
 
- 
isHtmlCdc- Returns:
- true if- getFormat()returns- HtmlFormat.HTML_CDC.
 
- 
isHtmlSdc- Returns:
- true if- getFormat()returns- HtmlFormat.HTML_SDC.
 
- 
isNoTablesReturns the@Html(noTables)annotation defined on the class.- Returns:
- The value of the annotation.
 
- 
isNoTableHeadersReturns the@Html(noTableHeaders)annotation defined on the class.- Returns:
- The value of the annotation.
 
- 
getRenderReturns the@Html(render)annotation defined on the class.- Returns:
- The value of the annotation.
 
 
-