this probably seems like a bit of a silly question.. And maybe it is. But I have a function which I use very frequently and wanted an opinion on if this is the fastest way to do the job. The function is used so many times that any speed increase would actually be noticeable. All it does is check if a character is a nucleotide (ie: if a char is 'A', 'T', 'C', or 'G'.
private static boolean isValidNucleotide(char nucleotide) {
nucleotide = Character.toUpperCase(nucleotide);
if(nucleotide == 'A') return true;
if(nucleotide == 'T') return true;
if(nucleotide == 'C') return true;
if(nucleotide == 'G') return true;
return false;
}
Is this the fastest way to accomplish the job? Or do you think it's worth implementing some kind of index/map/something else (possibly to perform the comparison outside of a function and just copy this text to several spots in the code)? I'm really not an expert on this kind of thing in Java.

