org.jenetics.internal.util.Lazy Maven / Gradle / Ivy
/*
* Java Genetic Algorithm Library (jenetics-3.4.0).
* Copyright (c) 2007-2016 Franz Wilhelmstötter
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Author:
* Franz Wilhelmstötter ([email protected])
*/
package org.jenetics.internal.util;
import static java.util.Objects.requireNonNull;
import java.io.Serializable;
import java.util.Objects;
import java.util.function.Supplier;
/**
* Class for lazy value initialization.
*
* @author Franz Wilhelmstötter
* @since 3.0
* @version 3.4
*/
public final class Lazy implements Supplier, Serializable {
private static final long serialVersionUID = 1L;
private final Supplier _supplier;
private T _value;
private volatile boolean _evaluated = false;
private Lazy(final Supplier supplier) {
_supplier = requireNonNull(supplier);
}
@Override
public T get() {
return _evaluated ? _value : evaluate();
}
/**
* Return the evaluation state of the {@code Lazy} variable.
*
* @return {@code true} is the {@code Lazy} variable has been evaluated,
* {@code false} otherwise
*/
public synchronized boolean isEvaluated() {
return _evaluated;
}
private synchronized T evaluate() {
if (!_evaluated) {
_value = _supplier.get();
_evaluated = true;
}
return _value;
}
@Override
public int hashCode() {
return Objects.hashCode(get());
}
@Override
public boolean equals(final Object obj) {
if (this == obj) return true;
if (!(obj instanceof Lazy>)) return false;
final Lazy> lazy = (Lazy>)obj;
return Objects.equals(get(), lazy.get());
}
@Override
public String toString() {
return Objects.toString(get());
}
/**
* Create a new lazy value initialization.
*
* @param supplier the lazy value supplier
* @param the value type
* @return a new lazy value initialization
* @throws java.lang.NullPointerException if the given supplier is
* {@code null}
*/
public static Lazy of(final Supplier supplier) {
return new Lazy<>(supplier);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy