Interface Pipeline.StageOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
Pipeline.Stage, Pipeline.Stage.Builder
Enclosing class:
Pipeline

public static interface Pipeline.StageOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • getName

      String getName()
       Required. The name of the stage to evaluate.
      
       **Requires:**
      
       * must be in snake case (lower case with underscore separator).
       
      string name = 1 [(.google.api.field_behavior) = REQUIRED];
      Returns:
      The name.
    • getNameBytes

      com.google.protobuf.ByteString getNameBytes()
       Required. The name of the stage to evaluate.
      
       **Requires:**
      
       * must be in snake case (lower case with underscore separator).
       
      string name = 1 [(.google.api.field_behavior) = REQUIRED];
      Returns:
      The bytes for name.
    • getArgsList

      List<Value> getArgsList()
       Optional. Ordered list of arguments the given stage expects.
       
      repeated .google.firestore.v1.Value args = 2 [(.google.api.field_behavior) = OPTIONAL];
    • getArgs

      Value getArgs(int index)
       Optional. Ordered list of arguments the given stage expects.
       
      repeated .google.firestore.v1.Value args = 2 [(.google.api.field_behavior) = OPTIONAL];
    • getArgsCount

      int getArgsCount()
       Optional. Ordered list of arguments the given stage expects.
       
      repeated .google.firestore.v1.Value args = 2 [(.google.api.field_behavior) = OPTIONAL];
    • getArgsOrBuilderList

      List<? extends ValueOrBuilder> getArgsOrBuilderList()
       Optional. Ordered list of arguments the given stage expects.
       
      repeated .google.firestore.v1.Value args = 2 [(.google.api.field_behavior) = OPTIONAL];
    • getArgsOrBuilder

      ValueOrBuilder getArgsOrBuilder(int index)
       Optional. Ordered list of arguments the given stage expects.
       
      repeated .google.firestore.v1.Value args = 2 [(.google.api.field_behavior) = OPTIONAL];
    • getOptionsCount

      int getOptionsCount()
       Optional. Optional named arguments that certain functions may support.
       
      map<string, .google.firestore.v1.Value> options = 3 [(.google.api.field_behavior) = OPTIONAL];
    • containsOptions

      boolean containsOptions(String key)
       Optional. Optional named arguments that certain functions may support.
       
      map<string, .google.firestore.v1.Value> options = 3 [(.google.api.field_behavior) = OPTIONAL];
    • getOptions

      @Deprecated Map<String,Value> getOptions()
      Deprecated.
      Use getOptionsMap() instead.
    • getOptionsMap

      Map<String,Value> getOptionsMap()
       Optional. Optional named arguments that certain functions may support.
       
      map<string, .google.firestore.v1.Value> options = 3 [(.google.api.field_behavior) = OPTIONAL];
    • getOptionsOrDefault

      Value getOptionsOrDefault(String key, Value defaultValue)
       Optional. Optional named arguments that certain functions may support.
       
      map<string, .google.firestore.v1.Value> options = 3 [(.google.api.field_behavior) = OPTIONAL];
    • getOptionsOrThrow

      Value getOptionsOrThrow(String key)
       Optional. Optional named arguments that certain functions may support.
       
      map<string, .google.firestore.v1.Value> options = 3 [(.google.api.field_behavior) = OPTIONAL];