Refers to Java equals method, indicating whether some object is "equal to" this one.

learn more… | top users | synonyms (1)

0
votes
2answers
57 views

Javascript == operator doesn't work as expected? [duplicate]

I searched like 2 hours before asking this question and didn't find anything solving my problem although I think it's a rather basic one. In Java you just can use equal() to see if two objects have ...
1
vote
3answers
43 views

Provide Implementations of equals, hashCode and compareTo methods for class

I have an exam and this was in the mock and im not quite sure how to go about it, this isn't homework its simply trying to understand how to do it. Thanks. public class Book{ private final String ...
0
votes
3answers
36 views

Overriding equals without custom class

I'm trying to store a set of possible choices and eliminate duplicates so I'm storing the choices I've made in a HashSet. I have two pieces of data for each step and the combination of both must not ...
0
votes
1answer
6 views

No equals method when using Lombok for generation and running JBoss

I have class with lombok generated equals and hashcode import lombok.Data; import lombok.ToString; @Data @ToString public class ObjectType { ... In Eclipse outline view equals and hashcode methods ...
1
vote
1answer
22 views

CompositeId and overrided GetHashCode() and Equals() methods

I have entity class: [Serializable, Class(Table = "mon.tableView", Lazy = false)] public class TableView { [CompositeId(1)] [KeyProperty(2, Name = "column1", Column = "column1", ...
1
vote
3answers
62 views

overriding equals method when dealing with inheritance

I have been reading about how best to override the equals method when dealing with subclasses and here I have found quite a few posts. They recommend different ways of implementing a solution using ...
2
votes
1answer
55 views

Equals method used in Map key comaprison

I know that it is not possible to extend a class which overrides the method equals() and to keep it "preserved" when someone adds a new aspect in a subclass. The common example with class Point and a ...
0
votes
1answer
8 views

WinBUGS equals function with NA

Would someone please let me know what the equals function in WinBUGS return if one of the elements in the equals brackets is NA? Specifically, I want to do the transformation: for(i in 1:N){ ...
3
votes
2answers
87 views

Issue with Responsive Columns having equal height

Here is my debate, the problem is solved, but I cant figure out why the method used on css-tricks.com didnt work. The only reason I can assume it didnt work was because my columns are responsive. ...
0
votes
3answers
59 views

Do I need to override the equals method of a class <A> to get unique objects in a Set<A>?

Maybe this question should be divided into two, but the first one is quite simple, it's about .equals(). I thought that == checks if two references point to the same object, while .equals() checks if ...
0
votes
3answers
54 views

Strict comparaison between char and int

I would like to know if it was possible to compare an integer and a char. Something that could be the "===" from Javascript. Because 'a' == 97 Will ouput 1 Edit : I would like something like ...
1
vote
5answers
49 views

Looking Up Quotation marks with a array of Strings

So I have the following String: dog "and" cat I split it up into an array named: array1 with, {'d','o','g',' ','"','c','a',t','"'} boolean works = false; for (int i=0; i < array1.length;i++){ ...
0
votes
2answers
75 views

Equals result false in edited string

I tried to compare 2 string with the code: public class MyClass { public static void main(String args[]) { String xhex="31 38 30 2E 32 35 35 2E 32 32 35 2E 31 32 33"; String hex = ...
-2
votes
1answer
46 views

Java equals or contains method?

I have a stack (Records) with the elements below: first 20130512142202 second 20130512142204 third 20130512142206 fourth 20130512142209 fifth 20130512142212 and I want to check if a String ...
0
votes
1answer
49 views

valid and efficient implementation of hashcode()

I have a class School: public class School{ private int noOfTeachers; private int noOfStudents; //setters and getters.... public boolean equals(Object that){ //instance of ...
1
vote
6answers
55 views

Casting in equals method

I have a question about overriding the equals method in Java. In my book, I have the following example: public class Dog{ private String name; private int age; public boolean equals(Object ...
-1
votes
0answers
9 views

Creating 4 equal quadrants on an Excel Spreadsheet [closed]

How to make an 8.5x11" excel sheet? So when I print my table will not get cut off and print on another subsequent sheet??? I would like to split a 8.5x11" spreadsheet into 4 equal sections. Please ...
2
votes
4answers
84 views

Boolean.TRUE == myBoolean vs. Boolean.TRUE.equals(myBoolean)

Is there ever a situation where using equals(Boolean) and == would return different results when dealing with Boolean objects? Boolean.TRUE == myBoolean; Boolean.TRUE.equals(myBoolean); I'm not ...
0
votes
1answer
28 views

Hazelcast: should I override hashCode or equals to use in a map

This general question is mostly out of curiosity rather then a concern. Should hashCode and equals for mapped entity be overridden to face basic Hazelcast features properly? And is there a known ...
1
vote
1answer
26 views

Changing the elements in a set changes the 'equals' semantics

Imagine that we have this piece of code. public class HashAddAfter { private class A { public int value; public A(int value) { this.value = value; } ...
0
votes
2answers
43 views

Freeing memory used by no longer needed objects in instance controlled classes in java

Consider the following scenario. You are building a class, in java, where the fundamental semantics of the class demand that no two instances of the class be equal in value unless they are in fact ...
2
votes
5answers
110 views

two unequal objects with same hashcode

Hashcode() and equals() concept is 1) If two Objects are equal according to equal(), then calling the hashcode method on each of those two objects should produce same hashcode. and other one is ...
1
vote
3answers
48 views

hashCode(), equals(Object) and compareTo(Class)

I've following the following Vertex class and it implements equals, hashCode and compareTo method. Even then my HashMap returns null. I don't know why? public class Vertex implements ...
4
votes
3answers
75 views

java equals method using generics and instanceof

I have a class that accepts a generic type, and i want to override the equals method in a non-awkward way. (something that looks clean, and is minimal amount of code but very general use case) right ...
-2
votes
1answer
39 views

About Apache Commons EqualsBuilder and HashCodeBuilder and null values

The classes EqualsBuilder and HashCodeBuilder from the Apache Commons Lang library can be used for object comparison purposes. E.g., one can test equality between two Person objects like follows: ...
1
vote
2answers
91 views

Recursive .equals method from call to super.equals

Edit I did a very poor job and gave incomplete information for anyone to determine the cause of my issue. The real issue was that I had a nested class in Animal which had its own .equals which called ...
2
votes
4answers
61 views

Why (not how) must an Object conform to the javadoc of equals()?

The javadoc of Object.equals() explains the rules you need to follow to correctly override the method. It says: It is reflexive: for any non-null reference value x, x.equals(x) should return true. ...
2
votes
4answers
100 views

Why won't my HashSet allow me to add two of the same instance, if their equals() says they're false?

The documentation for HashSet.add says Adds the specified element to this set if it is not already present. More formally, adds the specified element e to this set if this set contains no element ...
0
votes
2answers
44 views

Octave - compare matrix's columns with vector

I have a matrix and a vector and I want to compare each column of the matrix with vector - what i want to get is the number of the column that is equal to vector. Example: matrix M=1 1 0 1 1 ...
0
votes
1answer
42 views

My created equals() and hashcode() are not doing anything

In my program I have a class called Cell, defined like so: public class Cell { private int x; private int y; public Cell (int x, int y) { this.x = x; this.y = y; } ...
1
vote
4answers
65 views

Determining if two objects are equal

I'm trying to test whether an object is equal to one in a list of objects given certain criteria (is name equal) and if it is, don't add it to list, otherwise add it. I have to use a method with this ...
-2
votes
1answer
60 views

Testing if two objects are equal

I'm trying to create a find method from scratch to see if two objects are equal given that the results of certain methods are equal, using the Equals method to do so. I know using the Find/Contains ...
0
votes
1answer
51 views

How do I compare a JSON object with a string in Javascript

I am developing this website layout for http://myttc.ca. I was successful at retrieving most of the data and displaying it on the page. But when I had to filter my search to find only the stop names ...
3
votes
4answers
172 views

Using for loop to get the Hamming distance between 2 strings

In this task i need to get the Hamming distance (the Hamming distance between two strings of equal length is the number of positions at which the corresponding symbols are different - from Wikipedia) ...
9
votes
1answer
79 views

How to get recognition of Java URI hashCode() bug that has been inappropriately denied

A fundamental part of the Java Object contract is that the hashCode() method should be consistent with the equals() method. This makes sense and is easy to understand: if two objects are "equal" in ...
0
votes
1answer
59 views

Creating a find method

I'm trying to create a find method from scratch to see if two objects are equal given that certain members are equal, using the Equals method to do so. I know using the Find/Contains methods would be ...
0
votes
1answer
46 views

MySQL - NULL safe NOT equal operator

I am just curious. I know about NULL safe equal operator <=>, but is there some NULL safe NOT equal operator, or I have to always use something like that: (tab.id != 1 OR tab.id IS NULL) or ...
0
votes
3answers
45 views

Comparing two unknown type object

Here is the situation. I have two unknown type's objects that i would like to compare to know if one is identical to another. Both can be string, int, enumerable or any custom class you can imagine. ...
0
votes
1answer
19 views

Do I need to create an abstract method for toString and equals?

so my program is creating Quadrilaterals, and I was told to make abstract methods for findArea() and findPerimeter(), but do I need them for toString() and boolean equals method? abstract public ...
0
votes
0answers
19 views

Jquery scientific form to expanded number

What I'm currently trying to do is create a web page that would allow a student to practice scientific notation to expanded form. Most of it is complete, what I need next is to create one function ...
0
votes
1answer
57 views

Java: Cannot find symbol: variable Objects

I generated methods hashCode() and equals(Object obj) by netbeans insercode. In netbeans I can compile without errors, but when I compile it on my server with javac: bangserver/Login.java:3: cannot ...
2
votes
7answers
134 views

How equals() method works

I am digging into the basics of Java. I infer from this article, that java equals method means, if two objects are equal then they must have the same hashCode(). Here's my example. public class ...
1
vote
1answer
44 views

is equals() supposed to be recursive/deep?

None really talks about this aspect of equals() and hasCode(), but there is potentially massive impact on equals() and hashCode() behavior. Massive when dealing with a bit more complex objects ...
0
votes
4answers
55 views

How should I implement IEqualityComparer<T>.Equals

Concerning IEqualityComparer, is there ever a reason why the Equals(T x, T y) implementation should be anything other than what I have below? public class MyEquality : IEqualityComparer<MyType> ...
2
votes
4answers
78 views

Rectangle Object-Oriented Development - Equals() method

need some help here. Working on "Classes and Object-Oriented Development" and could use some help with both my logic and code for a question in the textbook. Question: I am asked to Modify my ...
1
vote
2answers
89 views

creating a hashmap or set for objects without equals()

I am creating subclasses of a class where equals() and hashCode() are final and based on identity. (Specifically the XML DOM XOM with the contract: public final boolean equals(Object o) Tests ...
-2
votes
5answers
61 views

if(query1value = query2value) {} else {}

So, I am wondering how I can compare the result of one query to the result of another query in a if-statement. Like this: $team = mysql_query("SELECT teamId FROM team WHERE teamName='$teamName'"); ...
0
votes
1answer
127 views

How to use a method from a generic object list iterator to call another class' equals method

I am taking an intro to Java course, and we are learning about how to make a generic object list iterator (I call it List) that can be extended into more specific lists later. This way, if I decide to ...
3
votes
3answers
67 views

How to implement equals for generic pairs?

Just for fun, I'm trying to implement a generic Pair class in Java. I'm having trouble with equals: public class Pair<A, B> { public final A _1; public final B _2; // ... ...
2
votes
2answers
95 views

Overriding equals not working

Here is my problem: when I try to Override equals method of "my class", it simply doesn't work, the function called is the most abstract one and not the "my class" equals method! Here is some code of ...

1 2 3 4 5 21