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

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

There is a newer version: 1.6.6
Show newest version
/*
 * Copyright (c) 2015 Villu Ruusmann
 */
package org.dmg.pmml;

/**
 * 

* A marker interface for PMML elements that specify a primary key-like attribute. *

* *

* In a collection of {@link Indexable} elements, all key values, including the null key value, must be unique. *

* * @see HasId */ public interface Indexable { /** * @return The value of the primary key-like attribute. Could be null. */ K getKey(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy