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

com.harium.suneidesis.knowledge.concept.Concept Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package com.harium.suneidesis.knowledge.concept;

import com.harium.suneidesis.knowledge.Thing;


public class Concept extends Thing {
	
	public static final Concept UNKNOWN = new Concept("unknown", ConceptType.UNKNOWN);
	protected ConceptType type = ConceptType.UNKNOWN;
	
	public Concept(String name) {
		super(name);
	}

	public Concept() {
		super("");
	}

	public Concept(ConceptType type) {
		super(type.name());
		this.type = type;
	}

	public Concept(String name, ConceptType type) {
		super(name);
		this.type = type;
	}

	public ConceptType getType() {
		return type;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy