
jscl.text.ExponentParser Maven / Gradle / Ivy
package jscl.text;
import jscl.math.Generic;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
/**
* User: serso
* Date: 10/27/11
* Time: 2:45 PM
*/
class ExponentParser implements Parser {
public static final Parser parser = new ExponentParser();
private ExponentParser() {
}
public Generic parse(@Nonnull Parameters p, @Nullable Generic previousSumElement) throws ParseException {
int pos0 = p.getPosition().intValue();
boolean sign = MinusParser.parser.parse(p, previousSumElement).isSign();
final Generic result = ParserUtils.parseWithRollback(UnsignedExponent.parser, pos0, previousSumElement, p);
return sign ? result.negate() : result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy