public ILabelledFeature getLabelledFeature(DataSetEnums.FeatureName featureName) { foreach (ILabelledFeature feature in getLabelledFeatures()) { if (featureName.CompareTo(feature.getFeatureName()) == 0) { // Found this feature return(feature); } } // Nothing found for this feature return(null); }
private bool tryGetFeatureNameFor(string s, out DataSetEnums.FeatureName foundFeatureName) { return(_featureMapping.TryGetValue(s.ToUpper(), out foundFeatureName)); }
public LabelledFeature(DataSetEnums.FeatureName featureName, IPath path) { _featureName = featureName; _path = path; }
public LabelledFeature( DataSetEnums.FeatureName featureName, IPath path ) { _featureName = featureName; _path = path; }