All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.acesinc.data.binner.LiteralBinner Maven / Gradle / Ivy

The newest version!
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package net.acesinc.data.binner;

import java.util.ArrayList;
import java.util.List;

/**
 *
 * @author andrewserff
 */
public class LiteralBinner extends Binner {

    public LiteralBinner(String countName) {
        super(countName);
    }
    public LiteralBinner(String countName, String dataFieldName) {
        super(countName, dataFieldName);
    }
    
    @Override
    protected List generateBinNamesForData(Object value) {
        List binNames = new ArrayList<>();
        
        binNames.add(getBinName() + "." + value);
        return binNames;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy