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

Created on Dec 16, 2019
 
@author: acaproni

 
Classes
       
enum.Enum(builtins.object)
IasCmdExitStatus

 
class IasCmdExitStatus(enum.Enum)
    IasCmdExitStatus(*values)
 
Th exit status of the ocmmand.
 
It is the python implementation of the java org.eso.ias.command.CommandExitStatus
 
 
Method resolution order:
IasCmdExitStatus
enum.Enum
builtins.object

Data and other attributes defined here:
ERROR = <IasCmdExitStatus.ERROR: 2>
OK = <IasCmdExitStatus.OK: (0,)>
REJECTED = <IasCmdExitStatus.REJECTED: 1>
UNKNOWN = <IasCmdExitStatus.UNKNOWN: 3>

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.