Package net.sf.saxon.om
Class Validation
- java.lang.Object
-
- net.sf.saxon.om.Validation
-
public final class Validation extends java.lang.Object
This class contains constants and static methods to manipulate the validation property of a type.
-
-
Field Summary
Fields Modifier and Type Field Description static int
BY_TYPE
static int
DEFAULT
static int
INVALID
static int
LAX
static int
PRESERVE
static int
SKIP
static int
STRICT
static int
STRIP
static int
VALIDATE_OUTPUT
static int
VALIDATION_MODE_MASK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
getCode(java.lang.String value)
static java.lang.String
toString(int value)
-
-
-
Field Detail
-
INVALID
public static final int INVALID
- See Also:
- Constant Field Values
-
STRICT
public static final int STRICT
- See Also:
- Constant Field Values
-
LAX
public static final int LAX
- See Also:
- Constant Field Values
-
PRESERVE
public static final int PRESERVE
- See Also:
- Constant Field Values
-
STRIP
public static final int STRIP
- See Also:
- Constant Field Values
-
SKIP
public static final int SKIP
- See Also:
- Constant Field Values
-
DEFAULT
public static final int DEFAULT
- See Also:
- Constant Field Values
-
BY_TYPE
public static final int BY_TYPE
- See Also:
- Constant Field Values
-
VALIDATION_MODE_MASK
public static final int VALIDATION_MODE_MASK
- See Also:
- Constant Field Values
-
VALIDATE_OUTPUT
public static final int VALIDATE_OUTPUT
- See Also:
- Constant Field Values
-
-