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

kz.greetgo.libase.model.DbStru Maven / Gradle / Ivy

package kz.greetgo.libase.model;

import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

public class DbStru {
  public final Map relations = new HashMap<>();
  
  public final Set foreignKeys = new HashSet<>();
  
  public final Set sequences = new HashSet<>();
  
  public final Map funcs = new HashMap<>();
  
  public final Map triggers = new HashMap<>();
  
  public Table table(String name) {
    return (Table)relations.get(name);
  }
  
  public View view(String name) {
    return (View)relations.get(name);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy