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

com.giffing.easyxml.reader.item.ItemReader Maven / Gradle / Ivy

There is a newer version: 0.0.8
Show newest version
package com.giffing.easyxml.reader.item;

import com.giffing.easyxml.context.ParseContext;

public interface ItemReader {

	/**
	 * @param t transform result
	 * @return
	 */
	R read(T t);

	/**
	 * Indicates if the reader is responsible for the current context
	 * 
	 * @param context
	 * @return
	 */
	boolean shouldHandle(ParseContext context);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy