Enum BigQueryIO.TypedRead.QueryPriority

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BATCH
      Specifies that a query should be run with a BATCH priority.
      INTERACTIVE
      Specifies that a query should be run with an INTERACTIVE priority.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static BigQueryIO.TypedRead.QueryPriority valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static BigQueryIO.TypedRead.QueryPriority[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • INTERACTIVE

        public static final BigQueryIO.TypedRead.QueryPriority INTERACTIVE
        Specifies that a query should be run with an INTERACTIVE priority.

        Interactive mode allows for BigQuery to execute the query as soon as possible. These queries count towards your concurrent rate limit and your daily limit.

      • BATCH

        public static final BigQueryIO.TypedRead.QueryPriority BATCH
        Specifies that a query should be run with a BATCH priority.

        Batch mode queries are queued by BigQuery. These are started as soon as idle resources are available, usually within a few minutes. Batch queries don't count towards your concurrent rate limit.

    • Method Detail

      • values

        public static BigQueryIO.TypedRead.QueryPriority[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (BigQueryIO.TypedRead.QueryPriority c : BigQueryIO.TypedRead.QueryPriority.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BigQueryIO.TypedRead.QueryPriority valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null