com.github.chen0040.data.frame.DataColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-data-frame Show documentation
Show all versions of java-data-frame Show documentation
Some common patterns of data frame in Java
The newest version!
package com.github.chen0040.data.frame;
import java.util.List;
/**
* Created by xschen on 21/5/2017.
*/
public interface DataColumn {
String getColumnName();
void setColumnName(String columnName);
boolean isCategorical();
void setLevels(List levels);
List getLevels();
boolean isOutputColumn();
default boolean isInputColumn(){
return !isOutputColumn();
}
default boolean isNumerical(){
return !isCategorical();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy