How do I implement equals method using commons-lang?
Category: Commons Lang, viewed: 1354 time(s).
import org.apache.commons.lang.builder.HashCodeBuilder; import org.apache.commons.lang.builder.EqualsBuilder; import java.io.Serializable; public class BookEqualsExample implements Serializable { private Long id; private String title; private String author; //~ Impelments geter/setter here public boolean equals(Object object) { if (!(object instanceof BookEqualsExample)) { return false; } if (object == this) { return true; } BookEqualsExample book = (BookEqualsExample) object; return new EqualsBuilder() .append(this.id, book.id) .append(this.title, book.title) .append(this.author, book.author) .isEquals(); // You can also use reflection of the EqualsBuilder class. // return EqualsBuilder.reflectionEquals(this, book); } } |
Can't find what you are looking for? Join our FORUMS and ask some questions!
Related Examples
- How do I find text between two strings?
- How do I check for an empty string?
- How do I get the nearest hour, minute, second of a date?
- How do I format date and time using DateFormatUtils class?
- How do I find items in an array?
- How do I use CompareToBuilder class?
- How do I use ReflectionToStringBuilder class?
- How do I convert array of object to array of primitive?
- How do I convert an array to a Map?
- How do I reverse array elements order?
- How do I count word occurrences in a string?
- How do I reverse a string, words or sentences?
- How do I check if a string is empty or not?
- How do I implement hashCode using commons-lang?
- How do I convert array of primitives into array of objects?
- How do I use Jakarta Commons ToStringBuilder?
Most Viewed Examples
Latest Code Examples
Categories
100 Top & Latest
Latest Jobs
Blog Entries
Forums Entries
- Google Chrome
- Re: Importing and scanning the text
- Re: What Java books have you read?
- Re: How to create exe file
- How to create exe file
- Re: What Java books have you read?
- Infix expression
- Importing and scanning the text
- Re: I want to reduce the size of a JPG image
- MOVED: I want to reduce the size of a JPG image
