I have some simple logic to check if the field is valid:
private boolean isValidIfRequired(Object value) {
return
(required && !isEmpty(value)) || !required;
}
it tells that the field is valid if it's either required and not empty or not required.
I don't like this required || !required part. Something with just required would be better. How do I simplify this method to make it more readable and simple?
!required? It's perfectly readable as it is. However, I'd probably flip the expression around to have the!requiredfirst, so it makes more grammatical sense when you read it out loud: "If not required, or if required and not empty". – Polynomial Nov 15 '11 at 14:26