Interface SocketOptionOrBuilder

    • Method Detail

      • getName

        java.lang.String getName()
         The full name of the socket option.  Typically this will be the upper case
         name, such as "SO_REUSEPORT".
         
        string name = 1;
        Returns:
        The name.
      • getNameBytes

        ByteString getNameBytes()
         The full name of the socket option.  Typically this will be the upper case
         name, such as "SO_REUSEPORT".
         
        string name = 1;
        Returns:
        The bytes for name.
      • getValue

        java.lang.String getValue()
         The human readable value of this socket option.  At least one of value or
         additional will be set.
         
        string value = 2;
        Returns:
        The value.
      • getValueBytes

        ByteString getValueBytes()
         The human readable value of this socket option.  At least one of value or
         additional will be set.
         
        string value = 2;
        Returns:
        The bytes for value.
      • hasAdditional

        boolean hasAdditional()
         Additional data associated with the socket option.  At least one of value
         or additional will be set.
         
        .google.protobuf.Any additional = 3;
        Returns:
        Whether the additional field is set.
      • getAdditional

        Any getAdditional()
         Additional data associated with the socket option.  At least one of value
         or additional will be set.
         
        .google.protobuf.Any additional = 3;
        Returns:
        The additional.
      • getAdditionalOrBuilder

        AnyOrBuilder getAdditionalOrBuilder()
         Additional data associated with the socket option.  At least one of value
         or additional will be set.
         
        .google.protobuf.Any additional = 3;