net.sf.wcfart.wcf.format.BooleanHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wcf-art Show documentation
Show all versions of wcf-art Show documentation
jpivot-wcf code used by the ART reporting tool
The newest version!
/*
* ====================================================================
* This software is subject to the terms of the Common Public License
* Agreement, available at the following URL:
* http://www.opensource.org/licenses/cpl.html .
* Copyright (C) 2003-2004 TONBELLER AG.
* All Rights Reserved.
* You must accept the terms of that agreement to use this software.
* ====================================================================
*
*
*/
package net.sf.wcfart.wcf.format;
import java.util.List;
/**
* @author av
*/
public class BooleanHandler extends FormatHandlerSupport {
/**
* formats a Boolean instance to "true" or "false"
* @param o a Boolean instance, null will be rendered as "false"
*/
public String format(Object o, String userPattern) {
if (o == null) {
return "false";
}
return ((Boolean) o).toString();
}
public Object parse(String s, String userPattern) {
return new Boolean(s);
}
public boolean canHandle(Object value) {
return value instanceof Boolean;
}
public Object toNativeArray(List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy