Interface ModelRegistry.ModelParamOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Name of the param.
      com.google.protobuf.ByteString getNameBytes()
      Name of the param.
      java.lang.String getValue()
      Value of the param associated with the name, could be empty
      com.google.protobuf.ByteString getValueBytes()
      Value of the param associated with the name, could be empty
      boolean hasName()
      Name of the param.
      boolean hasValue()
      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 Detail

      • hasName

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

        java.lang.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

        java.lang.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.