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

org.apache.lucene.analysis.ro.RomanianNormalizer Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     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.apache.lucene.analysis.ro;

/**
 * Normalizer for Romanian.
 *
 * 

Cedilla forms are normalized to forms with comma. */ class RomanianNormalizer { static final char CAPITAL_S_WITH_COMMA_BELOW = '\u0218'; static final char SMALL_S_WITH_COMMA_BELOW = '\u0219'; static final char CAPITAL_T_WITH_COMMA_BELOW = '\u021A'; static final char SMALL_T_WITH_COMMA_BELOW = '\u021B'; static final char CAPITAL_S_WITH_CEDILLA = '\u015E'; static final char SMALL_S_WITH_CEDILLA = '\u015F'; static final char CAPITAL_T_WITH_CEDILLA = '\u0162'; static final char SMALL_T_WITH_CEDILLA = '\u0163'; /** * Normalize an input buffer of Romanian text * * @param s input buffer * @param len length of input buffer * @return length of input buffer after normalization */ int normalize(char[] s, int len) { for (int i = 0; i < len; i++) { switch (s[i]) { case CAPITAL_S_WITH_CEDILLA: s[i] = CAPITAL_S_WITH_COMMA_BELOW; break; case SMALL_S_WITH_CEDILLA: s[i] = SMALL_S_WITH_COMMA_BELOW; break; case CAPITAL_T_WITH_CEDILLA: s[i] = CAPITAL_T_WITH_COMMA_BELOW; break; case SMALL_T_WITH_CEDILLA: s[i] = SMALL_T_WITH_COMMA_BELOW; break; default: break; } } return len; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy