Interface ModelRegistry.ModelParamOrBuilder

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

public static interface ModelRegistry.ModelParamOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Name of the param.
    com.google.protobuf.ByteString
    Name of the param.
    Value of the param associated with the name, could be empty
    com.google.protobuf.ByteString
    Value of the param associated with the name, could be empty
    boolean
    Name of the param.
    boolean
    Value of the param associated with the name, could be empty

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • hasName

      boolean hasName()
       Name of the param.
       
      optional string name = 1;
      Returns:
      Whether the name field is set.
    • getName

      String getName()
       Name of the param.
       
      optional string name = 1;
      Returns:
      The name.
    • getNameBytes

      com.google.protobuf.ByteString getNameBytes()
       Name of the param.
       
      optional string name = 1;
      Returns:
      The bytes for name.
    • hasValue

      boolean hasValue()
       Value of the param associated with the name, could be empty
       
      optional string value = 2;
      Returns:
      Whether the value field is set.
    • getValue

      String getValue()
       Value of the param associated with the name, could be empty
       
      optional string value = 2;
      Returns:
      The value.
    • getValueBytes

      com.google.protobuf.ByteString getValueBytes()
       Value of the param associated with the name, could be empty
       
      optional string value = 2;
      Returns:
      The bytes for value.