Uses of Interface
org.apache.uima.cas.Feature
-
Packages that use Feature Package Description org.apache.uima.analysis_engine.impl org.apache.uima.cas Common Analysis System (CAS) Interfaces.org.apache.uima.cas.admin org.apache.uima.cas.impl Implementation and Low-Level API for the CAS Interfaces.org.apache.uima.collection.impl.cpm.utils org.apache.uima.jcas Interfaces for accessing the JCAS.org.apache.uima.jcas.cas JCAS model for built-in CAS typesorg.apache.uima.jcas.impl Provides the classes that support the Java Cas Model (JCM).org.apache.uima.util Utility classes and interfaces used by UIMA components. -
-
Uses of Feature in org.apache.uima.analysis_engine.impl
Fields in org.apache.uima.analysis_engine.impl with type parameters of type Feature Modifier and Type Field Description static java.util.List<Feature>RsType. EMPTY_FEATURE_LIST -
Uses of Feature in org.apache.uima.cas
Methods in org.apache.uima.cas that return Feature Modifier and Type Method Description FeatureCAS. getBeginFeature()Get the feature object for the annotation begin feature.FeatureCAS. getEndFeature()Get the feature object for the annotation end feature.FeatureFeaturePath. getFeature(int i)Get feature at position.FeatureType. getFeatureByBaseName(java.lang.String featureName)Retrieve a feature for this type.FeatureTypeSystem. getFeatureByFullName(java.lang.String featureName)Get a feature object for a given name.Methods in org.apache.uima.cas that return types with arguments of type Feature Modifier and Type Method Description java.util.Vector<Feature>Type. getAppropriateFeatures()Deprecated.UsegetFeatures()instead.java.util.List<Feature>Type. getFeatures()Get a vector of the features for which this type is a subtype of the features' domain (i.e., inherited features are also returned).java.util.Iterator<Feature>TypeSystem. getFeatures()Get a list of features, in no particular order.Methods in org.apache.uima.cas with parameters of type Feature Modifier and Type Method Description voidFeaturePath. addFeature(Feature feat)Add a new feature at the end of the path.booleanFeatureStructure. getBooleanValue(Feature feat)Get the boolean value of a feature.byteFeatureStructure. getByteValue(Feature feat)Get the byte value of a feature.doubleFeatureStructure. getDoubleValue(Feature feat)Get the double value of a feature.FeatureStructureFeatureStructure. getFeatureValue(Feature feat)Get a feature value.java.lang.StringFeatureStructure. getFeatureValueAsString(Feature feat)Get the value of the feature as a string if the type of the feature is one of the primitive type.floatFeatureStructure. getFloatValue(Feature feat)Get the float value of a feature.intFeatureStructure. getIntValue(Feature feat)Get the int value of a feature.longFeatureStructure. getLongValue(Feature feat)Get the long value of a feature.shortFeatureStructure. getShortValue(Feature feat)Get the short value of a feature.java.lang.StringFeatureStructure. getStringValue(Feature f)Get the string value under a feature.voidFeatureStructure. setBooleanValue(Feature feat, boolean i)Set the boolean value of a feature.voidFeatureStructure. setByteValue(Feature feat, byte i)Set the byte (8 bit) value of a feature.voidFeatureStructure. setDoubleValue(Feature feat, double i)Set the double value of a feature.voidFeatureStructure. setFeatureValue(Feature feat, FeatureStructure fs)Set a feature value to another FS.voidFeatureStructure. setFeatureValueFromString(Feature feat, java.lang.String s)Sets the value of a feature from a string input if the feature type is one of the primitive types.voidFeatureStructure. setFloatValue(Feature feat, float f)Set the float value of a feature.voidFeatureStructure. setIntValue(Feature feat, int i)Set the int value of a feature.voidFeatureStructure. setLongValue(Feature feat, long i)Set the long (64 bit) value of a feature.voidFeatureStructure. setShortValue(Feature feat, short i)Set the short (16 bit) value of a feature.voidFeatureStructure. setStringValue(Feature feat, java.lang.String s)Set the string value of a feature. -
Uses of Feature in org.apache.uima.cas.admin
Methods in org.apache.uima.cas.admin that return Feature Modifier and Type Method Description FeatureTypeSystemMgr. addFeature(java.lang.String featureName, Type domainType, Type rangeType)Add an feature to the type system.FeatureTypeSystemMgr. addFeature(java.lang.String featureName, Type domainType, Type rangeType, boolean multipleReferencesAllowed)Add an feature to the type system.FeatureFSIndexComparator. getKeyFeature(int key)Get the feature for this key.Methods in org.apache.uima.cas.admin with parameters of type Feature Modifier and Type Method Description intFSIndexComparator. addKey(Feature feat, int compareKey)Add a new key. -
Uses of Feature in org.apache.uima.cas.impl
Classes in org.apache.uima.cas.impl that implement Feature Modifier and Type Class Description classFeatureImplThe implementation of features in the type system.Methods in org.apache.uima.cas.impl that return Feature Modifier and Type Method Description FeatureTypeSystemImpl. addFeature(java.lang.String featureName, Type domainType, Type rangeType)FeatureTypeSystemImpl. addFeature(java.lang.String featureName, Type domainType, Type rangeType, boolean multipleReferencesAllowed)FeatureCASImpl. getBeginFeature()FeatureCASImpl. getEndFeature()FeatureTypeImpl. getFeature(java.lang.String featureName)Deprecated.FeatureTypeSystemImpl. getFeature(java.lang.String featureName)Deprecated.FeatureTypeImpl. getFeatureByBaseName(java.lang.String featureName)FeatureTypeSystemImpl. getFeatureByFullName(java.lang.String featureName)Get an feature object for a given name.FeatureFSIndexComparatorImpl. getKeyFeature(int key)FeatureLowLevelTypeSystem. ll_getFeatureForCode(int featureCode)Get a feature object for a given code.FeatureTypeSystemImpl. ll_getFeatureForCode(int featureCode)Methods in org.apache.uima.cas.impl that return types with arguments of type Feature Modifier and Type Method Description java.util.Vector<Feature>TypeImpl. getAppropriateFeatures()Deprecated.java.util.List<Feature>TypeImpl. getFeatures()guaranteed to be non-null, but might be empty listjava.util.Iterator<Feature>TypeSystemImpl. getFeatures()java.util.Vector<Feature>TypeSystemImpl. getIntroFeatures(Type type)Methods in org.apache.uima.cas.impl with parameters of type Feature Modifier and Type Method Description intFSIndexComparatorImpl. addKey(Feature feat, int compareKey)voidCASImpl. checkTypingConditions(Type domType, Type ranType, Feature feat)Check the range is appropriate for this type/feature.intFeatureImpl. compareTo(Feature o)Note: you can only compare features from the same type system.booleanFeatureStructureImpl. getBooleanValue(Feature feat)byteFeatureStructureImpl. getByteValue(Feature feat)doubleFeatureStructureImpl. getDoubleValue(Feature feat)FeatureStructureFeatureStructureImpl. getFeatureValue(Feature feat)java.lang.StringFeatureStructureImpl. getFeatureValueAsString(Feature feat)floatFeatureStructureImpl. getFloatValue(Feature feat)intFeatureStructureImpl. getIntValue(Feature feat)longFeatureStructureImpl. getLongValue(Feature feat)shortFeatureStructureImpl. getShortValue(Feature feat)java.lang.StringFeatureStructureImpl. getStringValue(Feature f)intLowLevelTypeSystem. ll_getCodeForFeature(Feature feature)Get the code for a given feature object.intTypeSystemImpl. ll_getCodeForFeature(Feature feature)voidFeatureStructureImpl. setBooleanValue(Feature feat, boolean b)voidFeatureStructureImpl. setByteValue(Feature feat, byte val)voidFeatureStructureImpl. setDoubleValue(Feature feat, double val)voidFeatureStructureImpl. setFeatureValue(Feature feat, FeatureStructure fs)voidSofaFSImpl. setFeatureValue(Feature feat, FeatureStructure fs)voidFeatureStructureImpl. setFeatureValueFromString(Feature feat, java.lang.String s)voidFeatureStructureImpl. setFloatValue(Feature feat, float val)voidFeatureStructureImpl. setIntValue(Feature feat, int val)voidSofaFSImpl. setIntValue(Feature feat, java.lang.Integer val)voidFeatureStructureImpl. setLongValue(Feature feat, long val)voidFeatureStructureImpl. setShortValue(Feature feat, short val)voidFeatureStructureImpl. setStringValue(Feature feat, java.lang.String val)voidSofaFSImpl. setStringValue(Feature feat, java.lang.String val) -
Uses of Feature in org.apache.uima.collection.impl.cpm.utils
Methods in org.apache.uima.collection.impl.cpm.utils with parameters of type Feature Modifier and Type Method Description static intCPMUtils. getFeatureAsInt(CAS aCas, Feature aFeature, java.lang.String aName)static java.lang.StringCPMUtils. getFeatureAsString(CAS aCas, Feature aFeature, java.lang.String aName)Returns a value associated with a given feature -
Uses of Feature in org.apache.uima.jcas
Methods in org.apache.uima.jcas that return Feature Modifier and Type Method Description FeatureJCas. getRequiredFeature(Type t, java.lang.String s)FeatureJCas. getRequiredFeatureDE(Type t, java.lang.String s, java.lang.String rangeName, boolean featOkTst) -
Uses of Feature in org.apache.uima.jcas.cas
Methods in org.apache.uima.jcas.cas with parameters of type Feature Modifier and Type Method Description voidSofa. setFeatureValue(Feature feat, FeatureStructure fs)voidSofa. setIntValue(Feature feat, java.lang.Integer val)voidSofa. setStringValue(Feature feat, java.lang.String val) -
Uses of Feature in org.apache.uima.jcas.impl
Methods in org.apache.uima.jcas.impl that return Feature Modifier and Type Method Description FeatureJCasImpl. getRequiredFeature(Type t, java.lang.String s)FeatureJCasImpl. getRequiredFeatureDE(Type t, java.lang.String s, java.lang.String rangeName, boolean featOkTst) -
Uses of Feature in org.apache.uima.util
Methods in org.apache.uima.util with parameters of type Feature Modifier and Type Method Description static FeatureDescriptionTypeSystemUtil. feature2FeatureDescription(Feature aFeature)Convert aFeatureto an equivalentFeatureDescription.
-