添加注释

This commit is contained in:
2024-08-23 18:31:39 +08:00
parent 91c30412de
commit 527b0f0980
4 changed files with 144 additions and 6 deletions

View File

@@ -6,6 +6,16 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.annotation.Documented;
/**
* UnsupportedOperation
*
* <p>标识方法为不支持的操作。该方法将抛出 {@link UnsupportedOperationException}。
*
* @author zhouxy
* @version 1.0
* @since 1.0
* @see UnsupportedOperationException
*/
@Documented
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)