arcend.java

来自「xbrlapi的源码」· Java 代码 · 共 63 行

JAVA
63
字号
package org.xbrlapi;

import org.xbrlapi.utilities.XBRLException;

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

public interface ArcEnd extends ExtendedLinkContent {

	/**
     * Get the xlink:label attribute value.
     * @return the xlink:label attribute value.
     * @throws XBRLException if the xlink:label attribute does not exist.
     */
    public String getLabel() throws XBRLException;
    
    /**
     * Get the xlink:role attribute value.
     * @return the value of the id attribute or null if no
     * such attribute exists.
     * @throws XBRLException
     */
    public String getRole() throws XBRLException;
    
    /**
     * Get the id attribute value.
     * @return the value of the id attribute or null if no
     * such attribute exists.
     * @throws XBRLException
     */
    public String getArcEndId() throws XBRLException;
    
    /**
     * @return Get the list of arcs that are from the arc end.  
     * The list is empty if there are no arcs from the arc end.
     */
    public FragmentList<Arc> getArcsFrom() throws XBRLException;

    /**
     * @return Get the list of arcs that are to the arc end.  
     * The list is empty if there are no arcs to the arc end.
     */
    public FragmentList<Arc> getArcsTo() throws XBRLException;
    
    /**
     * @param arcrole the required arcrole.
     * @return Get the list of arcs with the given arcrole 
     * that are from the arc end.  
     * The list is empty if there are no matching arcs.
     */
    public FragmentList<Arc> getArcsFromWithArcrole(String arcrole) throws XBRLException;

    /**
     * @param arcrole the required arcrole.
     * @return Get the list of arcs with the given arcrole 
     * that are to the arc end.  
     * The list is empty if there are no matching arcs.
     */
    public FragmentList<Arc> getArcsToWithArcrole(String arcrole) throws XBRLException;
    
}

⌨️ 快捷键说明

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