Package no.ntnu.idatt1002.demo.util
Class VerifyInput
java.lang.Object
no.ntnu.idatt1002.demo.util.VerifyInput
Class for verifying input in the data package. Includes checks for common
things like checking if an input is empty.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate static int
extractDay
(int input) Extracts the day from an int(date).private static int
extractMonth
(int input) Extracts the month from an int(date).private static int
extractYear
(int input) Extracts the year from an int(date).private static boolean
isLeapYear
(int year) Checks if a year is a leap year.static void
verifyDateDay
(int input, String parameter) Checks if the day in an int(date) is between 01 and 31.static void
verifyDateLength
(int input, String parameter) Checks if an int(date) has the correct length of six figures.static void
verifyDateMonth
(int input, String parameter) Checks if the month in an int(date) is between 01 and 12.static void
verifyDateZeroAndMinusOneAccepted
(int input, String parameter) Checks if an int(date) has the correct length of eight figures or is zero or minus one.private static void
verifyDayForFebruary
(int day, int year, String parameter) Checks if the day in an int(date) is between 01 and 29 or 01 and 28 depending on if it is a leap year.static void
verifyNotEmpty
(String input, String parameter) Checks if a string is null or empty.static void
verifyNotNull
(Object input, String parameter) Checks if an object is null.static void
verifyPositiveNumberMinusOneAccepted
(int input, String parameter) Checks if an int is a positive number or minus one.static void
verifyPositiveNumberMinusOneNotAccepted
(int input, String parameter) Checks if an int is a positive number.static void
verifyPositiveNumberZeroNotAccepted
(int input, String parameter) Checks if an int is a positive number equal to or greater than 1.
-
Constructor Details
-
VerifyInput
private VerifyInput()
-
-
Method Details
-
verifyNotEmpty
Checks if a string is null or empty.- Parameters:
input
- the string to be checkedparameter
- the name of the parameter- Throws:
IllegalArgumentException
- if the input is null or blank
-
verifyNotNull
Checks if an object is null.- Parameters:
input
- the object to be checkedparameter
- the name of the parameter- Throws:
IllegalArgumentException
- if the object is null
-
verifyPositiveNumberMinusOneAccepted
Checks if an int is a positive number or minus one.- Parameters:
input
- the int to be checkedparameter
- the name of the parameter- Throws:
IllegalArgumentException
- if the int is not a positive number or minus one
-
verifyPositiveNumberMinusOneNotAccepted
Checks if an int is a positive number.- Parameters:
input
- the int to be checkedparameter
- the name of the parameter- Throws:
IllegalArgumentException
- if the int is not a positive number
-
verifyPositiveNumberZeroNotAccepted
Checks if an int is a positive number equal to or greater than 1.- Parameters:
input
- the int to be checkedparameter
- the name of the parameter
-
verifyDateLength
Checks if an int(date) has the correct length of six figures.- Parameters:
input
- the int(date) to be checkedparameter
- the name of the parameter- Throws:
IllegalArgumentException
- if the int(date) does not have six figures
-
extractYear
private static int extractYear(int input) Extracts the year from an int(date).- Parameters:
input
- the int(date) to extract the year from- Returns:
- the year
-
extractMonth
private static int extractMonth(int input) Extracts the month from an int(date).- Parameters:
input
- the int(date) to extract the month from- Returns:
- the month
-
extractDay
private static int extractDay(int input) Extracts the day from an int(date).- Parameters:
input
- the int(date) to extract the day from- Returns:
- the day
-
isLeapYear
private static boolean isLeapYear(int year) Checks if a year is a leap year.- Parameters:
year
- the year to be checked- Returns:
- true if the year is a leap year, false if not
-
verifyDateMonth
Checks if the month in an int(date) is between 01 and 12.- Parameters:
input
- the int(date) to be checkedparameter
- the name of the parameter- Throws:
IllegalArgumentException
- if the month is not between 01 and 12
-
verifyDateDay
Checks if the day in an int(date) is between 01 and 31.- Parameters:
input
- the int(date) to be checkedparameter
- the name of the parameter- Throws:
IllegalArgumentException
- if the day is not between 01 and 31
-
verifyDayForFebruary
private static void verifyDayForFebruary(int day, int year, String parameter) throws IllegalArgumentException Checks if the day in an int(date) is between 01 and 29 or 01 and 28 depending on if it is a leap year.- Parameters:
day
- the day to be checkedyear
- the year to be checkedparameter
- the name of the parameter- Throws:
IllegalArgumentException
- if the day is not between 01 and 29 or 01 and 28 depending on if it is a leap year
-
verifyDateZeroAndMinusOneAccepted
public static void verifyDateZeroAndMinusOneAccepted(int input, String parameter) throws IllegalArgumentException Checks if an int(date) has the correct length of eight figures or is zero or minus one.- Parameters:
input
- the int(date) to be checkedparameter
- the name of the parameter- Throws:
IllegalArgumentException
- if the int(date) does not have eight figures or is zero or minus one
-