Uses of Class
cc.mallet.util.PropertyList

Packages that use PropertyList
cc.mallet.fst.confidence   
cc.mallet.types Fundamental MALLET types, including FeatureVector, Instance, Label etc. 
cc.mallet.util Miscellaneous utilities including command line processing, math functions, lexing, logging. 
 

Uses of PropertyList in cc.mallet.fst.confidence
 

Methods in cc.mallet.fst.confidence that return PropertyList
 PropertyList SequenceConfidenceInstance.getFeatures()
           
 

Uses of PropertyList in cc.mallet.types
 

Methods in cc.mallet.types that return PropertyList
 PropertyList Token.getFeatures()
           
 PropertyList PropertyHolder.getFeatures()
           
 PropertyList TokenSequence.getProperties()
           
 PropertyList Token.getProperties()
           
 PropertyList PropertyHolder.getProperties()
           
 PropertyList Instance.getProperties()
          Deprecated. 
 

Methods in cc.mallet.types with parameters of type PropertyList
 void Token.setFeatures(PropertyList pl)
           
 void PropertyHolder.setFeatures(PropertyList pl)
           
 void Token.setProperties(PropertyList newProperties)
           
 void PropertyHolder.setProperties(PropertyList newProperties)
           
 void Instance.setPropertyList(PropertyList p)
          Deprecated. 
 

Constructors in cc.mallet.types with parameters of type PropertyList
AugmentableFeatureVector(Alphabet dict, PropertyList pl, boolean binary)
           
AugmentableFeatureVector(Alphabet dict, PropertyList pl, boolean binary, boolean growAlphabet)
           
FeatureVector(Alphabet dict, PropertyList pl, boolean binary)
           
FeatureVector(Alphabet dict, PropertyList pl, boolean binary, boolean growAlphabet)
           
SparseVector(Alphabet dict, PropertyList pl, boolean binary)
           
SparseVector(Alphabet dict, PropertyList pl, boolean binary, boolean growAlphabet)
           
 

Uses of PropertyList in cc.mallet.util
 

Fields in cc.mallet.util declared as PropertyList
protected  PropertyList PropertyList.next
           
 

Methods in cc.mallet.util that return PropertyList
static PropertyList PropertyList.add(java.lang.String key, double value, PropertyList rest)
           
static PropertyList PropertyList.add(java.lang.String key, java.lang.Object value, PropertyList rest)
           
static PropertyList PropertyList.add(java.lang.String key, java.lang.String value, PropertyList rest)
           
 PropertyList PropertyList.append(PropertyList nextPl)
           
 PropertyList PropertyList.last()
           
 PropertyList PropertyList.Iterator.nextProperty()
           
static PropertyList PropertyList.remove(java.lang.String key, PropertyList rest)
           
static PropertyList PropertyList.sumDuplicateKeyValues(PropertyList pl)
           
static PropertyList PropertyList.sumDuplicateKeyValues(PropertyList pl, boolean ignoreZeros)
           
 

Methods in cc.mallet.util with parameters of type PropertyList
static PropertyList PropertyList.add(java.lang.String key, double value, PropertyList rest)
           
static PropertyList PropertyList.add(java.lang.String key, java.lang.Object value, PropertyList rest)
           
static PropertyList PropertyList.add(java.lang.String key, java.lang.String value, PropertyList rest)
           
 PropertyList PropertyList.append(PropertyList nextPl)
           
static PropertyList PropertyList.remove(java.lang.String key, PropertyList rest)
           
static PropertyList PropertyList.sumDuplicateKeyValues(PropertyList pl)
           
static PropertyList PropertyList.sumDuplicateKeyValues(PropertyList pl, boolean ignoreZeros)
           
 

Constructors in cc.mallet.util with parameters of type PropertyList
PropertyList.Iterator(PropertyList pl)
           
PropertyList.NumericIterator(PropertyList pl)
           
PropertyList.ObjectIterator(PropertyList pl)
           
PropertyList(java.lang.String key, PropertyList rest)