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 voidCompositeInlineMap. write(OutputNode node, java.util.Map map, Mode mode)Thiswritemethod will write the key value pairs within the provided map to the specified XML node.private voidPrimitiveInlineList. write(OutputNode node, java.lang.Object source, Mode mode)Thiswritemethod 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 ModeOutputDocument. modeThis is the output mode of this output document object.private ModeOutputElement. modeThis is the output mode that this element object is using.Methods in org.simpleframework.xml.stream that return Mode Modifier and Type Method Description ModeOutputAttribute. getMode()TheModeis used to indicate the output mode of this node.ModeOutputDocument. getMode()TheModeis used to indicate the output mode of this node.ModeOutputElement. getMode()TheModeis used to indicate the output mode of this node.ModeOutputNode. getMode()TheModeis used to indicate the output mode of this node.static ModeMode. 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 voidOutputAttribute. setMode(Mode mode)This is used to set the output mode of this node to either be CDATA, escaped, or inherited.voidOutputDocument. setMode(Mode mode)This is used to set the output mode of this node to either be CDATA, escaped, or inherited.voidOutputElement. setMode(Mode mode)This is used to set the output mode of this node to either be CDATA, escaped, or inherited.voidOutputNode. setMode(Mode mode)This is used to set the output mode of this node to either be CDATA, escaped, or inherited.voidFormatter. writeText(java.lang.String text, Mode mode)This is used to write the specified text value to the writer.
-