Uses of Class
nl.jqno.equalsverifier.EqualsVerifier

Packages that use EqualsVerifier
nl.jqno.equalsverifier   
 

Uses of EqualsVerifier in nl.jqno.equalsverifier
 

Methods in nl.jqno.equalsverifier that return EqualsVerifier
 EqualsVerifier<T> EqualsVerifier.allFieldsShouldBeUsed()
          Signals that all non-transient fields are relevant in the equals contract.
 EqualsVerifier<T> EqualsVerifier.allFieldsShouldBeUsedExcept(String... fields)
          Signals that all non-transient fields are relevant in the equals contract, except for the ones specified.
 EqualsVerifier<T> EqualsVerifier.RelaxedEqualsVerifierHelper.andUnequalExample(T example)
          Asks for an unequal instance of T and subsequently returns a fully constructed instance of EqualsVerifier.
 EqualsVerifier<T> EqualsVerifier.RelaxedEqualsVerifierHelper.andUnequalExamples(T first, T... more)
          Asks for a list of unequal instances of T and subsequently returns a fully constructed instance of EqualsVerifier.
 EqualsVerifier<T> EqualsVerifier.debug()
          Deprecated. No longer needed. The stack trace that this method printed, is now included as the cause of the AssertionError.
static
<T> EqualsVerifier<T>
EqualsVerifier.forClass(Class<T> type)
          Factory method.
static
<T> EqualsVerifier<T>
EqualsVerifier.forExamples(T first, T second, T... more)
          Factory method.
 EqualsVerifier<T> EqualsVerifier.suppress(Warning... warnings)
          Suppresses warnings given by EqualsVerifier.
 EqualsVerifier<T> EqualsVerifier.usingGetClass()
          Signals that getClass is used in the implementation of the equals method, instead of an instanceof check.
 EqualsVerifier<T> EqualsVerifier.withCachedHashCode(String cachedHashCodeField, String calculateHashCodeMethod, T example)
          Signals that T caches its hashCode, instead of re-calculating it each time the hashCode() method is called.
<S> EqualsVerifier<T>
EqualsVerifier.withPrefabValues(Class<S> otherType, S red, S black)
          Adds prefabricated values for instance fields of classes that EqualsVerifier cannot instantiate by itself.
 EqualsVerifier<T> EqualsVerifier.withRedefinedSubclass(Class<? extends T> redefinedSubclass)
          Supplies a reference to a subclass of T in which equals is overridden.
 EqualsVerifier<T> EqualsVerifier.withRedefinedSuperclass()
          Signals that T is part of an inheritance hierarchy where equals is overridden.
 



Copyright © 2015. All Rights Reserved.