com.vangent.hieos.empi.transform.DoubleMetaphoneTransformFunction.java Source code

Java tutorial

Introduction

Here is the source code for com.vangent.hieos.empi.transform.DoubleMetaphoneTransformFunction.java

Source

/*
 * This code is subject to the HIEOS License, Version 1.0
 *
 * Copyright(c) 2011 Vangent, Inc.  All rights reserved.
 *
 * 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 com.vangent.hieos.empi.transform;

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

/**
 *
 * @author Bernie Thuman
 */
public class DoubleMetaphoneTransformFunction extends TransformFunction {

    /**
     * 
     * @param obj
     * @return
     */
    public Object transform(Object obj) {
        DoubleMetaphone encoder = new DoubleMetaphone();
        return encoder.encode((String) obj);
    }
}