Package | dom.validation |
Class | public class ValidationType |
Inheritance | ValidationType Object |
Note: Moved to ValidationType specifically for this documentation. Constants are not allowed in an interface.
See also
Constant | Defined By | ||
---|---|---|---|
DOM 3 Validation VAL_INCOMPLETE : Number = 3 [static]
Check if the node's immediate children are those expected by the content model. | ValidationType | ||
DOM 3 Validation VAL_NS_WF : Number = 2 [static]
Check if the node is namespace well-formed. | ValidationType | ||
DOM 3 Validation VAL_SCHEMA : Number = 4 [static]
Check if the node's entire subtree are those expected by the content model. | ValidationType | ||
DOM 3 Validation VAL_WF : Number = 1 [static]
Check if the node is well-formed. | ValidationType |
DOM 3 Validation VAL_INCOMPLETE | Constant |
public static const VAL_INCOMPLETE:Number = 3
Introduced in: | DOM 3 Validation |
Check if the node's immediate children are those expected by the content model. This node's trailing required children could be missing. It includes VAL_NS_WF.
See also
DOM 3 Validation VAL_NS_WF | Constant |
public static const VAL_NS_WF:Number = 2
Introduced in: | DOM 3 Validation |
Check if the node is namespace well-formed.
See also
DOM 3 Validation VAL_SCHEMA | Constant |
public static const VAL_SCHEMA:Number = 4
Introduced in: | DOM 3 Validation |
Check if the node's entire subtree are those expected by the content model. It includes VAL_NS_WF.
See also
DOM 3 Validation VAL_WF | Constant |
public static const VAL_WF:Number = 1
Introduced in: | DOM 3 Validation |
Check if the node is well-formed.
See also