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

org.dmg.pmml.HasValue Maven / Gradle / Ivy

/*
 * Copyright (c) 2015 Villu Ruusmann
 */
package org.dmg.pmml;

/**
 * 

* A marker interface for PMML elements that represent a field value. *

*/ public interface HasValue { /** * @return The name of the field. * * @see DataField * @see DerivedField * @see OutputField */ FieldName getField(); String getValue(); HasValue setValue(String value); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy