📄 tuple.java
字号:
package org.xbrlapi;
import org.xbrlapi.utilities.XBRLException;
/**
* @author Geoffrey Shuetrim (geoff@galexy.net)
*/
public interface Tuple extends Fact {
/**
* Get the child facts
* @throws XBRLException
*/
public FragmentList<Fact> getChildFacts() throws XBRLException;
/**
* Get a list of facts matching the specified fact name.
* @param namespace The namespace of the desired facts
* @param name The local name of the desired facts
* @return the specified facts.
* @throws XBRLException
*/
public FragmentList<Fact> getChildFacts(String namespace, String name) throws XBRLException;
/**
* Get a list of facts matching the specified fact name and context id.
* @param namespace The namespace of the desired facts
* @param name The local name of the desired facts
* @param contextRef The value of the context reference for the required facts.
* @return the specified facts.
* @throws XBRLException
*/
public FragmentList<Fact> getChildFacts(String namespace, String name, String contextRef) throws XBRLException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -