libSBML Python API
5.18.0
|
This class of objects is defined by libSBML only and has no direct equivalent in terms of SBML components. This class is not prescribed by the SBML specifications, although it is used to implement features defined in SBML.
A 'triple' in the libSBML XML layer encapsulates the notion of qualified name, meaning an element name or an attribute name with an optional namespace qualifier. Triples by themselves are not entities in an XML stream—they are not, for example, elements or attributes; rather, XMLTriple is used in libSBML to construct these other kinds of objects.
An XMLTriple instance carries up to three data items:
mysim
and it appears on both the element someelement
and the attribute attribA
. When both the element and the attribute are stored as XMLTriple objects, their prefix is mysim
. <mysim:someelement mysim:attribA='value' />
XMLTriple objects are the lowest-level data item in the XML layer of libSBML. Other objects such as XMLToken make use of XMLTriple objects.
Public Member Functions | |
def | __init__ (self, args) |
This method has multiple variants; they differ in the arguments they accept. More... | |
def | clone (self) |
Creates and returns a deep copy of this XMLTriple object. More... | |
def | getName (self) |
Returns the name portion of this XMLTriple object. More... | |
def | getPrefix (self) |
Returns the prefix portion of this XMLTriple object. More... | |
def | getPrefixedName (self) |
Returns the prefixed name from this XMLTriple. More... | |
def | getURI (self) |
Returns the URI portion of this XMLTriple object. More... | |
def | isEmpty (self) |
Returns True if this XMLTriple object is empty. More... | |
def libsbml.XMLTriple.__init__ | ( | self, | |
args | |||
) |
This method has multiple variants; they differ in the arguments they accept.
__init__() XMLTriple __init__(string name, string uri, string prefix) XMLTriple __init__(string triplet, char sepchar) XMLTriple __init__(string triplet) XMLTriple __init__(XMLTriple orig) XMLTriple
Each variant is described separately below.
XMLTriple(string name, string uri, string prefix)
Creates a new XMLTriple object with a given name
, uri
and and prefix
.
name | a string, the name for the entity represented by this object. |
uri | a string, the XML namespace URI associated with the prefix. |
prefix | a string, the XML namespace prefix for this triple. |
XMLTriple(string triplet, char sepchar = ' ')
Creates an XMLTriple object by splitting a given string at a given separator character.
The 'triplet' in this case is a string that may be in one of the following three possible formats:
where x represents the separator character, sepchar
.
triplet | a string representing the triplet as shown above. |
sepchar | a character, the sepchar used in the triplet. |
parameter
= value
. This is not to be intepreted as a Python keyword argument; the use of a parameter name followed by an equals sign followed by a value is only meant to indicate a default value if the argument is not provided at all. It is not a keyword in the Python sense.XMLTriple()
Creates a new, empty XMLTriple object.
XMLTriple(XMLTriple orig)
Copy constructor; creates a copy of this XMLTriple object.
orig | the XMLTriple object to copy. |
def libsbml.XMLTriple.clone | ( | self | ) |
def libsbml.XMLTriple.getName | ( | self | ) |
def libsbml.XMLTriple.getPrefix | ( | self | ) |
def libsbml.XMLTriple.getPrefixedName | ( | self | ) |
def libsbml.XMLTriple.getURI | ( | self | ) |