-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommand.java
More file actions
23 lines (20 loc) · 890 Bytes
/
Copy pathCommand.java
File metadata and controls
23 lines (20 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public enum Command {
MENU("Display the menu of available commands."),
CALCULATOR("Evaluate standard mathematical expressions."),
DIFFERENTIATE("Differentiate mathematical expressions."),
FUNCTION("Define and perform operations on functions."),
LINEAR_ALGEBRA("Perform linear algebra operations like matrix and vector calculations."),
SIMUL_SOLVER("Solve simultaneous equations."),
FINANCIAL_CALC("Access the financial calculator for loans, savings, and conversions."),
ENG_CALC("Perform engineering calculations"),
SCI_CALC("Perform scientific conversions"),
STAT_CALC("Evaluate normal and uniform distribution variables"),
EXIT("Exit the program.");
private final String description;
Command(String description) {
this.description = description;
}
public String getDescription() {
return description;
}
}