|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Documented @Retention(value=RUNTIME) @Target(value=FIELD) public @interface Column
This Annotation allows to indicate a field to be exported(imported) into(from) a cell.
Required Element Summary | |
---|---|
String |
value
Indicates the position in a row from which begin the field representation. |
Optional Element Summary | |
---|---|
Class<?> |
concreteClass
When the field is an interface, it's necessary to indicate which concrete class used to instanciate on reading process. |
String |
defaultValue
The default value. by default,the expression "null" is used to indicate the default value will be null . |
String |
name
The header name. |
Element Detail |
---|
public abstract String value
public abstract String name
public abstract String defaultValue
null
. In the incredible case, the string "null" is wished as default value, add doublequote to
specify this value like that:
defaultValue="\"null\""
public abstract Class<?> concreteClass
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |