docs: optimised javadoc

This commit is contained in:
Zihlu Wang
2023-07-29 07:41:20 +08:00
parent 291d64321f
commit cdd4c7ad4d
3 changed files with 5 additions and 2 deletions
@@ -24,6 +24,9 @@ package cn.org.codecrafters.guid;
* The type of ID is determined by the class implementing this interface. * The type of ID is determined by the class implementing this interface.
* *
* @param <IdType> this represents the type of the Global Unique Identifier * @param <IdType> this represents the type of the Global Unique Identifier
* @author Zihlu Wang
* @version 1.0.0
* @since 1.0.0
*/ */
public interface GuidCreator<IdType> { public interface GuidCreator<IdType> {
@@ -43,7 +43,7 @@ import java.time.ZoneOffset;
* *
* @author Zihlu Wang * @author Zihlu Wang
* @version 1.0.0 * @version 1.0.0
* @since 14 Jul 2023 * @since 1.0.0
*/ */
public final class SnowflakeGuidCreator implements GuidCreator<Long> { public final class SnowflakeGuidCreator implements GuidCreator<Long> {
@@ -30,6 +30,6 @@
* <li>Easy to integrate</li> * <li>Easy to integrate</li>
* </ul> * </ul>
* *
* @since 2023.2 * @since 1.0.0
*/ */
package cn.org.codecrafters.guid; package cn.org.codecrafters.guid;