miningattribute.java
来自「数据挖掘。数据仓库」· Java 代码 · 共 36 行
JAVA
36 行
package org.scut.DataMining.Core;
public abstract class MiningAttribute
{
/** name of the attribute */
private String name;
/**
* Constructs a MiningAttribute by name and type
* @param name name of attribute
* @param type type of attribute
*/
public MiningAttribute(String name)
{
this.name = name;
}
/**
* Gets the name of the attribute
* @return name of the attribute
*/
public String getName()
{
return this.name;
}
/**
* Sets the name of the attribute
* @param name name string to be set to the attribute
*/
public void setName(String name)
{
this.name = name;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?