org.openhie.openempi.transformation.function.DoubleMetaphoneFunction.java Source code

Java tutorial

Introduction

Here is the source code for org.openhie.openempi.transformation.function.DoubleMetaphoneFunction.java

Source

/**
 *
 * Copyright (C) 2002-2012 "SYSNET International, Inc."
 * support@sysnetint.com [http://www.sysnetint.com]
 *
 * This file is part of OpenEMPI.
 *
 * OpenEMPI is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
package org.openhie.openempi.transformation.function;

import org.apache.commons.codec.language.DoubleMetaphone;

public class DoubleMetaphoneFunction extends AbstractTransformationFunction {
    private DoubleMetaphone metaphone;

    public DoubleMetaphoneFunction() {
        super();
        metaphone = new DoubleMetaphone();
    }

    public Object transform(Object field) {
        log.debug("Applying the double metaphone transform to field with value: " + field);
        if (field == null) {
            return null;
        }
        String encodedValue = metaphone.encode(field.toString());
        log.debug("The double metaphone value for field: '" + field + "' is '" + encodedValue + "'");
        return encodedValue;
    }
}