/******************************************************************************* * Copyright 2015-2016 - CNRS (Centre National de Recherche Scientifique) * * 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 eu.project.ttc.engines.desc; import java.util.Locale; import java.util.NoSuchElementException; import eu.project.ttc.termino.engines.VariantScorerConfig; import eu.project.ttc.utils.OccurrenceBuffer; public enum Lang { FR("french", Locale.FRENCH, OccurrenceBuffer.NO_CLEANING, 0.5f, 0.1f, 0.1f, 0.3f, 0.7f, 3, 3, VariantScorerConfig.create(0.5, 0.1,0.1, 0.25)), EN("english", Locale.ENGLISH, OccurrenceBuffer.NO_CLEANING, 0.7f, 0.1f, 0.1f, 0.1f, 0.85f, 3, 3, VariantScorerConfig.create(0.5, 0.1,0.1, 0.25)), ES("spanish", Locale.FRENCH, OccurrenceBuffer.NO_CLEANING, 0.5f, 0.1f, 0.1f, 0.3f, 1f, 3, 3, VariantScorerConfig.create(0.5, 0.1,0.1, 0.25)), DE("german", Locale.GERMAN, OccurrenceBuffer.NO_CLEANING, 0.5f, 0.3f, 0.1f, 0.1f, 0.85f, 3, 4, VariantScorerConfig.create(0.5, 0.1,0.1, 0.25)), ZH("chinese", Locale.CHINESE, OccurrenceBuffer.NO_CLEANING, 0.5f, 0.1f, 0.1f, 0.3f, 0.7f, 3, 2, VariantScorerConfig.create(0.5, 0.1,0.1, 0.25)), LV("latvian", Locale.GERMAN, OccurrenceBuffer.NO_CLEANING,0.5f, 0.1f, 0.1f, 0.3f, 0.8f, 3, 3, VariantScorerConfig.create(0.5, 0.1,0.1, 0.25)), RU("russian", Locale.JAPAN, OccurrenceBuffer.NO_CLEANING,0.3f, 0.1f, 0.4f, 0.2f, 0.7f, 3, 3,VariantScorerConfig.create(0.5, 0.1,0.1, 0.25)), DA("danish", Locale.GERMAN, OccurrenceBuffer.NO_CLEANING,0.5f, 0.1f, 0.1f, 0.3f, 0.8f, 3, 3, VariantScorerConfig.create(0.5, 0.1,0.1, 0.25)); private final float compostAlpha; private final float compostBeta; private final float compostGamma; private final float compostDelta; private final float compostScoreThreshold; private final int compostMinComponentSize; private final int compostMaxComponentNumber; private final Locale locale; private final String longLang; private final String regexPostProcessingStrategy; private VariantScorerConfig scorerConfig; private Lang(String longLang, Locale locale, String regexPostProcessingStrategy, float compostAlpha, float compostBeta, float compostGamma, float compostDelta, float compostCompostThreshold, int compostMinComponentSize, int compostMaxComponentNumber, VariantScorerConfig scorefierConfig ) { this.locale = locale; this.longLang = longLang; this.regexPostProcessingStrategy = regexPostProcessingStrategy; this.compostAlpha = compostAlpha; this.compostBeta = compostBeta; this.compostGamma = compostGamma; this.compostDelta = compostDelta; this.compostScoreThreshold = compostCompostThreshold; this.compostMinComponentSize = compostMinComponentSize; this.compostMaxComponentNumber = compostMaxComponentNumber; this.scorerConfig = scorefierConfig; } public String getName() { return longLang; } public String getNameUC() { return getName().substring(0,1).toUpperCase() + getName().substring(1); } @Override public String toString() { return getCode(); } public String getCode() { return name().toLowerCase(); } public String getRegexPostProcessingStrategy() { return regexPostProcessingStrategy; } public static void checkLang(String lang) { if(!isLanguageSupported(lang)) throw new LanguageException(lang); } public static boolean isLanguageSupported(String lang) { for(Lang l:Lang.values()) { if(l.getCode().equals(lang)) return true; } return false; } public static Lang forName(String lang) { for(Lang l:Lang.values()) { if(l.getCode().equals(lang)) return l; } throw new LanguageException(lang); } public Locale getLocale() { return locale; } public float getCompostAlpha() { return compostAlpha; } public float getCompostBeta() { return compostBeta; } public float getCompostDelta() { return compostDelta; } public float getCompostGamma() { return compostGamma; } public int getCompostMaxComponentNumber() { return compostMaxComponentNumber; } public float getCompostScoreThreshold() { return compostScoreThreshold; } public static Lang fromCode(String code) { for(Lang l:values()) if(l.getCode().equals(code)) return l; throw new NoSuchElementException(code); } public VariantScorerConfig getScorerConfig() { return scorerConfig; } public int getCompostMinComponentSize() { return compostMinComponentSize; } }