Here you can find the source of toGreek(char c)
static public String toGreek(char c)
//package com.java2s; /*//from w ww . java2s .c o m * EuroCarbDB, a framework for carbohydrate bioinformatics * * Copyright (c) 2006-2009, Eurocarb project, or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * A copy of this license accompanies this distribution in the file LICENSE.txt. * * 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 Lesser General Public License * for more details. * * Last commit: $Rev: 1210 $ by $Author: glycoslave $ on $Date:: 2009-06-12 #$ */ import java.util.*; public class Main { /** Return the unicode representation of a letter in the greek alphabet, where 'a' correspond to 'alpha', 'b' to 'beta' and so on */ static public String toGreek(char c) { StringBuilder txt = new StringBuilder(); if (Character.isLetter(c)) txt.appendCodePoint(945 + c - 'a'); else txt.append(c); return txt.toString(); } /** Return a string representation of an integer array. @param delim the character to be used as delimiter between the array's elements */ static public String toString(int[] v, char delim) { if (v == null) return ""; StringBuilder strbuf = new StringBuilder(); for (int i = 0; i < v.length; i++) { if (i > 0) strbuf.append(delim); strbuf.append(v[i]); } return strbuf.toString(); } /** Return a string representation of an object array. @param delim the character to be used as delimiter between the array's elements */ static public String toString(Object[] v, char delim) { if (v == null) return ""; StringBuilder strbuf = new StringBuilder(); for (int i = 0; i < v.length; i++) { if (i > 0) strbuf.append(delim); strbuf.append(v[i].toString()); } return strbuf.toString(); } /** Return a string representation of a list. @param delim the character to be used as delimiter between the list's elements */ static public String toString(Collection<? extends Object> v, char delim) { if (v == null) return ""; StringBuilder strbuf = new StringBuilder(); for (Object o : v) { if (strbuf.length() > 0) strbuf.append(delim); strbuf.append(o.toString()); } return strbuf.toString(); } }