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

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

There is a newer version: 1.6.5
Show newest version
/*
 * Copyright (c) 2013 KNIME.com AG, Zurich, Switzerland
 */
package org.dmg.pmml;

/**
 * 

* A marker interface for PMML elements that specify the id attribute. *

* *

* In a collection of {@link HasId} elements, all non-null identifier values must be unique. * However, there may be multiple {@link HasId} elements with null identifier values. *

* * @see Indexable */ public interface HasId, V> { /** * @return The value of the id attribute. Could be null. */ V getId(); E setId(V id); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy