All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.logicbus.kvalue.common.KeyUtils Maven / Gradle / Ivy

package com.logicbus.kvalue.common;

/**
 * Key
 * @author duanyy
 *
 */
public class KeyUtils {
	public static String key(String...keys){
		StringBuffer buf = new StringBuffer();
		for (int i = 0 ;i < keys.length ; i ++){
			if (i > 0){
				buf.append(':');
			}
			buf.append(keys[i]);
		}
		return buf.toString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy