mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
fix annotation in StrUtil and SymmetricCrypto
This commit is contained in:
parent
5e381a1007
commit
34d646bd88
@ -2953,7 +2953,7 @@ public class StrUtil {
|
||||
* StrUtil.padAfter("123", 2, '0');//"23"
|
||||
* </pre>
|
||||
*
|
||||
* @param str 字符串,如果为<code>null</code>,按照空串处理
|
||||
* @param str 字符串,如果为<code>null</code>,直接返回null
|
||||
* @param minLength 最小长度
|
||||
* @param padChar 补充的字符
|
||||
* @return 补充后的字符串
|
||||
@ -2981,7 +2981,7 @@ public class StrUtil {
|
||||
* StrUtil.padAfter("123", 2, "ABC");//"23"
|
||||
* </pre>
|
||||
*
|
||||
* @param str 字符串,如果为<code>null</code>,按照空串处理
|
||||
* @param str 字符串,如果为<code>null</code>,直接返回null
|
||||
* @param minLength 最小长度
|
||||
* @param padStr 补充的字符
|
||||
* @return 补充后的字符串
|
||||
|
@ -436,7 +436,7 @@ public class SymmetricCrypto implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* 解密Hex表示的字符串,默认UTF-8编码
|
||||
* 解密Hex(16进制)或Base64表示的字符串,默认UTF-8编码
|
||||
*
|
||||
* @param data 被解密的String
|
||||
* @return 解密后的String
|
||||
|
Loading…
Reference in New Issue
Block a user