from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class LteCls:
"""Lte commands group definition. 6 total commands, 6 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("lte", core, parent)
@property
def state(self):
"""state commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_state'):
from .State import StateCls
self._state = StateCls(self._core, self._cmd_group)
return self._state
@property
def pointA(self):
"""pointA commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_pointA'):
from .PointA import PointACls
self._pointA = PointACls(self._core, self._cmd_group)
return self._pointA
@property
def cbw(self):
"""cbw commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_cbw'):
from .Cbw import CbwCls
self._cbw = CbwCls(self._core, self._cmd_group)
return self._cbw
@property
def mbsfn(self):
"""mbsfn commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_mbsfn'):
from .Mbsfn import MbsfnCls
self._mbsfn = MbsfnCls(self._core, self._cmd_group)
return self._mbsfn
@property
def vshift(self):
"""vshift commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_vshift'):
from .Vshift import VshiftCls
self._vshift = VshiftCls(self._core, self._cmd_group)
return self._vshift
@property
def nap(self):
"""nap commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_nap'):
from .Nap import NapCls
self._nap = NapCls(self._core, self._cmd_group)
return self._nap
def clone(self) -> 'LteCls':
"""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 = LteCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group