Uses of Class
org.simpleframework.xml.stream.Mode
-
Packages that use Mode Package Description org.simpleframework.xml.core org.simpleframework.xml.stream -
-
Uses of Mode in org.simpleframework.xml.core
Methods in org.simpleframework.xml.core with parameters of type Mode Modifier and Type Method Description private void
CompositeInlineMap. write(OutputNode node, java.util.Map map, Mode mode)
Thiswrite
method will write the key value pairs within the provided map to the specified XML node.private void
PrimitiveInlineList. write(OutputNode node, java.lang.Object source, Mode mode)
Thiswrite
method will write the specified object to the given XML element as as list entries. -
Uses of Mode in org.simpleframework.xml.stream
Fields in org.simpleframework.xml.stream declared as Mode Modifier and Type Field Description private Mode
OutputDocument. mode
This is the output mode of this output document object.private Mode
OutputElement. mode
This is the output mode that this element object is using.Methods in org.simpleframework.xml.stream that return Mode Modifier and Type Method Description Mode
OutputAttribute. getMode()
TheMode
is used to indicate the output mode of this node.Mode
OutputDocument. getMode()
TheMode
is used to indicate the output mode of this node.Mode
OutputElement. getMode()
TheMode
is used to indicate the output mode of this node.Mode
OutputNode. getMode()
TheMode
is used to indicate the output mode of this node.static Mode
Mode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Mode[]
Mode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.simpleframework.xml.stream with parameters of type Mode Modifier and Type Method Description void
OutputAttribute. setMode(Mode mode)
This is used to set the output mode of this node to either be CDATA, escaped, or inherited.void
OutputDocument. setMode(Mode mode)
This is used to set the output mode of this node to either be CDATA, escaped, or inherited.void
OutputElement. setMode(Mode mode)
This is used to set the output mode of this node to either be CDATA, escaped, or inherited.void
OutputNode. setMode(Mode mode)
This is used to set the output mode of this node to either be CDATA, escaped, or inherited.void
Formatter. writeText(java.lang.String text, Mode mode)
This is used to write the specified text value to the writer.
-