org.dmg.pmml.ComplexValue 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;
/**
*
* A marker interface for custom types, which can be "unwrapped" to primitive XML schema data type.
*
*
* @see HasValue
* @see HasValueSet
*/
public interface ComplexValue {
/**
* @return A non-null
value,
* which can be converted to String representation via {@link Object#toString()}.
*/
Object toSimpleValue();
}