Java XMLStreamWriter writeFloat(String name, float value, XMLStreamWriter writer)

Here you can find the source of writeFloat(String name, float value, XMLStreamWriter writer)

Description

write Float

License

Mozilla Public License

Declaration

public static void writeFloat(String name, float value, XMLStreamWriter writer) throws XMLStreamException 

Method Source Code

//package com.java2s;
/**/*from   w w  w  . j  a va  2 s.co  m*/
 * Copyright (c) 2016, RTE (http://www.rte-france.com)
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

import javax.xml.stream.XMLStreamException;

import javax.xml.stream.XMLStreamWriter;

public class Main {
    public static void writeFloat(String name, float value, XMLStreamWriter writer) throws XMLStreamException {
        if (!Float.isNaN(value)) {
            writer.writeAttribute(name, Float.toString(value));
        }
    }
}

Related

  1. writeAttribute(XMLStreamWriter out, QName name, String value)
  2. writeCharactersOrCDATA(XMLStreamWriter xsw, String string)
  3. writeColorConfig(XMLStreamWriter writer, Boolean enabled, String error, String warn, String success, String required, String batch)
  4. writeComment(String comment, XMLStreamWriter xmlsw)
  5. writeEndElement(XMLStreamWriter out, QName name)
  6. writeFooter(XMLStreamWriter w)
  7. writeIndent(XMLStreamWriter xmlsw, String indent)
  8. writeInsertPos(XMLStreamWriter w, boolean isBefore, int[] pos)
  9. writePath(XMLStreamWriter w, Supplier cssClass, Supplier fill, Supplier stroke, Supplier path)