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

com.netease.cloud.transform.VoidStaxUnmarshaller Maven / Gradle / Ivy

The newest version!
package com.netease.cloud.transform;

/**
 * Simple StAX unmarshaller that iterates through the XML events but always
 * returns null.
 */
public class VoidStaxUnmarshaller implements Unmarshaller {
	public T unmarshall(StaxUnmarshallerContext context) throws Exception {
        while (context.nextEvent().isEndDocument() == false);
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy