Uses of Interface
org.decisiondeck.jmcda.structure.sorting.assignment.IOrderedAssignments

Packages that use IOrderedAssignments
org.decisiondeck.jmcda.services.sorting   
org.decisiondeck.jmcda.structure.sorting.assignment   
org.decisiondeck.jmcda.structure.sorting.assignment.utils   
org.decisiondeck.jmcda.structure.sorting.problem.assignments   
org.decisiondeck.jmcda.structure.sorting.problem.group_assignments   
org.decisiondeck.jmcda.structure.sorting.problem.group_results   
org.decisiondeck.jmcda.structure.sorting.problem.results   
org.decisiondeck.xmcda_oo.services.sorting   
org.decisiondeck.xmcda_oo.services.utils   
 

Uses of IOrderedAssignments in org.decisiondeck.jmcda.services.sorting
 

Methods in org.decisiondeck.jmcda.services.sorting that return IOrderedAssignments
 IOrderedAssignments SortingFull.optimistic(ISortingPreferences data)
           Computes the optimistic assignment of the real alternatives contained in the data, using the given data, into the given categories.
 IOrderedAssignments SortingFull.pessimistic(ISortingPreferences problem)
           Computes the pessimistic assignment of the real alternatives contained in the data, using the given data, into the given categories.
 

Methods in org.decisiondeck.jmcda.services.sorting that return types with arguments of type IOrderedAssignments
 Map<DecisionMaker,IOrderedAssignments> SortingFull.pessimisticAll(IGroupSortingPreferences problem, Map<DecisionMaker,Set<Alternative>> alternatives)
           
 

Uses of IOrderedAssignments in org.decisiondeck.jmcda.structure.sorting.assignment
 

Classes in org.decisiondeck.jmcda.structure.sorting.assignment that implement IOrderedAssignments
 class OrderedAssignments
           
 class OrderedAssignmentsForwarder
           
 class OrderedAssignmentsFromRead
           
 

Constructors in org.decisiondeck.jmcda.structure.sorting.assignment with parameters of type IOrderedAssignments
OrderedAssignmentsFiltering(IOrderedAssignments delegate)
          Creates a read-only view of the given delegate.
OrderedAssignmentsFiltering(IOrderedAssignments delegate, Predicate<Alternative> filterAlternatives)
           
OrderedAssignmentsForwarder(IOrderedAssignments delegate)
           
 

Uses of IOrderedAssignments in org.decisiondeck.jmcda.structure.sorting.assignment.utils
 

Methods in org.decisiondeck.jmcda.structure.sorting.assignment.utils that return IOrderedAssignments
static IOrderedAssignments AssignmentsUtils.getFakeWritable(IOrderedAssignmentsRead delegateRead)
           
static IOrderedAssignments AssignmentsFactory.newOrderedAssignments()
           
static IOrderedAssignments AssignmentsFactory.newOrderedAssignmentsFromMultiple(IOrderedAssignmentsToMultipleRead source)
           The source must have each alternative assigned to only one category.
 

Methods in org.decisiondeck.jmcda.structure.sorting.assignment.utils with parameters of type IOrderedAssignments
static void AssignmentsUtils.copyAssignmentsToOrderedTarget(IAssignmentsRead source, IOrderedAssignments target)
           Copies the given source assignments into the target.
static void AssignmentsUtils.copyOrderedAssignmentsToMultipleToTargetSingle(IOrderedAssignmentsToMultipleRead source, IOrderedAssignments target)
           The source must have each alternative assigned to only one category.
static boolean AssignmentsUtils.copyOrderedAssignmentsToTarget(IOrderedAssignmentsRead source, IOrderedAssignments target)
          Overrides the target by replacing every information it contains with the information in the given source.
static void AssignmentsUtils.copyOrderedAssignmentsWithCredibilitiesToTargetSingle(IOrderedAssignmentsWithCredibilitiesRead source, IOrderedAssignments target)
           The source must have each alternative assigned to only one category.
static IOrderedAssignmentsRead AssignmentsUtils.getReadView(IOrderedAssignments delegate)
           
static boolean AssignmentsUtils.removeCategory(IOrderedAssignments assignments, Category toRemove)
          Removes all assignments to the given category if there is any, and removes the category from the set of categories bound to the given assignments if it exists.
static void AssignmentsUtils.renameCategory(IOrderedAssignments assignments, Category oldCategory, Category newCategory)
          Replaces all assignments to the given old category with assignments to the given new category, and replaces the old category with the new one in the set of categories bound to the given assignments object.
 

Uses of IOrderedAssignments in org.decisiondeck.jmcda.structure.sorting.problem.assignments
 

Methods in org.decisiondeck.jmcda.structure.sorting.problem.assignments that return IOrderedAssignments
 IOrderedAssignments SortingAssignmentsFiltering.getAssignments()
           
 IOrderedAssignments ISortingAssignments.getAssignments()
           Retrieves a writable view of the assignments of alternatives to categories.
 

Uses of IOrderedAssignments in org.decisiondeck.jmcda.structure.sorting.problem.group_assignments
 

Methods in org.decisiondeck.jmcda.structure.sorting.problem.group_assignments that return IOrderedAssignments
 IOrderedAssignments IGroupSortingAssignments.getAssignments(DecisionMaker dm)
           Retrieves a writeable view of the assignments associated to the given decision maker.
 IOrderedAssignments GroupSortingAssignmentsFiltering.getAssignments(DecisionMaker dm)
           
 

Methods in org.decisiondeck.jmcda.structure.sorting.problem.group_assignments that return types with arguments of type IOrderedAssignments
 Map<DecisionMaker,IOrderedAssignments> IGroupSortingAssignments.getAssignments()
           Retrieves the assignments of alternatives to categories associated to each decision maker.
 Map<DecisionMaker,IOrderedAssignments> GroupSortingAssignmentsFiltering.getAssignments()
           
 

Uses of IOrderedAssignments in org.decisiondeck.jmcda.structure.sorting.problem.group_results
 

Methods in org.decisiondeck.jmcda.structure.sorting.problem.group_results that return IOrderedAssignments
 IOrderedAssignments GroupSortingResultsWithOrder.getAssignments(DecisionMaker dm)
           
 IOrderedAssignments GroupSortingResultsFiltering.getAssignments(DecisionMaker dm)
           
 IOrderedAssignments GroupSortingResultsImpl.getAssignments(DecisionMaker dm)
           
 IOrderedAssignments GroupSortingResultsForwarder.getAssignments(DecisionMaker dm)
           
 

Methods in org.decisiondeck.jmcda.structure.sorting.problem.group_results that return types with arguments of type IOrderedAssignments
 Map<DecisionMaker,IOrderedAssignments> GroupSortingResultsWithOrder.getAssignments()
           
 Map<DecisionMaker,IOrderedAssignments> GroupSortingResultsFiltering.getAssignments()
           
 Map<DecisionMaker,IOrderedAssignments> GroupSortingResultsImpl.getAssignments()
           
 Map<DecisionMaker,IOrderedAssignments> GroupSortingResultsForwarder.getAssignments()
           
 

Uses of IOrderedAssignments in org.decisiondeck.jmcda.structure.sorting.problem.results
 

Methods in org.decisiondeck.jmcda.structure.sorting.problem.results that return IOrderedAssignments
 IOrderedAssignments SortingResultsViewGroupBacked.getAssignments()
           
 IOrderedAssignments SortingResultsFiltering.getAssignments()
           
 

Uses of IOrderedAssignments in org.decisiondeck.xmcda_oo.services.sorting
 

Methods in org.decisiondeck.xmcda_oo.services.sorting that return IOrderedAssignments
 IOrderedAssignments SortingAssigner.optimistic(Set<Alternative> alternatives, IAltZeroToOneMatrix outranking, ICatsAndProfs categories)
           Assigns each alternative to the lowest category such that the alternative does not outrank the up profile corresponding to that category and the profile outranks the alternative.
 IOrderedAssignments SortingAssigner.pessimistic(Set<Alternative> alternatives, IAltZeroToOneMatrix outranking, ICatsAndProfs categories)
           Assigns each alternative to the highest category such that the alternative outranks the profile corresponding to that category.
 

Uses of IOrderedAssignments in org.decisiondeck.xmcda_oo.services.utils
 

Methods in org.decisiondeck.xmcda_oo.services.utils with parameters of type IOrderedAssignments
 void AssignmentsPerturber.bindTo(IOrderedAssignments assignments)
           
 



Copyright © 2011. All Rights Reserved.