/** * DataCleaner (community edition) * Copyright (C) 2014 Neopost - Customer Information Management * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.datacleaner.beans.numbers; import javax.inject.Named; import org.datacleaner.api.Categorized; import org.datacleaner.api.Configured; import org.datacleaner.api.Description; import org.datacleaner.api.InputColumn; import org.datacleaner.api.InputRow; import org.datacleaner.api.NumberProperty; import org.datacleaner.api.OutputColumns; import org.datacleaner.api.Transformer; import org.datacleaner.components.categories.NumbersCategory; /** * Simple transformer for rounding a number */ @Named("Round number") @Description( "Transformation for rounding a number, typically to the nearest integer, nearest ten, hundred or thousand.") @Categorized(NumbersCategory.class) public class RoundNumberTransformer implements Transformer { @Configured InputColumn<Number> _number; @Configured @Description( "Defines the factor of rounding. A factor of 1 will round to the nearest integer. " + "A factor of 1000 will round the number to the nearest thousand.") @NumberProperty(zero = false, positive = true, negative = false) int _roundFactor = 1; @Override public OutputColumns getOutputColumns() { return new OutputColumns(String.class, _number.getName() + " (rounded)"); } @Override public Integer[] transform(final InputRow row) { Number number = row.getValue(_number); if (number != null) { number = Math.round(number.doubleValue() / _roundFactor) * _roundFactor; number = number.intValue(); } return new Integer[] { (Integer) number }; } }