AcsCommandCenterEntities.AcsCommandCenterTools
index
/alma/ACS-2016.6/ACSSW/lib/python/site-packages/AcsCommandCenterEntities/AcsCommandCenterTools.py

# ../lib/python/site-packages/AcsCommandCenterEntities/AcsCommandCenterTools.py
# PyXB bindings for NamespaceModule
# NSM:4328047f589673c40f1ca149a85634f13a21bf83
# Generated 2016-06-22 09:26:43.016439 by PyXB version 1.1.2

 
Modules
       
StringIO
pyxb
sys

 
Classes
       
pyxb.binding.basis.complexTypeDefinition(pyxb.binding.basis._TypeBinding_mixin, pyxb.utils.utility._DeconflictSymbols_mixin, pyxb.binding.basis._DynamicCreate_mixin)
CTD_ANON
CTD_ANON_
CTD_ANON_2
pyxb.binding.basis.enumeration_mixin(pyxb.cscRoot)
STD_ANON(pyxb.binding.datatypes.NMTOKEN, pyxb.binding.basis.enumeration_mixin)
pyxb.binding.datatypes.NMTOKEN(pyxb.binding.datatypes.token)
STD_ANON(pyxb.binding.datatypes.NMTOKEN, pyxb.binding.basis.enumeration_mixin)

 
class CTD_ANON(pyxb.binding.basis.complexTypeDefinition)
    # Complex type CTD_ANON with content type ELEMENT_ONLY
 
 
Method resolution order:
CTD_ANON
pyxb.binding.basis.complexTypeDefinition
pyxb.binding.basis._TypeBinding_mixin
pyxb.utils.utility.Locatable_mixin
pyxb.utils.utility._DeconflictSymbols_mixin
pyxb.binding.basis._DynamicCreate_mixin
pyxb.cscRoot
__builtin__.object

Data descriptors defined here:
caption
Return the value for this use within the given instance.
command
Return the value for this use within the given instance.
expectedOutput
Return the value for this use within the given instance.
insertion
Return the value for this use within the given instance.
maxStartupSeconds
Return the value for this use within the given instance.

Methods inherited from pyxb.binding.basis.complexTypeDefinition:
__init__(self, *args, **kw)
Create a new instance of this binding.
 
Arguments are used as transition values along the content model.
Keywords are passed to the constructor of any simple content, or used
to initialize attribute and element values whose L{id
<content.ElementUse.id>} (not L{name <content.ElementUse.name>})
matches the keyword.
 
@keyword _dom_node: The node to use as the source of binding content.
@type _dom_node: C{xml.dom.Element}
append(self, value, element_use=None, maybe_element=True, _fallback_namespace=None, require_validation=True)
Add the value to the instance.
 
The value should be a DOM node or other value that is or can be
converted to a binding instance.  If the instance has a DFA state, the
value must be permitted by the content model.
 
@raise pyxb.ExtraContentError: the value is not permitted at the
current state of the content model.
content(self)
Return the content of the element.
 
This must be a complex type with complex content.  The return value is
a list of the element and non-element content in the order in which it
was added.
@raise pyxb.NotComplexContentError: this is not a complex type with mixed or element-only content
extend(self, value_list, _fallback_namespace=None)
Invoke L{append} for each value in the list, in turn.
reset(self)
Reset the instance.
 
This resets all element and attribute fields, and discards any
recorded content.  It resets the DFA to the initial state of the
content model.
value(self)
Return the value of the element.
 
This must be a complex type with simple content.  The returned value
is expected to be an instance of some L{simpleTypeDefinition} class.
 
@raise pyxb.NotSimpleContentError: this is not a complex type with simple content
wildcardAttributeMap(self)
Obtain access to wildcard attributes.
 
The return value is C{None} if this type does not support wildcard
attributes.  If wildcard attributes are allowed, the return value is a
map from QNames to the unicode string value of the corresponding
attribute.
 
@todo: The map keys should be namespace extended names rather than
QNames, as the in-scope namespace may not be readily available to the
user.
wildcardElements(self)
Obtain access to wildcard elements.
 
The return value is C{None} if the content model for this type does not
support wildcard elements.  If wildcard elements are allowed, the
return value is a list of values corresponding to conformant
unrecognized elements, in the order in which they were encountered.
If the containing binding was created from an XML document and enough
information was present to determine the binding of the member
element, the value is a binding instance.  Otherwise, the value is the
original DOM Element node.
xsdConstraintsOK(self)
Validate the content against the simple type.
 
@return: C{True} if the content validates against its type.
@raise pyxb.NotSimpleContentError: this type does not have simple content.
@raise pyxb.MissingContentError: the content of this type has not been set

Methods inherited from pyxb.binding.basis._TypeBinding_mixin:
__setattr__(self, name, value)
toDOM(self, bds=None, parent=None, element_name=None)
Convert this instance to a DOM node.
 
The name of the top-level element is either the name of the L{element}
instance associated with this instance, or the XML name of the type of
this instance.
 
@param bds: Support for customizing the generated document
@type bds: L{pyxb.utils.domutils.BindingDOMSupport}
@param parent: If C{None}, a standalone document is created;
otherwise, the created element is a child of the given element.
@type parent: C{xml.dom.Element} or C{None}
@rtype: C{xml.dom.Document}
toxml(self, bds=None, root_only=False)
Shorthand to get the object as an XML document.
 
If you want to set the default namespace, pass in a pre-configured
C{bds}.
 
@param bds: Optional L{pyxb.utils.domutils.BindingDOMSupport} instance
to use for creation. If not provided (default), a new generic one is
created.
validateBinding(self)
Check whether the binding content matches its content model.
 
@return: C{True} if validation succeeds.
@raise pyxb.BindingValidationError: complex content does not match model
@raise pyxb.BadTypeValueError: simple content fails to satisfy constraints

Class methods inherited from pyxb.binding.basis._TypeBinding_mixin:
Factory(cls, *args, **kw) from __builtin__.type
Provide a common mechanism to create new instances of this type.
 
The class constructor won't do, because you can't create
instances of union types.
 
This method may be overridden in subclasses (like STD_union).  Pre-
and post-creation actions can be customized on a per-class instance by
overriding the L{_PreFactory_vx} and L{_postFactory_vx} methods.
 
@keyword _dom_node: If provided, the value must be a DOM node, the
content of which will be used to set the value of the instance.
 
@keyword _apply_whitespace_facet: If C{True} and this is a
simpleTypeDefinition with a whiteSpace facet, the first argument will
be normalized in accordance with that facet prior to invoking the
parent constructor.
 
@keyword _validate_constraints: If C{True}, any constructed value is
checked against constraints applied to the union as well as the member
type.
 
@keyword _require_value: If C{False} (default), it is permitted to
create a value without an initial value.  If C{True} and no initial
value was provided, causes L{pyxb.MissingContentError} to be raised.
Only applies to simpleTypeDefinition instances; this is used when
creating values from DOM nodes.

Data descriptors inherited from pyxb.utils.utility._DeconflictSymbols_mixin:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CTD_ANON_(pyxb.binding.basis.complexTypeDefinition)
    # Complex type CTD_ANON_ with content type ELEMENT_ONLY
 
 
Method resolution order:
CTD_ANON_
pyxb.binding.basis.complexTypeDefinition
pyxb.binding.basis._TypeBinding_mixin
pyxb.utils.utility.Locatable_mixin
pyxb.utils.utility._DeconflictSymbols_mixin
pyxb.binding.basis._DynamicCreate_mixin
pyxb.cscRoot
__builtin__.object

Data descriptors defined here:
tool
Return the value for this use within the given instance.

Methods inherited from pyxb.binding.basis.complexTypeDefinition:
__init__(self, *args, **kw)
Create a new instance of this binding.
 
Arguments are used as transition values along the content model.
Keywords are passed to the constructor of any simple content, or used
to initialize attribute and element values whose L{id
<content.ElementUse.id>} (not L{name <content.ElementUse.name>})
matches the keyword.
 
@keyword _dom_node: The node to use as the source of binding content.
@type _dom_node: C{xml.dom.Element}
append(self, value, element_use=None, maybe_element=True, _fallback_namespace=None, require_validation=True)
Add the value to the instance.
 
The value should be a DOM node or other value that is or can be
converted to a binding instance.  If the instance has a DFA state, the
value must be permitted by the content model.
 
@raise pyxb.ExtraContentError: the value is not permitted at the
current state of the content model.
content(self)
Return the content of the element.
 
This must be a complex type with complex content.  The return value is
a list of the element and non-element content in the order in which it
was added.
@raise pyxb.NotComplexContentError: this is not a complex type with mixed or element-only content
extend(self, value_list, _fallback_namespace=None)
Invoke L{append} for each value in the list, in turn.
reset(self)
Reset the instance.
 
This resets all element and attribute fields, and discards any
recorded content.  It resets the DFA to the initial state of the
content model.
value(self)
Return the value of the element.
 
This must be a complex type with simple content.  The returned value
is expected to be an instance of some L{simpleTypeDefinition} class.
 
@raise pyxb.NotSimpleContentError: this is not a complex type with simple content
wildcardAttributeMap(self)
Obtain access to wildcard attributes.
 
The return value is C{None} if this type does not support wildcard
attributes.  If wildcard attributes are allowed, the return value is a
map from QNames to the unicode string value of the corresponding
attribute.
 
@todo: The map keys should be namespace extended names rather than
QNames, as the in-scope namespace may not be readily available to the
user.
wildcardElements(self)
Obtain access to wildcard elements.
 
The return value is C{None} if the content model for this type does not
support wildcard elements.  If wildcard elements are allowed, the
return value is a list of values corresponding to conformant
unrecognized elements, in the order in which they were encountered.
If the containing binding was created from an XML document and enough
information was present to determine the binding of the member
element, the value is a binding instance.  Otherwise, the value is the
original DOM Element node.
xsdConstraintsOK(self)
Validate the content against the simple type.
 
@return: C{True} if the content validates against its type.
@raise pyxb.NotSimpleContentError: this type does not have simple content.
@raise pyxb.MissingContentError: the content of this type has not been set

Methods inherited from pyxb.binding.basis._TypeBinding_mixin:
__setattr__(self, name, value)
toDOM(self, bds=None, parent=None, element_name=None)
Convert this instance to a DOM node.
 
The name of the top-level element is either the name of the L{element}
instance associated with this instance, or the XML name of the type of
this instance.
 
@param bds: Support for customizing the generated document
@type bds: L{pyxb.utils.domutils.BindingDOMSupport}
@param parent: If C{None}, a standalone document is created;
otherwise, the created element is a child of the given element.
@type parent: C{xml.dom.Element} or C{None}
@rtype: C{xml.dom.Document}
toxml(self, bds=None, root_only=False)
Shorthand to get the object as an XML document.
 
If you want to set the default namespace, pass in a pre-configured
C{bds}.
 
@param bds: Optional L{pyxb.utils.domutils.BindingDOMSupport} instance
to use for creation. If not provided (default), a new generic one is
created.
validateBinding(self)
Check whether the binding content matches its content model.
 
@return: C{True} if validation succeeds.
@raise pyxb.BindingValidationError: complex content does not match model
@raise pyxb.BadTypeValueError: simple content fails to satisfy constraints

Class methods inherited from pyxb.binding.basis._TypeBinding_mixin:
Factory(cls, *args, **kw) from __builtin__.type
Provide a common mechanism to create new instances of this type.
 
The class constructor won't do, because you can't create
instances of union types.
 
This method may be overridden in subclasses (like STD_union).  Pre-
and post-creation actions can be customized on a per-class instance by
overriding the L{_PreFactory_vx} and L{_postFactory_vx} methods.
 
@keyword _dom_node: If provided, the value must be a DOM node, the
content of which will be used to set the value of the instance.
 
@keyword _apply_whitespace_facet: If C{True} and this is a
simpleTypeDefinition with a whiteSpace facet, the first argument will
be normalized in accordance with that facet prior to invoking the
parent constructor.
 
@keyword _validate_constraints: If C{True}, any constructed value is
checked against constraints applied to the union as well as the member
type.
 
@keyword _require_value: If C{False} (default), it is permitted to
create a value without an initial value.  If C{True} and no initial
value was provided, causes L{pyxb.MissingContentError} to be raised.
Only applies to simpleTypeDefinition instances; this is used when
creating values from DOM nodes.

Data descriptors inherited from pyxb.utils.utility._DeconflictSymbols_mixin:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CTD_ANON_2(pyxb.binding.basis.complexTypeDefinition)
    # Complex type CTD_ANON_2 with content type MIXED
 
 
Method resolution order:
CTD_ANON_2
pyxb.binding.basis.complexTypeDefinition
pyxb.binding.basis._TypeBinding_mixin
pyxb.utils.utility.Locatable_mixin
pyxb.utils.utility._DeconflictSymbols_mixin
pyxb.binding.basis._DynamicCreate_mixin
pyxb.cscRoot
__builtin__.object

Data descriptors defined here:
default
Return the value for this use within the given instance.
source
Get the value of the attribute from the instance.

Methods inherited from pyxb.binding.basis.complexTypeDefinition:
__init__(self, *args, **kw)
Create a new instance of this binding.
 
Arguments are used as transition values along the content model.
Keywords are passed to the constructor of any simple content, or used
to initialize attribute and element values whose L{id
<content.ElementUse.id>} (not L{name <content.ElementUse.name>})
matches the keyword.
 
@keyword _dom_node: The node to use as the source of binding content.
@type _dom_node: C{xml.dom.Element}
append(self, value, element_use=None, maybe_element=True, _fallback_namespace=None, require_validation=True)
Add the value to the instance.
 
The value should be a DOM node or other value that is or can be
converted to a binding instance.  If the instance has a DFA state, the
value must be permitted by the content model.
 
@raise pyxb.ExtraContentError: the value is not permitted at the
current state of the content model.
content(self)
Return the content of the element.
 
This must be a complex type with complex content.  The return value is
a list of the element and non-element content in the order in which it
was added.
@raise pyxb.NotComplexContentError: this is not a complex type with mixed or element-only content
extend(self, value_list, _fallback_namespace=None)
Invoke L{append} for each value in the list, in turn.
reset(self)
Reset the instance.
 
This resets all element and attribute fields, and discards any
recorded content.  It resets the DFA to the initial state of the
content model.
value(self)
Return the value of the element.
 
This must be a complex type with simple content.  The returned value
is expected to be an instance of some L{simpleTypeDefinition} class.
 
@raise pyxb.NotSimpleContentError: this is not a complex type with simple content
wildcardAttributeMap(self)
Obtain access to wildcard attributes.
 
The return value is C{None} if this type does not support wildcard
attributes.  If wildcard attributes are allowed, the return value is a
map from QNames to the unicode string value of the corresponding
attribute.
 
@todo: The map keys should be namespace extended names rather than
QNames, as the in-scope namespace may not be readily available to the
user.
wildcardElements(self)
Obtain access to wildcard elements.
 
The return value is C{None} if the content model for this type does not
support wildcard elements.  If wildcard elements are allowed, the
return value is a list of values corresponding to conformant
unrecognized elements, in the order in which they were encountered.
If the containing binding was created from an XML document and enough
information was present to determine the binding of the member
element, the value is a binding instance.  Otherwise, the value is the
original DOM Element node.
xsdConstraintsOK(self)
Validate the content against the simple type.
 
@return: C{True} if the content validates against its type.
@raise pyxb.NotSimpleContentError: this type does not have simple content.
@raise pyxb.MissingContentError: the content of this type has not been set

Methods inherited from pyxb.binding.basis._TypeBinding_mixin:
__setattr__(self, name, value)
toDOM(self, bds=None, parent=None, element_name=None)
Convert this instance to a DOM node.
 
The name of the top-level element is either the name of the L{element}
instance associated with this instance, or the XML name of the type of
this instance.
 
@param bds: Support for customizing the generated document
@type bds: L{pyxb.utils.domutils.BindingDOMSupport}
@param parent: If C{None}, a standalone document is created;
otherwise, the created element is a child of the given element.
@type parent: C{xml.dom.Element} or C{None}
@rtype: C{xml.dom.Document}
toxml(self, bds=None, root_only=False)
Shorthand to get the object as an XML document.
 
If you want to set the default namespace, pass in a pre-configured
C{bds}.
 
@param bds: Optional L{pyxb.utils.domutils.BindingDOMSupport} instance
to use for creation. If not provided (default), a new generic one is
created.
validateBinding(self)
Check whether the binding content matches its content model.
 
@return: C{True} if validation succeeds.
@raise pyxb.BindingValidationError: complex content does not match model
@raise pyxb.BadTypeValueError: simple content fails to satisfy constraints

Class methods inherited from pyxb.binding.basis._TypeBinding_mixin:
Factory(cls, *args, **kw) from __builtin__.type
Provide a common mechanism to create new instances of this type.
 
The class constructor won't do, because you can't create
instances of union types.
 
This method may be overridden in subclasses (like STD_union).  Pre-
and post-creation actions can be customized on a per-class instance by
overriding the L{_PreFactory_vx} and L{_postFactory_vx} methods.
 
@keyword _dom_node: If provided, the value must be a DOM node, the
content of which will be used to set the value of the instance.
 
@keyword _apply_whitespace_facet: If C{True} and this is a
simpleTypeDefinition with a whiteSpace facet, the first argument will
be normalized in accordance with that facet prior to invoking the
parent constructor.
 
@keyword _validate_constraints: If C{True}, any constructed value is
checked against constraints applied to the union as well as the member
type.
 
@keyword _require_value: If C{False} (default), it is permitted to
create a value without an initial value.  If C{True} and no initial
value was provided, causes L{pyxb.MissingContentError} to be raised.
Only applies to simpleTypeDefinition instances; this is used when
creating values from DOM nodes.

Data descriptors inherited from pyxb.utils.utility._DeconflictSymbols_mixin:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class STD_ANON(pyxb.binding.datatypes.NMTOKEN, pyxb.binding.basis.enumeration_mixin)
    An atomic simple type.
 
 
Method resolution order:
STD_ANON
pyxb.binding.datatypes.NMTOKEN
pyxb.binding.datatypes.token
pyxb.binding.datatypes.normalizedString
pyxb.binding.datatypes.string
pyxb.binding.basis.simpleTypeDefinition
pyxb.binding.basis._TypeBinding_mixin
pyxb.utils.utility.Locatable_mixin
pyxb.utils.utility._DeconflictSymbols_mixin
pyxb.binding.basis._DynamicCreate_mixin
pyxb.binding.basis.enumeration_mixin
pyxb.cscRoot
__builtin__.unicode
__builtin__.basestring
__builtin__.object

Data and other attributes defined here:
input = u'input'
model = u'model'

Class methods inherited from pyxb.binding.datatypes.string:
XsdLiteral(cls, value) from __builtin__.type
XsdValueLength(cls, value) from __builtin__.type

Data descriptors inherited from pyxb.binding.datatypes.string:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Methods inherited from pyxb.binding.basis.simpleTypeDefinition:
__init__(self, *args, **kw)
Initialize a newly created STD instance.
 
Usually there is one positional argument, which is a value that can be
converted to the underlying Python type.
 
@keyword _validate_constraints: If True (default), the newly
constructed value is checked against its constraining facets.
@type _validate_constraints: C{bool}
pythonLiteral(self)
Return a string which can be embedded into Python source to
represent the value of this instance.
xsdConstraintsOK(self)
Validate the value of this instance against its constraints.
xsdLiteral(self)
Return text suitable for representing the value of this
instance in an XML document.
 
The base class implementation delegates to the object class's
XsdLiteral method.
xsdValueLength(self)
Return the length of this instance within its value space.
 
See XsdValueLength.

Class methods inherited from pyxb.binding.basis.simpleTypeDefinition:
PythonLiteral(cls, value) from __builtin__.type
Return a string which can be embedded into Python source to
represent the given value as an instance of this class.
SimpleTypeDefinition(cls) from __builtin__.type
Return the SimpleTypeDefinition instance for the given
class.
 
This should only be invoked when generating bindings.
 
@raise pyxb.IncompleteImplementationError: no STD instance has been
associated with the class.
XsdConstraintsOK(cls, value) from __builtin__.type
Validate the given value against the constraints on this class.
 
@raise pyxb.BadTypeValueError: if any constraint is violated.
XsdSuperType(cls) from __builtin__.type
Find the nearest parent class in the PST hierarchy.
 
The value for anySimpleType is None; for all others, it's a
primitive or derived PST descendent (including anySimpleType).

Static methods inherited from pyxb.binding.basis.simpleTypeDefinition:
__new__(cls, *args, **kw)
# Must override new, because new gets invoked before init, and usually
# doesn't accept keywords.  In case it does (e.g., datetime.datetime),
# only remove the ones that would normally be interpreted by this class.
# Do the same argument conversion as is done in init.  Trap errors and
# convert them to BadTypeValue errors.
#
# Note: We explicitly do not validate constraints here.  That's
# done in the normal constructor; here, we might be in the process
# of building a value that eventually will be legal, but isn't
# yet.

Methods inherited from pyxb.binding.basis._TypeBinding_mixin:
__setattr__(self, name, value)
toDOM(self, bds=None, parent=None, element_name=None)
Convert this instance to a DOM node.
 
The name of the top-level element is either the name of the L{element}
instance associated with this instance, or the XML name of the type of
this instance.
 
@param bds: Support for customizing the generated document
@type bds: L{pyxb.utils.domutils.BindingDOMSupport}
@param parent: If C{None}, a standalone document is created;
otherwise, the created element is a child of the given element.
@type parent: C{xml.dom.Element} or C{None}
@rtype: C{xml.dom.Document}
toxml(self, bds=None, root_only=False)
Shorthand to get the object as an XML document.
 
If you want to set the default namespace, pass in a pre-configured
C{bds}.
 
@param bds: Optional L{pyxb.utils.domutils.BindingDOMSupport} instance
to use for creation. If not provided (default), a new generic one is
created.
validateBinding(self)
Check whether the binding content matches its content model.
 
@return: C{True} if validation succeeds.
@raise pyxb.BindingValidationError: complex content does not match model
@raise pyxb.BadTypeValueError: simple content fails to satisfy constraints

Class methods inherited from pyxb.binding.basis._TypeBinding_mixin:
Factory(cls, *args, **kw) from __builtin__.type
Provide a common mechanism to create new instances of this type.
 
The class constructor won't do, because you can't create
instances of union types.
 
This method may be overridden in subclasses (like STD_union).  Pre-
and post-creation actions can be customized on a per-class instance by
overriding the L{_PreFactory_vx} and L{_postFactory_vx} methods.
 
@keyword _dom_node: If provided, the value must be a DOM node, the
content of which will be used to set the value of the instance.
 
@keyword _apply_whitespace_facet: If C{True} and this is a
simpleTypeDefinition with a whiteSpace facet, the first argument will
be normalized in accordance with that facet prior to invoking the
parent constructor.
 
@keyword _validate_constraints: If C{True}, any constructed value is
checked against constraints applied to the union as well as the member
type.
 
@keyword _require_value: If C{False} (default), it is permitted to
create a value without an initial value.  If C{True} and no initial
value was provided, causes L{pyxb.MissingContentError} to be raised.
Only applies to simpleTypeDefinition instances; this is used when
creating values from DOM nodes.

Methods inherited from __builtin__.unicode:
__add__(...)
x.__add__(y) <==> x+y
__contains__(...)
x.__contains__(y) <==> y in x
__eq__(...)
x.__eq__(y) <==> x==y
__format__(...)
S.__format__(format_spec) -> unicode
 
Return a formatted version of S as described by format_spec.
__ge__(...)
x.__ge__(y) <==> x>=y
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getnewargs__(...)
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__gt__(...)
x.__gt__(y) <==> x>y
__hash__(...)
x.__hash__() <==> hash(x)
__le__(...)
x.__le__(y) <==> x<=y
__len__(...)
x.__len__() <==> len(x)
__lt__(...)
x.__lt__(y) <==> x<y
__mod__(...)
x.__mod__(y) <==> x%y
__mul__(...)
x.__mul__(n) <==> x*n
__ne__(...)
x.__ne__(y) <==> x!=y
__repr__(...)
x.__repr__() <==> repr(x)
__rmod__(...)
x.__rmod__(y) <==> y%x
__rmul__(...)
x.__rmul__(n) <==> n*x
__sizeof__(...)
S.__sizeof__() -> size of S in memory, in bytes
__str__(...)
x.__str__() <==> str(x)
capitalize(...)
S.capitalize() -> unicode
 
Return a capitalized version of S, i.e. make the first character
have upper case and the rest lower case.
center(...)
S.center(width[, fillchar]) -> unicode
 
Return S centered in a Unicode string of length width. Padding is
done using the specified fill character (default is a space)
count(...)
S.count(sub[, start[, end]]) -> int
 
Return the number of non-overlapping occurrences of substring sub in
Unicode string S[start:end].  Optional arguments start and end are
interpreted as in slice notation.
decode(...)
S.decode([encoding[,errors]]) -> string or unicode
 
Decodes S using the codec registered for encoding. encoding defaults
to the default encoding. errors may be given to set a different error
handling scheme. Default is 'strict' meaning that encoding errors raise
a UnicodeDecodeError. Other possible values are 'ignore' and 'replace'
as well as any other name registered with codecs.register_error that is
able to handle UnicodeDecodeErrors.
encode(...)
S.encode([encoding[,errors]]) -> string or unicode
 
Encodes S using the codec registered for encoding. encoding defaults
to the default encoding. errors may be given to set a different error
handling scheme. Default is 'strict' meaning that encoding errors raise
a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and
'xmlcharrefreplace' as well as any other name registered with
codecs.register_error that can handle UnicodeEncodeErrors.
endswith(...)
S.endswith(suffix[, start[, end]]) -> bool
 
Return True if S ends with the specified suffix, False otherwise.
With optional start, test S beginning at that position.
With optional end, stop comparing S at that position.
suffix can also be a tuple of strings to try.
expandtabs(...)
S.expandtabs([tabsize]) -> unicode
 
Return a copy of S where all tab characters are expanded using spaces.
If tabsize is not given, a tab size of 8 characters is assumed.
find(...)
S.find(sub [,start [,end]]) -> int
 
Return the lowest index in S where substring sub is found,
such that sub is contained within S[start:end].  Optional
arguments start and end are interpreted as in slice notation.
 
Return -1 on failure.
format(...)
S.format(*args, **kwargs) -> unicode
 
Return a formatted version of S, using substitutions from args and kwargs.
The substitutions are identified by braces ('{' and '}').
index(...)
S.index(sub [,start [,end]]) -> int
 
Like S.find() but raise ValueError when the substring is not found.
isalnum(...)
S.isalnum() -> bool
 
Return True if all characters in S are alphanumeric
and there is at least one character in S, False otherwise.
isalpha(...)
S.isalpha() -> bool
 
Return True if all characters in S are alphabetic
and there is at least one character in S, False otherwise.
isdecimal(...)
S.isdecimal() -> bool
 
Return True if there are only decimal characters in S,
False otherwise.
isdigit(...)
S.isdigit() -> bool
 
Return True if all characters in S are digits
and there is at least one character in S, False otherwise.
islower(...)
S.islower() -> bool
 
Return True if all cased characters in S are lowercase and there is
at least one cased character in S, False otherwise.
isnumeric(...)
S.isnumeric() -> bool
 
Return True if there are only numeric characters in S,
False otherwise.
isspace(...)
S.isspace() -> bool
 
Return True if all characters in S are whitespace
and there is at least one character in S, False otherwise.
istitle(...)
S.istitle() -> bool
 
Return True if S is a titlecased string and there is at least one
character in S, i.e. upper- and titlecase characters may only
follow uncased characters and lowercase characters only cased ones.
Return False otherwise.
isupper(...)
S.isupper() -> bool
 
Return True if all cased characters in S are uppercase and there is
at least one cased character in S, False otherwise.
join(...)
S.join(iterable) -> unicode
 
Return a string which is the concatenation of the strings in the
iterable.  The separator between elements is S.
ljust(...)
S.ljust(width[, fillchar]) -> int
 
Return S left-justified in a Unicode string of length width. Padding is
done using the specified fill character (default is a space).
lower(...)
S.lower() -> unicode
 
Return a copy of the string S converted to lowercase.
lstrip(...)
S.lstrip([chars]) -> unicode
 
Return a copy of the string S with leading whitespace removed.
If chars is given and not None, remove characters in chars instead.
If chars is a str, it will be converted to unicode before stripping
partition(...)
S.partition(sep) -> (head, sep, tail)
 
Search for the separator sep in S, and return the part before it,
the separator itself, and the part after it.  If the separator is not
found, return S and two empty strings.
replace(...)
S.replace(old, new[, count]) -> unicode
 
Return a copy of S with all occurrences of substring
old replaced by new.  If the optional argument count is
given, only the first count occurrences are replaced.
rfind(...)
S.rfind(sub [,start [,end]]) -> int
 
Return the highest index in S where substring sub is found,
such that sub is contained within S[start:end].  Optional
arguments start and end are interpreted as in slice notation.
 
Return -1 on failure.
rindex(...)
S.rindex(sub [,start [,end]]) -> int
 
Like S.rfind() but raise ValueError when the substring is not found.
rjust(...)
S.rjust(width[, fillchar]) -> unicode
 
Return S right-justified in a Unicode string of length width. Padding is
done using the specified fill character (default is a space).
rpartition(...)
S.rpartition(sep) -> (head, sep, tail)
 
Search for the separator sep in S, starting at the end of S, and return
the part before it, the separator itself, and the part after it.  If the
separator is not found, return two empty strings and S.
rsplit(...)
S.rsplit([sep [,maxsplit]]) -> list of strings
 
Return a list of the words in S, using sep as the
delimiter string, starting at the end of the string and
working to the front.  If maxsplit is given, at most maxsplit
splits are done. If sep is not specified, any whitespace string
is a separator.
rstrip(...)
S.rstrip([chars]) -> unicode
 
Return a copy of the string S with trailing whitespace removed.
If chars is given and not None, remove characters in chars instead.
If chars is a str, it will be converted to unicode before stripping
split(...)
S.split([sep [,maxsplit]]) -> list of strings
 
Return a list of the words in S, using sep as the
delimiter string.  If maxsplit is given, at most maxsplit
splits are done. If sep is not specified or is None, any
whitespace string is a separator and empty strings are
removed from the result.
splitlines(...)
S.splitlines(keepends=False) -> list of strings
 
Return a list of the lines in S, breaking at line boundaries.
Line breaks are not included in the resulting list unless keepends
is given and true.
startswith(...)
S.startswith(prefix[, start[, end]]) -> bool
 
Return True if S starts with the specified prefix, False otherwise.
With optional start, test S beginning at that position.
With optional end, stop comparing S at that position.
prefix can also be a tuple of strings to try.
strip(...)
S.strip([chars]) -> unicode
 
Return a copy of the string S with leading and trailing
whitespace removed.
If chars is given and not None, remove characters in chars instead.
If chars is a str, it will be converted to unicode before stripping
swapcase(...)
S.swapcase() -> unicode
 
Return a copy of S with uppercase characters converted to lowercase
and vice versa.
title(...)
S.title() -> unicode
 
Return a titlecased version of S, i.e. words start with title case
characters, all remaining cased characters have lower case.
translate(...)
S.translate(table) -> unicode
 
Return a copy of the string S, where all characters have been mapped
through the given translation table, which must be a mapping of
Unicode ordinals to Unicode ordinals, Unicode strings or None.
Unmapped characters are left untouched. Characters mapped to None
are deleted.
upper(...)
S.upper() -> unicode
 
Return a copy of S converted to uppercase.
zfill(...)
S.zfill(width) -> unicode
 
Pad a numeric string S with zeros on the left, to fill a field
of the specified width. The string S is never truncated.

 
Functions
       
CreateFromDOM(node, default_namespace=None)
Create a Python instance from the given DOM node.
The node tag must correspond to an element declaration in this module.
 
@deprecated: Forcing use of DOM interface is unnecessary; use L{CreateFromDocument}.
CreateFromDocument(xml_text, default_namespace=None, location_base=None)
Parse the given XML and use the document element to create a Python instance.

 
Data
        AcsCommandCenterTools = <pyxb.binding.basis.element object>
ModuleRecord = <pyxb.namespace.archive.ModuleRecord object>
Namespace = <pyxb.namespace.Namespace object>