blob: 98c376ceb7d26b7c813263501fd526716b315066 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2015 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.reference;
import org.eclipse.jpt.common.utility.reference.BooleanReference;
/**
* Reference utility methods.
*/
public final class ReferenceTools {
/**
* Return a <code>boolean</code> reference with the specified value.
*/
public static BooleanReference booleanReference(boolean value) {
return value ? TrueBooleanReference.instance() : FalseBooleanReference.instance();
}
// ********** constructor **********
/**
* Suppress default constructor, ensuring non-instantiability.
*/
private ReferenceTools() {
super();
throw new UnsupportedOperationException();
}
}