📄 nonnumericitemimpl.java
字号:
package org.xbrlapi.impl;
import org.xbrlapi.NonNumericItem;
import org.xbrlapi.utilities.XBRLException;
/**
* @author Geoffrey Shuetrim (geoff@galexy.net)
*/
public class NonNumericItemImpl extends ItemImpl implements NonNumericItem {
/**
* Get the value of the fact.
* @return the value of fact with leading and trailing spaces deleted or null
* if the fact is nill.
* @throws XBRLException
* @see org.xbrlapi.NonNumericItem#getValue()
*/
public String getValue() throws XBRLException {
if (this.isNill()) return null;
return getDataRootElement().getTextContent().trim();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -