Java Hash String hashTermToString(int i, int h)

Here you can find the source of hashTermToString(int i, int h)

Description

hash Term To String

License

Apache License

Declaration

public static String hashTermToString(int i, int h) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static final String DELIMITER = "a";

    public static String hashTermToString(int i, int h) {
        return Integer.toString(i) + DELIMITER + Integer.toString(h);
    }//from   ww  w. java2s. c  om
}

Related

  1. hashString(String s)
  2. hashString(String s)
  3. hashString(String s)
  4. hashString(String str)
  5. hashString(String str)
  6. hasHtmlTag(String content)
  7. hasHTMLTag(String html)
  8. hasHTMLTag(String text)
  9. hashToHexString(byte[] hash)