Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getHostAddress (0.2 sec)

  1. src/main/java/jcifs/netbios/UniAddress.java

         * 
         * @return the ip address
         */
        @Override
        public String getHostAddress () {
            if ( this.addr instanceof NbtAddress ) {
                return ( (NbtAddress) this.addr ).getHostAddress();
            }
            return ( (InetAddress) this.addr ).getHostAddress();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @throws UnknownHostException
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Address.java

         */
        String getHostName ();
    
    
        /**
         * Return the IP address as text such as "192.168.1.15".
         * 
         * @return the ip address
         */
        String getHostAddress ();
    
    
        /**
         * 
         * @return this address as an InetAddress
         * @throws UnknownHostException
         */
        InetAddress toInetAddress () throws UnknownHostException;
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 03 13:22:30 UTC 2018
    - 2K bytes
    - Viewed (0)
Back to top