/
akolonin
/
aigents-java
Обзор
Документация
Войти
/
akolonin
/
aigents-java
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/net/webstructor/data/Lang.java
57 строк
2 KB
Anton Kolonin
3.4.4 New Year 2021 with smarter graph layout
01 янв 2021, 08:37
01 янв 2021, 08:37
f2967ac
Код
Авторство
О чём код?
/* * MIT License * * Copyright (c) 2005-2020 by Anton Kolonin, Aigents * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package net.webstructor.data; import net.webstructor.util.Array; public class Lang { String prefix; String name; String vowels; String consonants; String specials; private java.util.Set<String> scrubs; public Lang(String prefix,String name,String vowels,String consonants,String specials, String[] scrubs){ this.prefix = prefix; this.name = name; this.vowels = vowels; this.consonants = consonants; this.specials = specials; this.scrubs = Array.toSet(scrubs); } static char obfuscate(String s,char c){ int i = s.indexOf(c); return i == -1 ? 0 : s.charAt( s.length() - 1 - i ); } char obfuscate(char c){ char r = obfuscate(vowels,c); return r != 0 ? r : obfuscate(consonants,c); } boolean has(char c){ return vowels.indexOf(c) != -1 || consonants.indexOf(c) != -1 || specials.indexOf(c) != -1; } public boolean isScrub(String word){ return scrubs.contains(word); } }