-
Notifications
You must be signed in to change notification settings - Fork 0
OID class
Baltasar García Perez-Schofield edited this page Apr 3, 2022
·
4 revisions
-
namespace: Devuelve el nombre del espacio de nombres (la clase) a la que pertence el objeto.
- Returns the name space (the class name) this object pertains to.
-
num: Devuelve el número de índice del objeto. Los números de índice son asignados de manera consecutiva, a partir del 0, de forma que el objeto con índice 0 será el primero que habrá sido guardado.
- Returns the index number for this object. Indexes are assigned consecutively, so the object with index 0 will be the first that have been stored.
-
__str__
: Devuelve la descripción textual del oid, en el formato<namespace>@<num>
. Esta descripción puede obtenerse constr(oid)
.- Returns the textual description of the oid, in the format
<namespace>@<num>
. This description can be obtainedstr(oid)
.
- Returns the textual description of the oid, in the format
-
__eq__
: Permite comparar dos OID's mediante el operador==
.- Allows to compare two OID's by means of the
==
operator.
- Allows to compare two OID's by means of the
-
from_pair(p)
: Permite construir un OID con un par formado por un espacio de nombres y un número (por ejemplo,OID.from_pair("ns", 1)
).- Allows to build an OID's by means of a pair (for instance,
OID.from_pair("ns", 1)
).
- Allows to build an OID's by means of a pair (for instance,