/** * Retrieve the set of values that occur in matches for sw. * * @return the Set of all values, null if no parameter with the given name exists, empty set if * there are no matches */ public Set<Switch> getAllValuesOfsw(final RouteSensorMatch partialMatch) { return rawAccumulateAllValuesOfsw(partialMatch.toArray()); }
/** * Retrieve the set of values that occur in matches for route. * * @return the Set of all values, null if no parameter with the given name exists, empty set if * there are no matches */ public Set<Route> getAllValuesOfroute(final RouteSensorMatch partialMatch) { return rawAccumulateAllValuesOfroute(partialMatch.toArray()); }