Class ConcreteType
- java.lang.Object
-
- de.julielab.jcore.reader.xmlmapper.genericTypes.ConcreteType
-
- Direct Known Subclasses:
ConcreteFeature
public class ConcreteType extends Object
Represents a Type form the (user-extended) UIMA TypeSystem that has features with concrete values (ConcreteFeatures).- Author:
- Weigel
-
-
Constructor Summary
Constructors Constructor Description ConcreteType()Deprecated.ConcreteType(TypeTemplate typeTemplate)Creates a new Instance of a ConcreteType on the base of a TypeTemplate
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddFeature(ConcreteFeature feature)Adds a ConcreteFeature to the List of ConcreteFeaturesintgetBegin()List<ConcreteFeature>getConcreteFeatures()Returns the list of ConcreteFeaturesintgetEnd()StringgetFullClassName()TypeTemplategetTypeTemplate()voidsetBegin(int begin)voidsetEnd(int end)voidsetTypeTemplate(TypeTemplate typeTemplate)StringtoString()
-
-
-
Constructor Detail
-
ConcreteType
public ConcreteType(TypeTemplate typeTemplate)
Creates a new Instance of a ConcreteType on the base of a TypeTemplate- Parameters:
typeTemplate-
-
ConcreteType
@Deprecated public ConcreteType()
Deprecated.Deprecated Constructor, don't use
-
-
Method Detail
-
addFeature
public void addFeature(ConcreteFeature feature)
Adds a ConcreteFeature to the List of ConcreteFeatures- Parameters:
feature-
-
getConcreteFeatures
public List<ConcreteFeature> getConcreteFeatures()
Returns the list of ConcreteFeatures- Returns:
- List
-
getFullClassName
public String getFullClassName()
- Returns:
- the fullClassName
-
getTypeTemplate
public TypeTemplate getTypeTemplate()
- Returns:
- the typeTemplate
-
setTypeTemplate
public void setTypeTemplate(TypeTemplate typeTemplate)
- Parameters:
typeTemplate- the typeTemplate to set
-
setBegin
public void setBegin(int begin)
-
setEnd
public void setEnd(int end)
-
getBegin
public int getBegin()
-
getEnd
public int getEnd()
-
-