layout: default title: Element Annotation parent: title: Annotations url: annotations.html

Element Annotation

Sets the Element for type conversion.

Usage

The Element annotation must be applied at field or method level.

Parameters

Examples

// The key property for User objects within the users collection is the <code>userName</code> attribute.
@Element( value = com.acme.User.class )
private Map userMap;

@Element( value = com.acme.User.class )
public List userList;