Class BySetPosRule<T extends Temporal>
- java.lang.Object
-
- net.fortuna.ical4j.transform.recurrence.BySetPosRule<T>
-
- All Implemented Interfaces:
Transformer<List<T>>
public class BySetPosRule<T extends Temporal> extends Object implements Transformer<List<T>>
Applies BYSETPOS rules todates
. Valid positions are from 1 to the size of the date list. Invalid positions are ignored.
-
-
Constructor Summary
Constructors Constructor Description BySetPosRule(List<Integer> setPosList)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<T>
transform(List<T> dates)
Transforms the specified calendar object according to the implementation of this method.
-
-
-
Method Detail
-
transform
public List<T> transform(List<T> dates)
Description copied from interface:Transformer
Transforms the specified calendar object according to the implementation of this method.- Specified by:
transform
in interfaceTransformer<T extends Temporal>
- Parameters:
dates
- a calendar object to transform- Returns:
- a transformed calendar object
-
-