Java Char to Unicode toGreek(char c)

Here you can find the source of toGreek(char c)

Description

Return the unicode representation of a letter in the greek alphabet, where 'a' correspond to 'alpha', 'b' to 'beta' and so on

License

Open Source License

Declaration

static public String toGreek(char c) 

Method Source Code


//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();
    }
}

Related

  1. charToUnicode(char c)
  2. charToUnicodeEscape(char c)
  3. charToUnicodeLiteral(int value)
  4. charToUnicodeSequence(final StringBuilder buf, final char ch)
  5. charToUtf8(char ch, byte[] bytes, int start)