org.dmg.pmml.tree.NodeTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pmml-model-gwt Show documentation
Show all versions of pmml-model-gwt Show documentation
JPMML GWT compatible class model
/*
* Copyright (c) 2019 Villu Ruusmann
*/
package org.dmg.pmml.tree;
import org.dmg.pmml.adapters.NodeAdapter;
/**
*
* A {@link Node} element converter (two-way transformer) between the default representation ({@link ComplexNode}) and a custom representation.
*
*
* @see NodeAdapter
* @see NodeAdapter#NODE_TRANSFORMER_PROVIDER
*/
public interface NodeTransformer {
Node fromComplexNode(ComplexNode complexNode);
ComplexNode toComplexNode(Node node);
}