Module org.snmp4j

Class SecretOctetString

    • Constructor Detail

      • SecretOctetString

        public SecretOctetString​(OctetString secret)
      • SecretOctetString

        public SecretOctetString​(byte[] rawValue)
      • SecretOctetString

        public SecretOctetString​(byte[] rawValue,
                                 int offset,
                                 int length)
        Creates an octet string from an byte array.
        Parameters:
        rawValue - an array of bytes.
        offset - the position (zero based) of the first byte to be copied from rawValueinto the new OctetString.
        length - the number of bytes to be copied.
      • SecretOctetString

        public SecretOctetString()
    • Method Detail

      • toString

        public java.lang.String toString()
        Description copied from class: OctetString
        Returns a String representation of this OctetString. If the OctetString contains non-printable characters, a hex-string representation is returned unless SNMP4JSettings.getDefaultNonPrintableEscapeCharacter() returns a non-null character that is then used to replace all non-printable characters in the output.
        Specified by:
        toString in interface Variable
        Overrides:
        toString in class OctetString
        Returns:
        a String representation of this OctetString.
      • toHexString

        public java.lang.String toHexString​(char separator)
        Overrides:
        toHexString in class OctetString
      • toString

        public java.lang.String toString​(char separator,
                                         int radix)
        Overrides:
        toString in class OctetString
      • toString

        public java.lang.String toString​(int radix)
        Description copied from class: OctetString
        Returns a string representation of this octet string in the radix specified. There will be no separation characters, but each byte will be represented by round(log(256)/log(radix)) digits.
        Overrides:
        toString in class OctetString
        Parameters:
        radix - the radix to use in the string representation.
        Returns:
        a string representation of this ocetet string in the specified radix.