blob: 5f93fb53e74211ed00029df7e7cccba1162920e2 [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.iotdb.tsfile.read.common.type;
import org.apache.iotdb.tsfile.read.common.block.column.Column;
import org.apache.iotdb.tsfile.read.common.block.column.ColumnBuilder;
import org.apache.iotdb.tsfile.read.common.block.column.FloatColumnBuilder;
public class FloatType implements Type {
private static final FloatType INSTANCE = new FloatType();
private FloatType() {}
@Override
public int getInt(Column c, int position) {
return (int) c.getFloat(position);
}
@Override
public long getLong(Column c, int position) {
return (long) c.getFloat(position);
}
@Override
public float getFloat(Column c, int position) {
return c.getFloat(position);
}
@Override
public double getDouble(Column c, int position) {
return c.getFloat(position);
}
@Override
public void writeInt(ColumnBuilder builder, int value) {
builder.writeFloat(value);
}
@Override
public void writeLong(ColumnBuilder builder, long value) {
builder.writeFloat(value);
}
@Override
public void writeFloat(ColumnBuilder builder, float value) {
builder.writeFloat(value);
}
@Override
public void writeDouble(ColumnBuilder builder, double value) {
builder.writeFloat((float) value);
}
@Override
public ColumnBuilder createColumnBuilder(int expectedEntries) {
return new FloatColumnBuilder(null, expectedEntries);
}
@Override
public TypeEnum getTypeEnum() {
return TypeEnum.FLOAT;
}
public static FloatType getInstance() {
return INSTANCE;
}
}