FileDocCategorySizeDatePackage
Field.javaAPI DocApache Xerces 3.0.110880Fri Sep 14 20:33:54 BST 2007org.apache.xerces.impl.xs.identity

Field

public class Field extends Object
Schema identity constraint field.
xerces.internal
author
Andy Clark, IBM
version
$Id: Field.java 572110 2007-09-02 19:04:44Z mrglavas $

Fields Summary
protected final XPath
fXPath
Field XPath.
protected final IdentityConstraint
fIdentityConstraint
Identity constraint.
Constructors Summary
public Field(XPath xpath, IdentityConstraint identityConstraint)
Constructs a field.

        fXPath = xpath;
        fIdentityConstraint = identityConstraint;
    
Methods Summary
public XPathMatchercreateMatcher(ValueStore store)
Creates a field matcher.

        return new Field.Matcher(fXPath, store);
    
public IdentityConstraintgetIdentityConstraint()
Returns the identity constraint.

        return fIdentityConstraint;
    
public org.apache.xerces.impl.xpath.XPathgetXPath()
Returns the field XPath.

        return fXPath;
    
public java.lang.StringtoString()
Returns a string representation of this object.

        return fXPath.toString();