Uses of Class
ucot.model.relation.RelationType

Packages that use RelationType
ucot.model.relation   
 

Uses of RelationType in ucot.model.relation
 

Fields in ucot.model.relation declared as RelationType
(package private)  RelationType Relation.type
           
 

Methods in ucot.model.relation that return RelationType
 RelationType Relation.getType()
           
static RelationType RelationType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RelationType[] RelationType.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in ucot.model.relation with parameters of type RelationType
 java.util.Set<Relation> RelationalAnalyzeModel.getRelationsFrom(Thing item, RelationType type)
          Returns relations that are certain type and are originated from given item.
 java.util.Set<Relation> RelationalAnalyzeModel.getRelationsTo(Thing item, RelationType type)
          Returns relations that are certain type and targets given item.
 void Relation.setType(RelationType type)
           
 

Constructors in ucot.model.relation with parameters of type RelationType
Relation(Thing from, RelationType type, Thing to)