Example usage for org.apache.commons.lang3.builder HashCodeBuilder reflectionHashCode

List of usage examples for org.apache.commons.lang3.builder HashCodeBuilder reflectionHashCode

Introduction

In this page you can find the example usage for org.apache.commons.lang3.builder HashCodeBuilder reflectionHashCode.

Prototype

public static int reflectionHashCode(final int initialNonZeroOddNumber, final int multiplierNonZeroOddNumber,
        final Object object) 

Source Link

Document

Uses reflection to build a valid hash code from the fields of object .

Usage

From source file:com.example.springsample.domain.DomainBase.java

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(17, 37, this);
}

From source file:libepg.ts.packet.TsPacketParcel.java

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(3, 97, this);
}

From source file:epgtools.dumpepgfromts.jaxb.physicalchannel.PhysicalChannelNumberRecord.java

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(5, 97, this);
}

From source file:epgtools.dumpepgfromts.dataextractor.DataObject.java

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(5, 67, this);
}

From source file:epgtools.dumpchannellistfromts.physicalchannelnumberrecord.PhysicalChannelNumberRecord.java

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(3, 71, this);
}

From source file:libepg.epg.section.descriptor.servicelistdescriptor.Service.java

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(3, 47, this);
}

From source file:com.rails.entity.Person.java

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(this, "id", "time");
}

From source file:epgtools.dumpepgfromts.dataextractor.KeyFields.java

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(3, 11, this);
}

From source file:libepg.epg.section.body.networkinformationtable.TransportStreamLoop.java

/**
 * @return ????????
 */
@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(7, 17, this);
}

From source file:org.codemucker.jtest.bean.tester.hashcodeequals.TstBeanBrokenCtor.java

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(17, 7, this);
}