460461462463464465466
*/ public SlingQuery slice(int from) { if (from < 0) { throw new IndexOutOfBoundsException(); } return function(new SliceFunction(from)); }
478479480481482483484
throw new IndexOutOfBoundsException(); } if (from > to) { throw new IllegalArgumentException(); } return function(new SliceFunction(from, to)); }
450451452453454455456
468469470471472473474