作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我创造
enum Restrictions{
none,
enumeration,
fractionDigits,
length,
maxExclusive,
maxInclusive,
maxLength,
minExclusive,
minInclusive,
minLength,
pattern,
totalDigits,
whiteSpace;
public Restrictions setValue(int value){
this.value = value;
return this;
}
public int value;
}
这样我就可以愉快地做这样的事情,这是完全合法的语法。
Restrictions r1 =
Restrictions.maxLength.setValue(64);
原因是,我正在使用枚举来限制可以使用的限制类型,并能够为该限制分配一个值。
但是,我的实际动机是在@annotation 中使用该限制。
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD})
public @interface Presentable {
Restrictions[] restrictions() default Restrictions.none;
}
因此,我打算这样做:
@Presentable(restrictions=Restrictions.maxLength.setValue(64))
public String userName;
编译器对它发出嘶哑的声音
The value for annotation enum attribute must be an enum constant expression.
有没有办法完成我想完成的事情
最佳答案
你可以这样做:
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
class Person {
@Presentable({
@Restriction(type = RestrictionType.LENGTH, value = 5),
@Restriction(type = RestrictionType.FRACTION_DIGIT, value = 2)
})
public String name;
}
enum RestrictionType {
NONE, LENGTH, FRACTION_DIGIT;
}
@Retention(RetentionPolicy.RUNTIME)
@interface Restriction {
//The below fixes the compile error by changing type from String to RestrictionType
RestrictionType type() default RestrictionType.NONE;
int value() default 0;
}
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD})
@interface Presentable {
Restriction[] value();
}
关于java - 为 @Annotation 枚举分配一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3010993/
我是一名优秀的程序员,十分优秀!