本文整理汇总了Java中prefuse.data.Tuple.getDouble方法的典型用法代码示例。如果您正苦于以下问题:Java Tuple.getDouble方法的具体用法?Java Tuple.getDouble怎么用?Java Tuple.getDouble使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类prefuse.data.Tuple
的用法示例。
在下文中一共展示了Tuple.getDouble方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getLiteral
import prefuse.data.Tuple; //导入方法依赖的package包/类
/**
* Evaluate the given tuple and data field and return the
* result as a new Literal instance.
* @param t the Tuple
* @param field the data field to lookup
* @return a new Literal expression containing the
* value of the Tuple's data field
*/
@SuppressWarnings("rawtypes")
public static Literal getLiteral(Tuple t, String field) {
Class type = t.getColumnType(field);
if ( type == int.class )
{
return new NumericLiteral(t.getInt(field));
}
else if ( type == long.class )
{
return new NumericLiteral(t.getLong(field));
}
else if ( type == float.class )
{
return new NumericLiteral(t.getFloat(field));
}
else if ( type == double.class )
{
return new NumericLiteral(t.getDouble(field));
}
else if ( type == boolean.class )
{
return new BooleanLiteral(t.getBoolean(field));
}
else
{
return new ObjectLiteral(t.get(field));
}
}
示例2: getDouble
import prefuse.data.Tuple; //导入方法依赖的package包/类
/**
* @see prefuse.data.expression.Expression#getDouble(prefuse.data.Tuple)
*/
public double getDouble(Tuple t) {
return t.getDouble(m_field);
}