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

com.smartlogic.ontologyeditor.beans.MetadataValue Maven / Gradle / Ivy

package com.smartlogic.ontologyeditor.beans;

public class MetadataValue {

	private final String value;
	private final String languageCode;
	public String getValue() {
		return value;
	}
	public String getLanguageCode() {
		return languageCode;
	}
	
	public MetadataValue(String languageCode, String value) {
		this.value = value;
		this.languageCode = languageCode;
	}
	
	@Override
	public String toString() {
		return String.format("\"%s\"@%s", value, languageCode);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy