Uses of Class
kdl.prox.db.Attributes

Packages that use Attributes
kdl.prox.db   
kdl.prox.gui2   
kdl.prox.model2.common.predictions   
kdl.prox.sample   
kdl.prox.script   
 

Uses of Attributes in kdl.prox.db
 

Methods in kdl.prox.db that return Attributes
 Attributes AttributeValues.getAttributes()
           
static Attributes DB.getContainerAttrs()
           
static Attributes DB.getLinkAttrs()
           
static Attributes DB.getObjectAttrs()
           
 Attributes Container.getSubgraphAttrs()
          Returns the attributes for subgraphs under this container.
 

Methods in kdl.prox.db with parameters of type Attributes
static NST DB.getAttrsForItems(NST itemsNST, Attributes attrs, java.lang.String filterDef)
          Overload that returns getAttrsForItems only with attributes specified in the filter string.
static NST DB.getAttrsForItems(NST itemsNST, Attributes attrs, java.lang.String filterDef, java.lang.String extraAttrsList)
          Given an NST with items and an Attribute, it joins the NST with the tables for the requested item and returns a new NST with columns for all the attrs.
 

Constructors in kdl.prox.db with parameters of type Attributes
AttributeValues(java.util.List attrValues, Attributes attributes)
          Full-arg constructor.
 

Uses of Attributes in kdl.prox.gui2
 

Constructors in kdl.prox.gui2 with parameters of type Attributes
AttrCreationJFrame(Attributes attrs)
           
 

Uses of Attributes in kdl.prox.model2.common.predictions
 

Methods in kdl.prox.model2.common.predictions with parameters of type Attributes
 void Predictions.savePredictions(Attributes attrs, java.lang.String attrName)
          Saves the prediction in an attribute The saved ids are subgraph ids, so this attribute should be saved as a subgraph attr.
 void Predictions.savePredictionsWithProbs(Attributes attrs, java.lang.String attrName)
          Saves the prediction in an attribute, with their probabilities The saved ids are subgraph ids, so this attribute should be saved as a subgraph attr.
 

Uses of Attributes in kdl.prox.sample
 

Methods in kdl.prox.sample with parameters of type Attributes
static void RandomizeAttr.randomize(Attributes attrs, java.lang.String origAttrName, java.lang.String newAttrName)
          Randomize the values of an attribute for the objects in a given attr data NST
 

Uses of Attributes in kdl.prox.script
 

Fields in kdl.prox.script declared as Attributes
 Attributes Proximity.containerAttrs
           
 Attributes Proximity.linkAttrs
           
 Attributes Proximity.objectAttrs
           
 

Methods in kdl.prox.script with parameters of type Attributes
 void Proximity.addAttribute(Attributes attributes, org.python.core.PyList attrPyList, java.lang.String newAttrName, java.lang.String attrFunction)
           
 void Proximity.addAttribute(Attributes attributes, java.lang.String newAttrName, java.lang.String attrFunction)
          Creates a new attribute using an attribute creation language.
 void AddAttribute.addAttribute(Attributes attributes, java.lang.String newAttrName, java.lang.String attrFunction)
          Adds a new attribute based on a function of existing attributes
 void Proximity.addDateDiffAttributeFromTwoDates(Attributes attributes, java.lang.String newAttrName, java.lang.String dateAttrName1, java.lang.String dateAttrName2)
          Creates a new attribute that represetns the number of days between two date attributes.
 void AddAttribute.addDateDiffAttributeFromTwoDates(Attributes attributes, java.lang.String newAttrName, java.lang.String dateAttrName1, java.lang.String dateAttrName2)
          Creates a new attribute that represetns the number of days between two date attributes.
 void Proximity.addYearAttributeFromDate(Attributes attributes, java.lang.String newAttrName, java.lang.String dateAttrName)
          Creates a new year attribute by extracting the year from an existing attribute of type 'date'.
 void AddAttribute.addYearAttributeFromDate(Attributes attributes, java.lang.String newAttrName, java.lang.String dateAttrName)