com.netease.cloud.transform.VoidStaxUnmarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nos-sdk-java-publiccloud Show documentation
Show all versions of nos-sdk-java-publiccloud Show documentation
nos java sdk to the Central Repository
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