create changelog entry
[debian/openrocket] / core / src / de / congrace / exp4j / NumberToken.java
1 /*
2    Copyright 2011 frank asseg
3
4    Licensed under the Apache License, Version 2.0 (the "License");
5    you may not use this file except in compliance with the License.
6    You may obtain a copy of the License at
7
8        http://www.apache.org/licenses/LICENSE-2.0
9
10    Unless required by applicable law or agreed to in writing, software
11    distributed under the License is distributed on an "AS IS" BASIS,
12    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    See the License for the specific language governing permissions and
14    limitations under the License.
15
16  */
17 package de.congrace.exp4j;
18
19 import java.util.Map;
20 import java.util.Stack;
21
22 /**
23  * A {@link Token} for Numbers
24  * 
25  * @author fas@congrace.de
26  * 
27  */
28 class NumberToken extends CalculationToken {
29
30         private final double doubleValue;
31
32         /**
33          * construct a new {@link NumberToken}
34          * 
35          * @param value
36          *            the value of the number as a {@link String}
37          */
38         NumberToken(String value) {
39                 super(value);
40                 this.doubleValue = Double.parseDouble(value);
41         }
42
43         @Override
44         public boolean equals(Object obj) {
45                 if (obj instanceof NumberToken) {
46                         final NumberToken t = (NumberToken) obj;
47                         return t.getValue().equals(this.getValue());
48                 }
49                 return false;
50         }
51
52         @Override
53         public int hashCode() {
54                 return getValue().hashCode();
55         }
56
57         @Override
58         void mutateStackForCalculation(Stack<Variable> stack, VariableSet variables) {
59                 stack.push(new Variable("From number "+getValue()+" : "+hashCode(), this.doubleValue));
60         }
61
62         @Override
63         void mutateStackForInfixTranslation(Stack<Token> operatorStack, StringBuilder output) {
64                 output.append(this.getValue()).append(' ');
65         }
66 }