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

com.terapico.meta.MetaProvider Maven / Gradle / Ivy

The newest version!
package com.terapico.meta;

import java.util.HashMap;
import java.util.Map;

public class MetaProvider {
  public static Map entities = new HashMap<>();

  public static EntityMeta entity(Class entity) {
    return entity(entity.getName());
  }

  public static EntityMeta entity(String entity) {
     entities.putIfAbsent(entity, new EntityMeta(entity));
     return entities.get(entity);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy