Got a basic if statement question, so I have an if statement in Java as shown here:
if (
    !isOmitted(word,map.get(word.length()+1))     &&
    !isInserted(word,map.get(word.length()-1))    &&
    !isTransposed(word,map.get(word.length()))    &&
    !isSubstituted(word,map.get(word.length()))   &&
    !isCapital(word,map.get(word.length())))
{
    noSuggestion=true;
}
where each individual method works perfectly as desired. Is there any way for java to check all conditions even when one is false? I know that the nature of the && operator is that as soon as a condition does not hold true, there is no point in checking the remaining conditions, as the entire condition is going to be set to false, but I was hoping I could do something like this in order to keep my code someone cleaner. I know I can use boolean variables, and assign the returned value to 5 different variables, but is there any other work around to force every condition to be checked? Thanks a lot in advanced
 
    