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

com.rapleaf.jack.queries.Table Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
package com.rapleaf.jack.queries;

import java.util.Collections;
import java.util.List;
import java.util.Set;

public interface Table {

  public String getName();

  public String getAlias();

  public Set getAllColumns();

  public String getSqlKeyword();

  default List getParameters() {
    return Collections.emptyList();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy