blob: bbc31ada9ebcbb461782e41e1b6e307e5432e327 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.internal.transformer;
import java.io.Serializable;
import org.eclipse.jpt.common.utility.internal.BooleanTools;
import org.eclipse.jpt.common.utility.transformer.Transformer;
/**
* A <code>NotBooleanTransformer</code> will transform a
* {@link Boolean} to its NOT value:<ul>
* <li>If the original {@link Boolean} is {@link Boolean#TRUE},
* the transformer will return {@link Boolean#FALSE}.
* <li>If the original {@link Boolean} is {@link Boolean#FALSE},
* the transformer will return {@link Boolean#TRUE}.
* <li>If the original {@link Boolean} is <code>null</code>,
* the transformer will return <code>null</code>.
* </ul>
*/
public final class NotBooleanTransformer
implements Transformer<Boolean, Boolean>, Serializable
{
public static final Transformer<Boolean, Boolean> INSTANCE = new NotBooleanTransformer();
public static Transformer<Boolean, Boolean> instance() {
return INSTANCE;
}
// ensure single instance
private NotBooleanTransformer() {
super();
}
public Boolean transform(Boolean b) {
return (b == null) ? null : BooleanTools.not(b);
}
@Override
public String toString() {
return this.getClass().getSimpleName();
}
private static final long serialVersionUID = 1L;
private Object readResolve() {
// replace this object with the singleton
return INSTANCE;
}
}