com.ihr.xbrl.om.formula
Class XBRLVariableParameter
java.lang.Object
com.ihr.xbrl.om.XMLFragment
com.ihr.xbrl.om.exLinks.XLinkElement
com.ihr.xbrl.om.exLinks.XBRLPointerOfARelationship
com.ihr.xbrl.om.exLinks.XBRLResource
com.ihr.xbrl.om.formula.XBRLFormulaResource
com.ihr.xbrl.om.formula.XBRLVariableResource
com.ihr.xbrl.om.formula.XBRLVariableParameter
- All Implemented Interfaces:
- XBRLRelationshipPoint, HasFormulaProcessor, XBRLVariableFormulaEvaluable, XBRLValidation, XBRLValueKey, XMLHasParent, java.lang.Cloneable, javax.xml.namespace.NamespaceContext
public class XBRLVariableParameter
- extends XBRLVariableResource
- Author:
- Ignacio
|
Field Summary |
static javax.xml.namespace.QName |
as
|
static javax.xml.namespace.QName |
name
|
static javax.xml.namespace.QName |
required
|
static javax.xml.namespace.QName |
resourceName
|
static javax.xml.namespace.QName |
select
|
| Fields inherited from class com.ihr.xbrl.om.exLinks.XLinkElement |
actuate, ACTUATE, ARC, arcrole, ARCROLE, ETITLE, EXTENDED, from, FROM, href, HREF, label, LABEL, LOCATOR, RESOURCE, role, ROLE, show, SHOW, SIMPLE, title, TITLE, to, TO, TYPE |
| Fields inherited from class com.ihr.xbrl.om.XMLFragment |
CONCEPT_LABEL, CONCEPT_QNAME, EMPTYRELATIONSHIPSITERATORINSTANCE, EMPTYXMLFRAGMENTITERATORINSTANCE, FACT_CONCEPT_DATATYPE, FACT_CONCEPT_LABEL, FACT_QNAME, idQName, NO_POSITION, OrderComparator, PERIOD_TYPE, PERIOD_VALUE, SHORT_TEXT, SOURCE_DOCUMENT, XPATH, XPOINTER |
|
Method Summary |
boolean |
checkVariable(XBRLVariablesHolder set,
javax.xml.namespace.QName name,
java.util.Collection<net.sf.saxon.s9api.QName> resolved)
Called for variables that are also resources during the static compilation phase of the formula preparation. |
Evaluation |
evaluateValue(XMLFragment evaluationContext,
java.util.Collection<XBRLVariableResourceUse> availableVars,
XBRLVariableSetResource set)
Evaluates the resource internal XPath expression and returns either the returned value from the XPath expression
or the fall back value in the case of variables that may have a fall back value and the rawEvaluation of the
XPath expression results in the empty sequence. |
java.lang.String |
getExpression()
Used only for debug purposes. |
javax.xml.namespace.QName |
getParameterName()
|
java.util.Collection<javax.xml.namespace.QName> |
getVariablesRequired(XBRLVariablesHolder set)
Returns a collection of variables required for the evaluation of this variable |
boolean |
isEvaluationRequired()
Returns true when this parameter has not been evaluated and evaluation depends upon the evaluation of another
parameter so re-evaluation is needed. |
Evaluation |
rawEvaluateValue(XMLFragment evaluationContext,
java.util.Collection<XBRLVariableResourceUse> availableVars)
Evaluates the resource internal XPath expression and returns the sequence. |
| Methods inherited from class com.ihr.xbrl.om.exLinks.XBRLResource |
addChild, clear, equals, generateLocatorToNode, generateNode, getAttributes, getDTSBase, getFriendlyName, getFriendlyName, getParent, getRoleType, getType, getValidationReport, getValueKey, hashCode, invalidate, invalidate, isComplexType, isOnValidation, isSimpleType, setComplexType, setDTSBase, setId, setParent, setRole, setRoleType, setSimpleType, setValue, validate |
| Methods inherited from class com.ihr.xbrl.om.exLinks.XLinkElement |
getActuate, getArcrole, getFromTxt, getHRef, getLabel, getRole, getShow, getStaticLabel, getSType, getTitle, getToTxt, isRequiredAttribute, isValidAttribute, setActuate, setArcrole, setFrom, setHRef, setLabel, setShow, setSType, setTitle, setTo |
| Methods inherited from class com.ihr.xbrl.om.XMLFragment |
addAttribute, addFromRelationship, addNamespace, addNamespace, addToRelationship, addXMLChild, changeBase, checkBase, clone, clone, delAttribute, delAttribute, equalXdmValues, evaluateBoolean, evaluateList, evaluateNode, evaluateNumber, evaluateString, generateId, generateNodeNamespacesAndAttributes, generateNodeValue, generatePrefix, getAttribute, getAttributeQNameValue, getAttributes, getAttributeStringValue, getAttributeValue, getBase, getBase, getBaseURI, getBooleanValue, getChild, getContainer, getContainerDocumentURI, getDeclaredNamespaces, getDocument, getElements, getFragment, getFromRelationships, getFromRelationships, getFromRelationships, getFromRelationships, getId, getLang, getNamespaceURI, getNodeName, getNumberOfElements, getNumberOfFromRelationships, getNumberOfToRelationships, getOrGenerateId, getPrefix, getPrefixes, getQNameValue, getRelationshipsBases, getRelationshipsChain, getRelationshipTypes, getStaticNamespace, getStringValue, getToRelationships, getToRelationships, getToRelationships, getToRelationships, getValue, getXPathNamespaceContext, getXPathToNode, getXPathToRoot, getXPointerElementScheme, getXPointerElementScheme, getXPointerShorthandScheme, getXPointerToNode, isDead, isNamespaceDefined, objEquals, objHashCode, qNameToString, removeAttribute, removeChild, removeChild, removeFromRelationship, removeToRelationship, removeXMLChild, resetElements, resetHash, resolveHRef, resolveHRef, s_equal2, s_equal2, setAttributes, setBase, setDocument, setDocumentAndReload, setElements, setLang, setNamespaceContext, setNamespaces, setNode, setNodeName, setParent, setValue, setVariablesDefined, toString, valueEquals, xEqual |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
name
public static final javax.xml.namespace.QName name
required
public static final javax.xml.namespace.QName required
select
public static final javax.xml.namespace.QName select
as
public static final javax.xml.namespace.QName as
resourceName
public static final javax.xml.namespace.QName resourceName
XBRLVariableParameter
public XBRLVariableParameter(XBRLFormulaProcessor proc,
XBRLResource other)
throws XFValidationException
- Parameters:
other -
- Throws:
XFValidationException
isEvaluationRequired
public boolean isEvaluationRequired()
- Returns true when this parameter has not been evaluated and evaluation depends upon the evaluation of another
parameter so re-evaluation is needed. This method is used internally by the XBRLFormulaProcessor
- Returns:
getParameterName
public javax.xml.namespace.QName getParameterName()
- Returns:
- QName the variable QName name
evaluateValue
public Evaluation evaluateValue(XMLFragment evaluationContext,
java.util.Collection<XBRLVariableResourceUse> availableVars,
XBRLVariableSetResource set)
throws XFValidationException
- Description copied from interface:
XBRLVariableFormulaEvaluable
- Evaluates the resource internal XPath expression and returns either the returned value from the XPath expression
or the fall back value in the case of variables that may have a fall back value and the rawEvaluation of the
XPath expression results in the empty sequence. The raw evaluation of the XPath expression is implemented
in the
#rawEvaluateValue(XMLFragment, Collection, XBRLVariableSetResource) call.
- Returns:
-
- Throws:
XFValidationException
rawEvaluateValue
public Evaluation rawEvaluateValue(XMLFragment evaluationContext,
java.util.Collection<XBRLVariableResourceUse> availableVars)
throws XFValidationException
- Description copied from interface:
XBRLVariableFormulaEvaluable
- Evaluates the resource internal XPath expression and returns the sequence. This method does not
considers nor evaluates the default value if any is possible. The evaluation considering default
values is implemented in the
XBRLVariableFormulaEvaluable.evaluateValue(XMLFragment, Collection, XBRLVariableSetResource) method.
- Returns:
-
- Throws:
XFValidationException
checkVariable
public boolean checkVariable(XBRLVariablesHolder set,
javax.xml.namespace.QName name,
java.util.Collection<net.sf.saxon.s9api.QName> resolved)
throws XFValidationException
- Description copied from interface:
XBRLVariableFormulaEvaluable
- Called for variables that are also resources during the static compilation phase of the formula preparation.
throws exceptions according to the validation rules.
shall return true on success
- Returns:
-
- Throws:
XFValidationException
getVariablesRequired
public java.util.Collection<javax.xml.namespace.QName> getVariablesRequired(XBRLVariablesHolder set)
- Description copied from interface:
XBRLVariableFormulaEvaluable
- Returns a collection of variables required for the evaluation of this variable
- Returns:
- collection of QNames
getExpression
public java.lang.String getExpression()
- Description copied from class:
XBRLVariableResource
- Used only for debug purposes.
Returns the XPath expression used to evaluate this variable
- Specified by:
getExpression in class XBRLVariableResource
- Returns:
- String
Copyright 2006-2009 Reporting Standard S.L., C/ Torrecilla del Puerto 1, 28043, Madrid, Espaņa