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

com.scalar.db.sql.statement.builder.ShowNamespacesStatementBuilder Maven / Gradle / Ivy

There is a newer version: 3.14.0
Show newest version
package com.scalar.db.sql.statement.builder;

import com.scalar.db.sql.statement.ShowNamespacesStatement;

public class ShowNamespacesStatementBuilder {

  private ShowNamespacesStatementBuilder() {}

  public static class Start extends Buildable {
    Start() {}
  }

  public static class Buildable {
    private Buildable() {}

    /**
     * Builds a ShowNamespacesStatement object.
     *
     * @return a ShowNamespacesStatement object
     */
    public ShowNamespacesStatement build() {
      return ShowNamespacesStatement.create();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy