blob: 8bf238cfd28504202a43dd59c778b91dfa22eba0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.uima.ruta.expression.number;
import org.apache.uima.cas.text.AnnotationFS;
import org.apache.uima.ruta.RutaBlock;
import org.apache.uima.ruta.RutaStream;
public class SimpleNumberExpression extends NumberExpression {
private final Number number;
public SimpleNumberExpression(Number number) {
super();
this.number = number;
}
@Override
public double getDoubleValue(RutaBlock parent, AnnotationFS annotation, RutaStream stream) {
return number.doubleValue();
}
@Override
public float getFloatValue(RutaBlock parent, AnnotationFS annotation, RutaStream stream) {
return number.floatValue();
}
@Override
public int getIntegerValue(RutaBlock parent, AnnotationFS annotation, RutaStream stream) {
return number.intValue();
}
public Number getNumber() {
return number;
}
@Override
public String getStringValue(RutaBlock parent, AnnotationFS annotation, RutaStream stream) {
boolean floating = number.intValue() != number.doubleValue();
if (floating) {
return "" + getDoubleValue(parent, null, stream);
} else {
return "" + getIntegerValue(parent, null, stream);
}
}
}