I'm usually checking almost all constructor and public method parameters via Guava's Precondition methods. Private method parameters usually with assertions. However, now I'm thinking about replacing "internal" Precondition checks, that is checks in constructors/factory methods/general methods (which are not part of the public API/the application API)... with assertions, what do you think? Maybe it's a bit faster this way, because I've a lot of checks ;-)
Edit: I mean also public constructors and factories which shouldn't be part of the public API, just used internally, for instance:
/**
* Constructor with both, complete and modifying page.
*
* @param complete
* to be used as a base for this container
* @param modifying
* to be used as a base for this container
*/
public NodePageContainer(final @Nonnull NodePage complete,
final @Nonnull NodePage modifying) {
assert complete != null;
assert modifying != null;
mComplete = complete;
mModified = modifying;
}
Before I've had mComplete = checkNotNull(complete);... but it's only called from a class in another package and shouldn't even be part of the public API. Would be great if Java would allow to reduce the visibility of such classes ;-)