Class EnumRequester<T extends Enum<T>>
java.lang.Object
collectionManagers.modeManagers.userMode.EnumRequester<T>
- Type Parameters:
T
- the type of the enum to request
A utility class for requesting an enum value from the user.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionrequestEnum
(T[] values, String enumName, Scanner scanner, InputValidator inputValidator) Requests an enum value from the user based on the provided array of enum values.
-
Constructor Details
-
EnumRequester
public EnumRequester()
-
-
Method Details
-
requestEnum
public T requestEnum(T[] values, String enumName, Scanner scanner, InputValidator inputValidator) throws BuildObjectException Requests an enum value from the user based on the provided array of enum values.- Parameters:
values
- the array of enum values to choose fromenumName
- the name of the enum type being requestedscanner
- the scanner to read user input frominputValidator
- the input validator to validate user input- Returns:
- the selected enum value
- Throws:
BuildObjectException
- if an error occurs during object construction- Since:
- 2.0
-