package com.dd.model.protocol;
import java.util.HashMap;
public class TypeLentMap
{
private static HashMap
mapTable = new HashMap();
public TypeLentMap()
{
mapTable.put(DataTypeEnum.BOOL, 1);
mapTable.put(DataTypeEnum.INT8, 1);
mapTable.put(DataTypeEnum.INT16, 2);
mapTable.put(DataTypeEnum.INT32, 4);
mapTable.put(DataTypeEnum.FLOAT, 4);
mapTable.put(DataTypeEnum.BOOL, 1);
mapTable.put(DataTypeEnum.BOOL, 1);
mapTable.put(DataTypeEnum.BOOL, 1);
}
public static int getByteWidthByType(DataTypeEnum type)
{
return mapTable.get(type).intValue();
}
}
阅读(1783) | 评论(0) | 转发(0) |