Uses of Enum Class
org.simpleframework.xml.stream.Mode

Packages that use Mode
  • 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, Map map, Mode mode)
    This write method will write the key value pairs within the provided map to the specified XML node.
    private void
    PrimitiveInlineList.write(OutputNode node, Object source, Mode mode)
    This write 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
    OutputAttribute.getMode()
    The Mode is used to indicate the output mode of this node.
    OutputDocument.getMode()
    The Mode is used to indicate the output mode of this node.
    OutputElement.getMode()
    The Mode is used to indicate the output mode of this node.
    OutputNode.getMode()
    The Mode is used to indicate the output mode of this node.
    static Mode
    Mode.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static Mode[]
    Mode.values()
    Returns an array containing the constants of this enum class, 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(String text, Mode mode)
    This is used to write the specified text value to the writer.