from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal.RepeatedCapability import RepeatedCapability
from .... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class FilterPyCls:
"""FilterPy commands group definition. 13 total commands, 6 Subgroups, 0 group commands
Repeated Capability: FilterPy, default value after init: FilterPy.Nr1"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("filterPy", core, parent)
self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_filterPy_get', 'repcap_filterPy_set', repcap.FilterPy.Nr1)
def repcap_filterPy_set(self, filterPy: repcap.FilterPy) -> None:
"""Repeated Capability default value numeric suffix.
This value is used, if you do not explicitely set it in the child set/get methods, or if you leave it to FilterPy.Default
Default value after init: FilterPy.Nr1"""
self._cmd_group.set_repcap_enum_value(filterPy)
def repcap_filterPy_get(self) -> repcap.FilterPy:
"""Returns the current default repeated capability for the child set/get methods"""
# noinspection PyTypeChecker
return self._cmd_group.get_repcap_enum_value()
@property
def hpass(self):
"""hpass commands group. 2 Sub-classes, 0 commands."""
if not hasattr(self, '_hpass'):
from .Hpass import HpassCls
self._hpass = HpassCls(self._core, self._cmd_group)
return self._hpass
@property
def lpass(self):
"""lpass commands group. 2 Sub-classes, 0 commands."""
if not hasattr(self, '_lpass'):
from .Lpass import LpassCls
self._lpass = LpassCls(self._core, self._cmd_group)
return self._lpass
@property
def demphasis(self):
"""demphasis commands group. 2 Sub-classes, 0 commands."""
if not hasattr(self, '_demphasis'):
from .Demphasis import DemphasisCls
self._demphasis = DemphasisCls(self._core, self._cmd_group)
return self._demphasis
@property
def ccir(self):
"""ccir commands group. 2 Sub-classes, 0 commands."""
if not hasattr(self, '_ccir'):
from .Ccir import CcirCls
self._ccir = CcirCls(self._core, self._cmd_group)
return self._ccir
@property
def aweighted(self):
"""aweighted commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_aweighted'):
from .Aweighted import AweightedCls
self._aweighted = AweightedCls(self._core, self._cmd_group)
return self._aweighted
@property
def aoff(self):
"""aoff commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_aoff'):
from .Aoff import AoffCls
self._aoff = AoffCls(self._core, self._cmd_group)
return self._aoff
def clone(self) -> 'FilterPyCls':
"""Clones the group by creating new object from it and its whole existing subgroups
Also copies all the existing default Repeated Capabilities setting,
which you can change independently without affecting the original group"""
new_group = FilterPyCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group