Design a class named MyInteger. The class contains:
An int data field named value that stores the int value represented by this object.
A constructor that creates a MyInteger object for the specified int value.
A getter method that returns the int value.
The methods isEven(), isOdd(), and isPrime() that return true if the value in this object is even, odd, or prime, respectively.
The static methods isEven(int), isOdd(int), and isPrime(int) that return true if the specified value is even, odd, or prime, respectively.
The static methods isEven(MyInteger), isOdd(MyInteger), and isPrime(MyInteger) that return true if the specified value is even, odd, or prime, respectively.
The methods equals(int) and equals(MyInteger) that return true if the value in this object is equal to the specified value.
A static method parseInt(char[]) that converts an array of numeric characters to an int value.
A static method parseInt(String) that converts a string into an int value.
public class LabProgram {
public static void main(String[] args) {
MyInteger n1 = new MyInteger(5);
System.out.println("n1 is even? " +
n1.isEven());
System.out.println("n1 is prime? " +
n1.isPrime());
System.out.println("15 is prime? " +
MyInteger.isPrime(15));
char[] chars = {'3', '5', '3', '9'};
System.out.println(MyInteger.parseInt(chars));
String s = "3539";
System.out.println(MyInteger.parseInt(s));
MyInteger n2 = new MyInteger(24);
System.out.println("n2 is odd? " + n2.isOdd());
System.out.println("45 is odd? " +
MyInteger.isOdd(45));
System.out.println("n1 is equal to n2? " +
n1.equals(n2));
System.out.println("n1 is equal to 5? " +
n1.equals(5));
}
}
Please find the Java code implementation below -  class MyInteger { int value; public MyInteger(int newValue) { value = newValue; } public int getValue() { return value; } public boolean isEven() { if (value % 2 == 0) return true; return false; } public boolean isOdd() { if (value % 2 != 0) return true; return false; } public boolean isPrime() { if (value <= 1) { return false; } for (int i = 2; i < Math.sqrt(value); i++) { if (value % i == 0) { return false; } } return true; } public static boolean isEven(int value) { if (value % 2 == 0) return true; return false; } public static boolean isOdd(int value) { if (value % 2 != 0) return true; return false; } public static boolean isPrime(int value) { if (value <= 1) { return false; } for (int i = 2; i < Math.sqrt(value); i++) { if (value % ... See the full answer