コード例 #1
0
 @Deprecated
 public boolean isPlanningValuesCacheable() {
   return valueRangeDescriptor.isValuesCacheable();
 }
コード例 #2
0
 public long getProblemScale(Solution solution, Object entity) {
   return valueRangeDescriptor.getProblemScale(solution, entity);
 }
コード例 #3
0
 public Collection<?> extractPlanningValues(Solution solution, Object entity) {
   // TODO this does not include null if nullable, currently FromSolutionPropertyValueSelector does
   // that
   return valueRangeDescriptor.extractValuesWithFiltering(solution, entity);
 }