如何给Annotation添加限制?

发布于 2024-11-06 00:10:23 字数 392 浏览 1 评论 0原文

Java注释

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface OneAnnotation{
    String aNumber();        
}

说我只想允许那些匹配的字符串格式(“[\d]+”),其他字符串将因编译器错误或其他通知而“失败”。 是否有任何这样做——添加对注释方法的返回值的限制。

有效:

@OneAnnotation(aNumber = “1234”)

无效:

@OneAnnotation(aNumber = “XXXX”)

Java annotation

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface OneAnnotation{
    String aNumber();        
}

say I wanna only permit those string format which matches("[\d]+"), other string will be "failed" by either a complier error or some other notification.
Is there any of doing this---add restriction on returned value on annotation's method.

valid:

@OneAnnotation(aNumber = “1234”)

invalid:

@OneAnnotation(aNumber = “XXXX”)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兮子 2024-11-13 00:10:23

您也许可以使用注释处理。

除此之外,无法向注释添加任意限制。

但是:如果您想要一个数字,为​​什么不在这里使用像 intlong 这样的数字类型(取决于您的范围要求)?

You might be able to implement this using annotation processing.

Other than that there's no way to add arbitrary restrictions to your annotations.

But: if you want a number, why don't you use a numeric type like int or long here (depending on your range requirements)?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文