![JAR search and dependency download from the Maven repository](/logo.png)
com.smartlogic.classificationserver.client.Title Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Semaphore-CS-Client Show documentation
Show all versions of Semaphore-CS-Client Show documentation
Client for the Smartlogic Semaphore Classification Server
package com.smartlogic.classificationserver.client;
/**
* Container for the title data of a document to classify
* @author Smartlogic Semaphore
*
*/
public class Title {
private 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 - 2025 Weber Informatics LLC | Privacy Policy