Annotation Type BooleanString
-
@Retention(RUNTIME) @Inherited @Target({FIELD,METHOD,ANNOTATION_TYPE}) public @interface BooleanStringIndicates that parsed values such as "y", "No" or "null" should be interpreted as boolean values. If a parsed value exists intrueStrings(), then the field will receive true. If a parsed value exists infalseStrings()then the field will receive false.A
BooleanConversionwill be assigned to this fieldCommonly used for java beans processed using
BeanProcessorand/orBeanWriterProcessor- Author:
- Univocity Software Pty Ltd - parsers@univocity.com
- See Also:
Conversion,Conversions,BeanProcessor,BeanWriterProcessor
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.String[]falseStringsA set of Strings that represent the boolean valuefalse(e.g.java.lang.String[]trueStringsA set of Strings that represent the boolean valuetrue(e.g.
-