Interface ActionEffectiveStatement
- All Superinterfaces:
DataTreeAwareEffectiveStatement<QName,
,ActionStatement> EffectiveStatement<QName,
,ActionStatement> ModelStatement<QName>
,SchemaTreeAwareEffectiveStatement<QName,
,ActionStatement> SchemaTreeEffectiveStatement<ActionStatement>
,TypedefAwareEffectiveStatement<QName,
ActionStatement>
- All Known Implementing Classes:
ActionEffectiveStatementImpl
public interface ActionEffectiveStatement
extends SchemaTreeEffectiveStatement<ActionStatement>, DataTreeAwareEffectiveStatement<QName,ActionStatement>, TypedefAwareEffectiveStatement<QName,ActionStatement>
-
Method Summary
Modifier and TypeMethodDescriptiondefault @NonNull InputEffectiveStatement
input()
Return this statement'sinput
substatement.default @NonNull OutputEffectiveStatement
output()
Return this statement'soutput
substatement.default StatementDefinition
Statement Definition of this statement.Methods inherited from interface org.opendaylight.yangtools.yang.model.api.stmt.DataTreeAwareEffectiveStatement
dataTreeNodes, findDataTreeNode, findDataTreeNode
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement
collectEffectiveSubstatements, effectiveSubstatements, findFirstEffectiveSubstatement, findFirstEffectiveSubstatementArgument, getDeclared, statementOrigin, streamEffectiveSubstatements
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.meta.ModelStatement
argument
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.stmt.SchemaTreeAwareEffectiveStatement
findSchemaTreeNode, findSchemaTreeNode, findSchemaTreeNode, findSchemaTreeNode, findSchemaTreeNode, findSchemaTreeNode, findSchemaTreeNode, findSchemaTreeNode, schemaTreeNodes
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.stmt.TypedefAwareEffectiveStatement
findTypedef, typedefs
-
Method Details
-
statementDefinition
Description copied from interface:ModelStatement
Statement Definition of this statement.- Specified by:
statementDefinition
in interfaceModelStatement<QName>
- Returns:
- definition of this statement.
-
input
Return this statement'sinput
substatement.- Returns:
- An
InputEffectiveStatement
- Implementation Requirements:
- Default implementation uses
EffectiveStatement.findFirstEffectiveSubstatement(Class)
and throws aVerifyException
if a matching substatement is not found.
-
output
Return this statement'soutput
substatement.- Returns:
- An
OutputEffectiveStatement
- Implementation Requirements:
- Default implementation uses
EffectiveStatement.findFirstEffectiveSubstatement(Class)
and throws aVerifyException
if a matching substatement is not found.
-