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

format.bind.FormatProcessor Maven / Gradle / Ivy

There is a newer version: 0.4
Show newest version
/*
 * Copyright 2024 jFormat-B
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package format.bind;

import java.util.Map;

/**
 * The common interface of text format processors.
 * 
 * @param  The type of Java object to process.
 * @param  The type of text format processor.
 * 
 * @author Yannick Ebongue
 * 
 * @see FormatReader
 * @see FormatWriter
 */
public interface FormatProcessor> {

	/**
	 * A functional interface to be registered with {@link FormatProcessor} to listen
	 * for post parsing or formatting event.
	 * 
	 * @param  The type of the result object after parsing or formatting text.
	 */
	@FunctionalInterface
	public interface Listener {

		/**
		 * Callback method invoked after reading to (parse) or writing from (format)
		 * the {@code target} parameter.
		 * 
		 * @param target The processed target object.
		 * @param fields The map of the text format fields.
		 */
		void postProcessing(final T target, final Map fields);

	}

	/**
	 * Register a post processing event callback {@link Listener} with this {@link FormatProcessor}.
	 * 
	 * 

* There is only one {@code Listener} per {@code FormatProcessor}. Setting a {@code Listener} * replaces the previous registered. * * @param listener The post processing event callback for this {@link FormatProcessor}. * @return This {@code FormatProcessor}. */ F setListener(final Listener listener); /** * Register a post processing event callback {@link Listener} with this {@link FormatProcessor}. * *

* There is only one {@code Listener} per {@code FormatProcessor}. Setting a {@code Listener} * replaces the previous registered. * * @param listener The post processing event callback for this {@link FormatProcessor}. * @return This {@code FormatProcessor}. */ default F withListener(final Listener listener) { return setListener(listener); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy