// Textbook fragment 03.09 /** Class for doing encryption and decryption using the Caesar Cipher. */ public class Caesar { public static final int ALPHASIZE = 26; // English alphabet (uppercase only) public static final char[] alpha = {'A','B','C','D','E','F','G','H', 'I', 'J','K','L','M', 'N','O','P','Q','R','S','T','U','V','W','X','Y','Z'}; protected char[] encrypt = new char[ALPHASIZE]; // Encryption array protected char[] decrypt = new char[ALPHASIZE]; // Decryption array /** Constructor that initializes the encryption and decryption arrays */ public Caesar() { for (int i=0; i