(Object o)
| 85 | */ |
| 86 | public static Prop<Collection<Number>> range = new Prop<>("range").toCanon().set(domain, "*/attributes").set(customCaster, new Function<Object, Object>() { |
| 87 | @Override |
| 88 | public Object apply(Object o) { |
| 89 | return Conversions.convert(o, Collection.class); |
| 90 | } |
| 91 | }); |
| 92 | |
| 93 | /** |