Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hexone (0.33 sec)

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

                return false;
            }
            n = (Name) obj;
            if ( this.scope == null && n.scope == null ) {
                return this.name.equals(n.name) && this.hexCode == n.hexCode;
            }
            return this.name.equals(n.name) && this.hexCode == n.hexCode && this.scope.equals(n.scope);
        }
    
    
        @Override
        public String toString () {
            StringBuffer sb = new StringBuffer();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/Name.java

                return false;
            }
            n = (Name)obj;
            if( scope == null && n.scope == null ) {
                return name.equals( n.name ) && hexCode == n.hexCode;
            }
            return name.equals( n.name ) && hexCode == n.hexCode && scope.equals( n.scope );
        }
        public String toString() {
            StringBuffer sb = new StringBuffer();
            String n = name;
    
            // fix MSBROWSE name
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.6K bytes
    - Viewed (0)
Back to top