com.ancientprogramming.fixedformat4j.annotation
Annotation Type FixedFormatBoolean


@Retention(value=RUNTIME)
@Target(value={METHOD,FIELD})
public @interface FixedFormatBoolean

Define representations for Boolean.TRUE and Boolean.FALSE

Since:
1.0.0
Author:
Jacob von Eyben - http://www.ancientprogramming.com

Optional Element Summary
 java.lang.String falseValue
          The string to map a boolean false value to.
 java.lang.String trueValue
          The string to map a boolean true value to.
 

trueValue

public abstract java.lang.String trueValue
The string to map a boolean true value to.

Returns:
contains the string representation of a true value
Default:
"T"

falseValue

public abstract java.lang.String falseValue
The string to map a boolean false value to.

Returns:
contains the string representation of a false value
Default:
"F"


Copyright © 2008 ancientprogramming.com. All Rights Reserved.