Uses of Class
rdr.core.Attribute

Packages that use Attribute
rdr.core   
 

Uses of Attribute in rdr.core
 

Fields in rdr.core with type parameters of type Attribute
 common.datastructures.MyFastVector<Attribute> DomainModel.attributes
           
 

Methods in rdr.core that return Attribute
 Attribute Condition.getAttribute()
           
 Attribute DomainModel.getAttributeFromName(java.lang.String name)
          Find an attribute in the domain model based on name
 

Methods in rdr.core that return types with arguments of type Attribute
 common.datastructures.MyFastVector<Attribute> DomainModel.getAttributes()
          gets the attributes which define how a case is made up
 

Methods in rdr.core with parameters of type Attribute
 Value Case.getValue(Attribute attr)
          Return a particular Value of a particular attribute.
 void Condition.setAttribute(Attribute attr)
          Set the attribute
 

Method parameters in rdr.core with type arguments of type Attribute
 void DomainModel.setAttributes(common.datastructures.MyFastVector<Attribute> attrs)
          sets the attributes which define how a case is made up
 

Constructors in rdr.core with parameters of type Attribute
Condition(Attribute attr, int op, int valueType, java.lang.Object value)
          Constructor.
Condition(Attribute attr, int op, Value value)
          Constructor.
Condition(Attribute attr, Operator op, int valueType, java.lang.Object value)
          Constructor.
Condition(Attribute attr, Operator op, Value value)
          Constructor.
 

Constructor parameters in rdr.core with type arguments of type Attribute
Case(int id, common.datastructures.MyFastVector<Value> caseValues, common.datastructures.MyFastVector<Attribute> dm)
          Creates a case object dumbly (no error checks) - primarily for cloning
DomainModel(java.lang.String modelName, common.datastructures.MyFastVector<Attribute> attrs)
          Constructor.
DomainModel(java.lang.String modelName, common.datastructures.MyFastVector<Attribute> attrs, common.datastructures.MyFastVector<Classification> classifications)
          Constructor.