⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fact.java

📁 xbrlapi的源码
💻 JAVA
字号:
package org.xbrlapi;

import org.xbrlapi.utilities.XBRLException;


/**
 * @author Geoffrey Shuetrim (geoff@galexy.net)
 */

public interface Fact extends Fragment {

    /**
     * Return true if the fact is a tuple and false otherwise
     */
    public boolean isTuple() throws XBRLException;
    
	/**
	 * Get the instance that this fact is a part of
	 * @return the xbrl instance fragment
	 * @throws XBRLException
	 */
	public Instance getInstance() throws XBRLException;

	
	
	/**
	 * Get the tuple that this fact is a part of
	 * @return the xbrl tuple fragment or null if this 
	 * @throws XBRLException
	 */
	public Tuple getTuple() throws XBRLException;



	/**
	 * Get the concept that defines the syntax for this fact.
	 * @return the appropriate concept fragment from the data store.
	 * @throws XBRLException if the concept cannot be found.
	 */
	public Concept getConcept() throws XBRLException;

	/**
	 * @return true if the fact is reported with units and false otherwise.
	 * @throws XBRLException
	 */
	public boolean isNumeric() throws XBRLException;

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -