Java Hash Calculate hasHangulJongSung(char ch)

Here you can find the source of hasHangulJongSung(char ch)

Description

has Hangul Jong Sung

License

Open Source License

Declaration

public static boolean hasHangulJongSung(char ch) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static boolean hasHangulJongSung(char ch) {
        return isHangulSyllables(ch) && (ch - 0xAC00) % 28 > 0;
    }/*from  ww w  . j a  v a 2s. co  m*/

    public static boolean isHangulSyllables(char ch) {
        return ch >= 0xac00 && ch <= 0xd7af;
    }
}

Related

  1. hash64(final byte[] data, int length)
  2. hash64To32(long lg)
  3. hash64to32(long v)
  4. hashAdd(final int left, final int right)
  5. hashAll(Object[] array)
  6. hashArray(int h, Object[] a)
  7. hashArray(Object[] array)
  8. hashArray(Object[] objs)
  9. hashBerkeleyDB64(byte[] str)