📄 arcend.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -