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

com.wichell.framework.text.config.Analyze Maven / Gradle / Ivy

The newest version!
package com.wichell.framework.text.config;

import java.util.List;

import com.wichell.framework.text.TextTransformationFilter;

@SuppressWarnings({ "rawtypes" })
public class Analyze {
	private Class classType;
	private String split;
	private TextTransformationFilter filter;
	private List datas;

	public Class getClassType() {
		return classType;
	}

	public void setClassType(Class classType) {
		this.classType = classType;
	}

	public String getSplit() {
		return split;
	}

	public void setSplit(String split) {
		this.split = split;
	}

	public TextTransformationFilter getFilter() {
		return filter;
	}

	public void setFilter(TextTransformationFilter filter) {
		this.filter = filter;
	}

	public List getDatas() {
		return datas;
	}

	public void setDatas(List datas) {
		this.datas = datas;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy