@Retention(value=RUNTIME) @Target(value={FIELD,METHOD}) public @interface Element
Sets the Element for type conversion.
Annotation usage:
The Element annotation must be applied at field or method level.
Annotation parameters:
| Parameter | Required | Default | Description | 
|---|---|---|---|
| value | no | java.lang.Object.class | The element property value. | 
Example code:
 
 // The key property for User objects within the users collection is the userName attribute.
 @Element( value = com.acme.User )
 private Map<Long, User> userMap;
 @Element( value = com.acme.User )
 public List<User> userList;
 
 public abstract Class value
Copyright © 2000–2020 Apache Software Foundation. All rights reserved.