public enum RelationType extends Enum<RelationType>
注解属性的关系类型
若将被Link
注解的属性称为“原始属性”,而在Link
注解中指向的注解属性称为“关联属性”,
则该枚举用于描述“原始属性”与“关联属性”在SynthesizedAggregateAnnotation
处理过程中的作用关系。
根据在Link.type()
中指定的关系类型的不同,通过SynthesizedAggregateAnnotation
合成的注解的属性值也将有所变化。
当一个注解中的所有属性同时具备多种关系时,将依次按下述顺序处理:
Alias
注解;Link
注解,且Link.type()
为MIRROR_FOR
;Link
注解,且Link.type()
为FORCE_ALIAS_FOR
;Link
注解,且Link.type()
为ALIAS_FOR
;SynthesizedAggregateAnnotation
,
Link
Enum Constant and Description |
---|
ALIAS_FOR
表示“原始属性”将作为“关联属性”的别名。
|
FORCE_ALIAS_FOR
表示“原始属性”将强制作为“关联属性”的别名。
|
MIRROR_FOR
表示注解的属性与指定的属性互为镜像,通过一个属性将能够获得对方的值。
|
Modifier and Type | Method and Description |
---|---|
static RelationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationType MIRROR_FOR
表示注解的属性与指定的属性互为镜像,通过一个属性将能够获得对方的值。
它们遵循下述规则:
MIRROR_FOR
的Link
注解指定对方;public static final RelationType ALIAS_FOR
表示“原始属性”将作为“关联属性”的别名。
public static final RelationType FORCE_ALIAS_FOR
表示“原始属性”将强制作为“关联属性”的别名。效果等同于在“原始属性”上添加Alias
注解,
任何情况下,获取“关联属性”的值都将直接返回“原始属性”的值
public static RelationType[] values()
for (RelationType c : RelationType.values()) System.out.println(c);
public static RelationType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024. All rights reserved.