All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.glassfish.jaxb.runtime.v2.runtime.reflect.PrimitiveArrayListerDouble Maven / Gradle / Ivy

/*
 * Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package org.glassfish.jaxb.runtime.v2.runtime.reflect;

import org.glassfish.jaxb.runtime.api.AccessorException;
import org.glassfish.jaxb.runtime.v2.runtime.XMLSerializer;

/**
 * {@link Lister} for primitive type arrays.
 * 

* Auto-generated, do not edit. *

*

* B y t e ArrayLister is used as the master to generate the rest of the * lister classes. Do not modify the generated copies. *

*/ final class PrimitiveArrayListerDouble extends Lister { private PrimitiveArrayListerDouble() { } /*package*/ static void register() { Lister.primitiveArrayListers.put(Double.TYPE,new PrimitiveArrayListerDouble()); } public ListIterator iterator(final double[] objects, XMLSerializer context) { return new ListIterator() { int idx=0; public boolean hasNext() { return idx acc) { return new DoubleArrayPack(); } public void addToPack(DoubleArrayPack objects, Double o) { objects.add(o); } public void endPacking( DoubleArrayPack pack, BeanT bean, Accessor acc ) throws AccessorException { acc.set(bean,pack.build()); } public void reset(BeanT o,Accessor acc) throws AccessorException { acc.set(o,new double[0]); } static final class DoubleArrayPack { double[] buf = new double[16]; int size; void add(Double b) { if(buf.length==size) { // realloc double[] nb = new double[buf.length*2]; System.arraycopy(buf,0,nb,0,buf.length); buf = nb; } if(b!=null) buf[size++] = b; } double[] build() { if(buf.length==size) // if we are lucky enough return buf; double[] r = new double[size]; System.arraycopy(buf,0,r,0,size); return r; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy