IasCmdReply.IasCommandType
index
/home/fedora/IasRoot/lib/python3.12/site-packages/IasCmdReply/IasCommandType.py

Created on Dec 16, 2019
 
@author: acaproni

 
Classes
       
enum.Enum(builtins.object)
IasCommandType

 
class IasCommandType(enum.Enum)
    IasCommandType(*values)
 
The supported command as defined in the java
org.eso.ias.command.CommandType
 
 
Method resolution order:
IasCommandType
enum.Enum
builtins.object

Data and other attributes defined here:
ACK = <IasCommandType.ACK: 4>
PING = <IasCommandType.PING: 0>
RESTART = <IasCommandType.RESTART: 2>
SET_LOG_LEVEL = <IasCommandType.SET_LOG_LEVEL: 3>
SHUTDOWN = <IasCommandType.SHUTDOWN: 1>
TF_CHANGED = <IasCommandType.TF_CHANGED: 5>

Data descriptors inherited from enum.Enum:
name
The name of the Enum member.
value
The value of the Enum member.

Static methods inherited from enum.EnumType:
__contains__(value)
Return True if `value` is in `cls`.
 
`value` is in `cls` if:
1) `value` is a member of `cls`, or
2) `value` is the value of one of the `cls`'s members.
__getitem__(name)
Return the member matching `name`.
__iter__()
Return members in definition order.
__len__()
Return the number of members (no aliases)

Readonly properties inherited from enum.EnumType:
__members__
Returns a mapping of member name->value.
 
This mapping lists all enum members, including aliases. Note that this
is a read-only view of the internal mapping.