Class ContentRepresentation
java.lang.Object
com.atlassian.confluence.api.model.BaseApiEnum
com.atlassian.confluence.api.model.content.ContentRepresentation
- All Implemented Interfaces:
ApiEnum
Enumeration of the different built-in ways that Confluence content bodies can be represented.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ContentRepresentation
HTML representation for viewing, but with absolute urls, instead of relative urls in the markup, and macros are rendered as though it is viewed by an anonymous user.static final ContentRepresentation
Representation suitable for use in the rich text editorstatic final ContentRepresentation
HTML representation for viewing, but with absolute urls, instead of relative urls in the markup.static final Iterable<ContentRepresentation>
An ordered enumeration of ContentRepresentations that can be converted to STORAGE format.static final ContentRepresentation
Raw database format as plain text with no XHTML or WIKI markup.static final ContentRepresentation
Raw "database" format.static final ContentRepresentation
Raw database format, for content that stores data in our XML storage formatstatic final ContentRepresentation
A rendered view that includes inline styles in a <style> element, wrapped in an entire <html> structure.static final ContentRepresentation
HTML representation for viewing in a web pagestatic final ContentRepresentation
Legacy WIKI representationFields inherited from class com.atlassian.confluence.api.model.BaseApiEnum
value
-
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
toString()
FIXME (CRA-176) - the currently returns the string representation of the ContentReprentation.static ContentRepresentation
-
Field Details
-
RAW
Raw "database" format. -
STORAGE
Raw database format, for content that stores data in our XML storage format -
EDITOR
Representation suitable for use in the rich text editor -
VIEW
HTML representation for viewing in a web page -
EXPORT_VIEW
HTML representation for viewing, but with absolute urls, instead of relative urls in the markup. Useful for exporting. -
ANONYMOUS_EXPORT_VIEW
HTML representation for viewing, but with absolute urls, instead of relative urls in the markup, and macros are rendered as though it is viewed by an anonymous user. Useful for exporting in situations where you might not want to reveal sensitive data , or you do not want to pay the cost of a permission check for the export. The output of this can be cached as long as the underlying content has not changed. -
WIKI
Legacy WIKI representation -
PLAIN
Raw database format as plain text with no XHTML or WIKI markup.Can be converted to VIEW representation by converting newlines to <br> and representing URLs as HTML links.
-
STYLED_VIEW
A rendered view that includes inline styles in a <style> element, wrapped in an entire <html> structure. -
INPUT_CONVERSION_TO_STORAGE_ORDER
An ordered enumeration of ContentRepresentations that can be converted to STORAGE format. When given the option of converting multipleContentBody
s to a STORAGE representation, the body chosen for conversion will be the first one encountered in this list.
-
-
Method Details
-
valueOf
-
convertsFromStorage
public boolean convertsFromStorage() -
convertsToStorage
public boolean convertsToStorage() -
getRepresentation
-
toString
FIXME (CRA-176) - the currently returns the string representation of the ContentReprentation. It should return more information, but is this way at the moment to support correct serialization in Jackson.- Overrides:
toString
in classBaseApiEnum
-