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

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

There is a newer version: 4.0.5
Show newest version
/*
 * 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 PrimitiveArrayListerLong extends Lister { private PrimitiveArrayListerLong() { } /*package*/ static void register() { Lister.primitiveArrayListers.put(Long.TYPE,new PrimitiveArrayListerLong()); } public ListIterator iterator(final long[] objects, XMLSerializer context) { return new ListIterator() { int idx=0; public boolean hasNext() { return idx acc) { return new LongArrayPack(); } public void addToPack(LongArrayPack objects, Long o) { objects.add(o); } public void endPacking( LongArrayPack 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 long[0]); } static final class LongArrayPack { long[] buf = new long[16]; int size; void add(Long b) { if(buf.length==size) { // realloc long[] nb = new long[buf.length*2]; System.arraycopy(buf,0,nb,0,buf.length); buf = nb; } if(b!=null) buf[size++] = b; } long[] build() { if(buf.length==size) // if we are lucky enough return buf; long[] r = new long[size]; System.arraycopy(buf,0,r,0,size); return r; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy