Annotation Type NullString
-
@Retention(RUNTIME) @Inherited @Target({FIELD,METHOD,ANNOTATION_TYPE}) public @interface NullString
Indicates that parsed values such as "", "?" or "null" should be interpreted as null. If a parsed value exists innulls()
, then the field must be set to null.A
NullStringConversion
will be assigned to this fieldCommonly used for java beans processed using
BeanProcessor
and/orBeanWriterProcessor
- See Also:
Conversion
,Conversions
,BeanProcessor
,BeanWriterProcessor
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.String[]
nulls
A set of Strings that represent a null value instead of a valid String (e.g.
-