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

com.smartlogic.classificationserver.client.Title Maven / Gradle / Ivy

There is a newer version: 5.6.1
Show newest version
package com.smartlogic.classificationserver.client;

/**
 * Container for the title data of a document to classify
 * @author Smartlogic Semaphore
 *
 */
public class Title extends StringObject {
	protected String getParameterName() { return "title"; }
	
	private final String value;
	/**
	 * Create the title from the supplied data
	 * @param value The title
	 */
	public Title(String value) {
		this.value = value;
	}
	protected String getValue() {
		return value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy