com.harium.suneidesis.knowledge.concept.Concept Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Project to represent knowledge
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