Uses of Interface
uk.co.terminological.rjava.Rule.MapRule
Packages that use Rule.MapRule
-
Uses of Rule.MapRule in uk.co.terminological.rjava
Methods in uk.co.terminological.rjava that return Rule.MapRuleModifier and TypeMethodDescriptionstatic <Z> Rule.MapRule<Z>
Create a mapping using a to allow us to extract data from an object of type defined by clazz and associate it with a label.static <Z> Rule.MapRule<Z>
Create a mapping using a to allow us to extract data from an object of type defined by clazz and associate it with a label.static <Z> Rule.MapRule<Z>
generates a mapping using reflection from a method specificationstatic <X> Rule.MapRule<X>[]
Rule.MapRule.reflectionRules
(Class<X> clazz) Methods in uk.co.terminological.rjava that return types with arguments of type Rule.MapRuleMethods in uk.co.terminological.rjava with parameters of type Rule.MapRuleModifier and TypeMethodDescriptionstatic <X> Collector<X,
?, RDataframe> RConverter.dataframeCollector
(Rule.MapRule<X>... rules) A stream collector that applies mapping rules to a stream of objects of arbitary type X and coverts a them into a dataframe.static <Z,
W> Rule.StreamRule<Z, W> RConverter.flatMapping
(Function<Z, Stream<W>> streamRule, Rule.MapRule<W>... rule) Create a mapping using a to allow us to extract a set of items of type W from object of type Z and flatten a nested data structure, and then mapping each W to columns in a data frame by associated a column name with a function that extracts a value from W.static <X,
W> Collector<X, ?, RDataframe> RConverter.flatteningDataframeCollector
(Rule.StreamRule<X, W> streamRule, Rule.MapRule<X>... rules) A stream collector that applies mapping rules and coverts a stream of objects into a dataframe.