
com.zhibaocloud.carbon.intg.desensitization.Symbol Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of carbon-exchange Show documentation
Show all versions of carbon-exchange Show documentation
智保云投保通道开发 SDK。定义数据模型以及数据交互所支持的加解密方法
The newest version!
package com.zhibaocloud.carbon.intg.desensitization;
/**
* @author yangtuo
*/
public class Symbol {
/**
* '*'脱敏符
*/
public static final String STAR = "*";
private Symbol() {
}
/**
* 获取符号
*
* @param number 符号个数
* @param symbol 符号
*/
public static String getSymbol(int number, String symbol) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < number; i++) {
sb.append(symbol);
}
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy