Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isAllDigits (0.07 sec)

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

                    if( i < len && data[i] == '.' ) {
                        dots++;
                        i++;
                    }
                }
            }
    
            return false;
        }
    
        static boolean isAllDigits( String hostname ) {
            for (int i = 0; i < hostname.length(); i++) {
                if (Character.isDigit( hostname.charAt( i )) == false) {
                    return false;
                }
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            try {
                thread.join();
            }
            catch ( InterruptedException e ) {
                e.printStackTrace();
            }
        }
    
    
        private static boolean isAllDigits ( String hostname ) {
            for ( int i = 0; i < hostname.length(); i++ ) {
                if ( Character.isDigit(hostname.charAt(i)) == false ) {
                    return false;
                }
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
Back to top