Class ColladaFloatArray

  • All Implemented Interfaces:
    XMLEventParser

    public class ColladaFloatArray
    extends ColladaAbstractObject
    Represents the COLLADA float_array element and provides access to its contents.
    • Field Detail

      • floats

        protected float[] floats
        Floats parsed from this element.
    • Constructor Detail

      • ColladaFloatArray

        public ColladaFloatArray​(java.lang.String ns)
        Construct an instance.
        Parameters:
        ns - the qualifying namespace URI. May be null to indicate no namespace qualification.
    • Method Detail

      • getFloats

        public float[] getFloats()
        Indicates the float array contained in this element.
        Returns:
        Floats contained in this element. May return an empty array, but will not return null.
      • parse

        public java.lang.Object parse​(XMLEventParserContext ctx,
                                      javax.xml.stream.events.XMLEvent event,
                                      java.lang.Object... args)
                               throws javax.xml.stream.XMLStreamException
        Parse the event and initialize the parser's values to those found in the event. Overridden to parse character content into a float[].
        Specified by:
        parse in interface XMLEventParser
        Overrides:
        parse in class AbstractXMLEventParser
        Parameters:
        ctx - a current parser context.
        event - the event to parse.
        args - an optional list of arguments that may by used by subclasses.
        Returns:
        if parsing is successful, returns this, otherwise returns null.
        Throws:
        javax.xml.stream.XMLStreamException - if an exception occurs during event-stream reading.
      • parseFloats

        protected float[] parseFloats​(java.lang.String floatArrayString)
        Parse a string of floats into an array.
        Parameters:
        floatArrayString - String of floats separated by whitespace.
        Returns:
        Array of parsed floats.