Package org.sourceid.protocol.dsig10.xml
Interface TransformType
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface TransformType extends XmlObject
An XML TransformType(@http://www.w3.org/2000/09/xmldsig#). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTransformType.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaTypetype-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XmlStringaddNewXPath()Appends and returns a new empty value (as xml) as the last "XPath" elementvoidaddXPath(String xPath)Appends the value as the last "XPath" elementStringgetAlgorithm()Gets the "Algorithm" attributeString[]getXPathArray()Gets array of all "XPath" elementsStringgetXPathArray(int i)Gets ith "XPath" elementXmlStringinsertNewXPath(int i)Inserts and returns a new empty value (as xml) as the ith "XPath" elementvoidinsertXPath(int i, String xPath)Inserts the value as the ith "XPath" elementvoidremoveXPath(int i)Removes the ith "XPath" elementvoidsetAlgorithm(String algorithm)Sets the "Algorithm" attributevoidsetXPathArray(int i, String xPath)Sets ith "XPath" elementvoidsetXPathArray(String[] xPathArray)Sets array of all "XPath" elementintsizeOfXPathArray()Returns number of "XPath" elementXmlAnyURIxgetAlgorithm()Gets (as xml) the "Algorithm" attributeXmlString[]xgetXPathArray()Gets (as xml) array of all "XPath" elementsXmlStringxgetXPathArray(int i)Gets (as xml) ith "XPath" elementvoidxsetAlgorithm(XmlAnyURI algorithm)Sets (as xml) the "Algorithm" attributevoidxsetXPathArray(int i, XmlString xPath)Sets (as xml) ith "XPath" elementvoidxsetXPathArray(XmlString[] xPathArray)Sets (as xml) array of all "XPath" element-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getXPathArray
String[] getXPathArray()
Gets array of all "XPath" elements
-
getXPathArray
String getXPathArray(int i)
Gets ith "XPath" element
-
xgetXPathArray
XmlString[] xgetXPathArray()
Gets (as xml) array of all "XPath" elements
-
xgetXPathArray
XmlString xgetXPathArray(int i)
Gets (as xml) ith "XPath" element
-
sizeOfXPathArray
int sizeOfXPathArray()
Returns number of "XPath" element
-
setXPathArray
void setXPathArray(String[] xPathArray)
Sets array of all "XPath" element
-
setXPathArray
void setXPathArray(int i, String xPath)Sets ith "XPath" element
-
xsetXPathArray
void xsetXPathArray(XmlString[] xPathArray)
Sets (as xml) array of all "XPath" element
-
xsetXPathArray
void xsetXPathArray(int i, XmlString xPath)Sets (as xml) ith "XPath" element
-
insertXPath
void insertXPath(int i, String xPath)Inserts the value as the ith "XPath" element
-
addXPath
void addXPath(String xPath)
Appends the value as the last "XPath" element
-
insertNewXPath
XmlString insertNewXPath(int i)
Inserts and returns a new empty value (as xml) as the ith "XPath" element
-
addNewXPath
XmlString addNewXPath()
Appends and returns a new empty value (as xml) as the last "XPath" element
-
removeXPath
void removeXPath(int i)
Removes the ith "XPath" element
-
getAlgorithm
String getAlgorithm()
Gets the "Algorithm" attribute
-
xgetAlgorithm
XmlAnyURI xgetAlgorithm()
Gets (as xml) the "Algorithm" attribute
-
setAlgorithm
void setAlgorithm(String algorithm)
Sets the "Algorithm" attribute
-
xsetAlgorithm
void xsetAlgorithm(XmlAnyURI algorithm)
Sets (as xml) the "Algorithm" attribute
-
-