
/**
 * This class serves as a utility class containing only static methods about ordinal numbers.
 * @author Your Name Here
 * @version 1.0
 * @since 1.8
 *
 */
public class Ordinal {

	/**
	 * Returns the ordinal value of the specified integer value.
	 * 
	 * @param integer A cardinal integer value.
	 * @return The ordinal value of the cardinal integer value.
	 */
	public static String getOrdinal(int integer) {
		// TODO: implement getOrdinal
		// hint: use modulus division and a switch statement
		
	}
	
}
