Package biopb.image

Interface OpNamesOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
OpNames, OpNames.Builder

public interface OpNamesOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • getNamesList

      List<String> getNamesList()
       a list of op names
       
      repeated string names = 1;
      Returns:
      A list containing the names.
    • getNamesCount

      int getNamesCount()
       a list of op names
       
      repeated string names = 1;
      Returns:
      The count of names.
    • getNames

      String getNames(int index)
       a list of op names
       
      repeated string names = 1;
      Parameters:
      index - The index of the element to return.
      Returns:
      The names at the given index.
    • getNamesBytes

      com.google.protobuf.ByteString getNamesBytes(int index)
       a list of op names
       
      repeated string names = 1;
      Parameters:
      index - The index of the value to return.
      Returns:
      The bytes of the names at the given index.
    • getOpSchemasCount

      int getOpSchemasCount()
       Map from op_name to its schema.
       Provides discoverability for kwargs parameters.
       
      map<string, .biopb.image.OpSchema> op_schemas = 2;
    • containsOpSchemas

      boolean containsOpSchemas(String key)
       Map from op_name to its schema.
       Provides discoverability for kwargs parameters.
       
      map<string, .biopb.image.OpSchema> op_schemas = 2;
    • getOpSchemas

      @Deprecated Map<String,OpSchema> getOpSchemas()
      Deprecated.
      Use getOpSchemasMap() instead.
    • getOpSchemasMap

      Map<String,OpSchema> getOpSchemasMap()
       Map from op_name to its schema.
       Provides discoverability for kwargs parameters.
       
      map<string, .biopb.image.OpSchema> op_schemas = 2;
    • getOpSchemasOrDefault

      OpSchema getOpSchemasOrDefault(String key, OpSchema defaultValue)
       Map from op_name to its schema.
       Provides discoverability for kwargs parameters.
       
      map<string, .biopb.image.OpSchema> op_schemas = 2;
    • getOpSchemasOrThrow

      OpSchema getOpSchemasOrThrow(String key)
       Map from op_name to its schema.
       Provides discoverability for kwargs parameters.
       
      map<string, .biopb.image.OpSchema> op_schemas = 2;