Package org.apache.nlpcraft.model
Interface NCValue
-
- All Superinterfaces:
Serializable
public interface NCValue extends Serializable
Model element's value.Each model element can generally be recognized either by one of its synonyms or values. Elements and their values are analogous to types and instances of that type in programming languages. Each value has a name and optional set of its own synonyms by which that value, and ultimately its element, can be recognized by. Note that value name itself acts as an implicit synonym even when no additional synonyms added for that value.
- See Also:
NCElement.getValues()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Gets value name.List<String>
getSynonyms()
Gets optional list of value's synonyms.
-