All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.common.LazyLoader Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package org.snapscript.common;

public class LazyLoader {
   
   private LazyBuilder builder;
   private V value;
   
   public LazyLoader(LazyBuilder builder) {
      this.builder = builder;
   }
   
   public V load(K key) {
      if(value == null) {
         value = builder.create(key);
      }
      return value;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy