org.drools.compiler.lang.api.impl.GroupByDescrBuilderImpl Maven / Gradle / Ivy
/*
* Copyright 2022 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.drools.compiler.lang.api.impl;
import org.drools.compiler.lang.api.DescrBuilder;
import org.drools.compiler.lang.api.GroupByDescrBuilder;
import org.drools.compiler.lang.descr.GroupByDescr;
public class GroupByDescrBuilderImpl> extends AccumulateDescrBuilderImpl
implements GroupByDescrBuilder
{
public GroupByDescrBuilderImpl(P parent) {
super(parent, new GroupByDescr());
}
@Override
public GroupByDescrBuilder
groupingFunction(String block) {
((GroupByDescr) descr).setGroupingFunction(block);
return this;
}
@Override
public GroupByDescrBuilder
groupingFunction(String block, String key) {
((GroupByDescr) descr).setGroupingFunction(block);
((GroupByDescr) descr).setGroupingKey(key);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy