There is an error for TokenHandler.java. Please fix that error.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
There is an error for TokenHandler.java. Please fix that error.
Expert Solution
Step 1: TokenHandler.java
Here's how your modified TokenHandler.java
would look with these methods added: without errors, assuming that the Token
and TokenType
classes are defined in the correct package and have appropriate access modifiers:
1import java.util.LinkedList;
2import java.util.Optional;
3
4public class TokenHandler {
5
6 private LinkedList<Token> tokens; // List of tokens
7 private Token lastMatchedToken; // To store the last matched token
8
9 public TokenHandler(LinkedList<Token> tokens) {
10 this.tokens = tokens;
11 }
12
13 public Optional<Token> Peek(int j) {
14 if (j < tokens.size()) {
15 return Optional.of(tokens.get(j));
16 } else {
17 return Optional.empty();
18 }
19 }
20
21 public boolean MoreTokens() {
22 return !tokens.isEmpty();
23 }
24
25 public Optional<Token> getCurrentToken() {
26 if (MoreTokens()) {
27 return Optional.of(tokens.get(0));
28 } else {
29 return Optional.empty();
30 }
31 }
32
33 public Optional<Token> consumeToken() {
34 if (MoreTokens()) {
35 lastMatchedToken = tokens.remove(0);
36 return Optional.of(lastMatchedToken);
37 } else {
38 return Optional.empty();
39 }
40 }
41
42 public Optional<Token> getLastMatchedToken() {
43 return Optional.ofNullable(lastMatchedToken);
44 }
45
46 public Optional<Token> MatchAndRemove(TokenType t) {
47 if (MoreTokens() && Peek(0).get().getType() == t) {
48 return consumeToken();
49 } else {
50 return Optional.empty();
51 }
52 }
53}
54
Trending now
This is a popular solution!
Step by step
Solved in 3 steps
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education