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

aima.core.learning.framework.StringAttribute Maven / Gradle / Ivy

Go to download

AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.

There is a newer version: 3.0.0
Show newest version
package aima.core.learning.framework;

/**
 * @author Ravi Mohan
 * 
 */
public class StringAttribute implements Attribute {
	private StringAttributeSpecification spec;

	private String value;

	public StringAttribute(String value, StringAttributeSpecification spec) {
		this.spec = spec;
		this.value = value;
	}

	public String valueAsString() {
		return value.trim();
	}

	public String name() {
		return spec.getAttributeName().trim();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy