congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Bigquery$Tables$Get.setFields
Code IndexAdd Tabnine to your IDE (free)

How to use
setFields
method
in
com.google.api.services.bigquery.Bigquery$Tables$Get

Best Java code snippets using com.google.api.services.bigquery.Bigquery$Tables$Get.setFields (Showing top 4 results out of 315)

origin: com.google.cloud/google-cloud-bigquery

@Override
public Table getTable(
  String projectId, String datasetId, String tableId, Map<Option, ?> options) {
 try {
  return bigquery
    .tables()
    .get(projectId, datasetId, tableId)
    .setFields(Option.FIELDS.getString(options))
    .execute();
 } catch (IOException ex) {
  BigQueryException serviceException = translate(ex);
  if (serviceException.getCode() == HTTP_NOT_FOUND) {
   return null;
  }
  throw serviceException;
 }
}
origin: com.google.gcloud/gcloud-java-bigquery

@Override
public Table getTable(String datasetId, String tableId, Map<Option, ?> options) {
 try {
  return bigquery.tables()
    .get(this.options.projectId(), datasetId, tableId)
    .setFields(FIELDS.getString(options))
    .execute();
 } catch (IOException ex) {
  BigQueryException serviceException = translate(ex);
  if (serviceException.code() == HTTP_NOT_FOUND) {
   return null;
  }
  throw serviceException;
 }
}
origin: com.google.cloud/gcloud-java-bigquery

@Override
public Table getTable(String datasetId, String tableId, Map<Option, ?> options) {
 try {
  return bigquery.tables()
    .get(this.options.projectId(), datasetId, tableId)
    .setFields(FIELDS.getString(options))
    .execute();
 } catch (IOException ex) {
  BigQueryException serviceException = translate(ex);
  if (serviceException.code() == HTTP_NOT_FOUND) {
   return null;
  }
  throw serviceException;
 }
}
origin: googleapis/google-cloud-java

@Override
public Table getTable(
  String projectId, String datasetId, String tableId, Map<Option, ?> options) {
 try {
  return bigquery
    .tables()
    .get(projectId, datasetId, tableId)
    .setFields(Option.FIELDS.getString(options))
    .execute();
 } catch (IOException ex) {
  BigQueryException serviceException = translate(ex);
  if (serviceException.getCode() == HTTP_NOT_FOUND) {
   return null;
  }
  throw serviceException;
 }
}
com.google.api.services.bigqueryBigquery$Tables$GetsetFields

Popular methods of Bigquery$Tables$Get

  • execute
  • <init>
    Gets the specified table resource by table ID. This method does not return the data in the table, it

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (Timer)
  • setScale (BigDecimal)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Collectors (java.util.stream)
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • 21 Best Atom Packages for 2021
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now