|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.saxonica.schema.Facet
public abstract class Facet
Represents an XML Schema Facet. Most facets are represented by subclasses of this class, the only exception is whiteSpace.
Constructor Summary | |
---|---|
Facet()
|
Method Summary | |
---|---|
void |
checkFacetRestriction(UserSimpleType type,
SimpleType base)
Check that this facet is legal when used on a type derived by restriction |
String |
getMessage()
Get the message to be used when this facet is violated. |
abstract String |
getName()
Returns the name of this Facet |
abstract String |
getValue()
Returns the lexical representation of the value of this facet |
int |
getWhitespaceAction()
Get the whitespace action required by this facet: one of PRESERVE, REPLACE, or COLLAPSE. |
boolean |
isConstraining()
Ask whether this is a constraining facet (as distinct from a pre-lexical facet) |
static boolean |
isFacetName(String name)
Test whether a given string is one of the recognized facet names |
boolean |
isFixed()
Ask whether the facet is defined in the schema with fixed="true" |
boolean |
isNewlyIntroduced(SimpleType base)
Test whether this facet is newly introduced on this type, that is, whether it is absent from the base type |
static Facet |
makeFacet(String name,
String value,
EnterpriseConfiguration config,
NamespaceResolver resolver)
Factory method: creates a new Facet with the given name |
void |
serializeFacet(SchemaModelSerializer serializer)
Serialize this facet |
void |
setFixed(boolean fixed)
Say whether the facet is defined as fixed |
void |
setMessage(String message)
Set the message to be used when this facet is violated. |
abstract boolean |
testAtomicValue(AtomicValue value)
Test whether an atomic value conforms to this facet |
boolean |
testLength(int count)
Test whether the length of a list conforms to this facet. |
boolean |
testListValue(Value value)
Test whether a list value conforms to this facet. |
long |
toLong()
Returns the numeric value of this facet, for facets where this is appropriate |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Facet()
Method Detail |
---|
public void setFixed(boolean fixed)
fixed
- true if the facet is fixedpublic boolean isFixed()
public boolean isConstraining()
public void setMessage(String message)
message
- the message to be usedpublic String getMessage()
public abstract String getName()
public abstract String getValue()
public long toLong() throws NumberFormatException
NumberFormatException
- if the value is not numericpublic void checkFacetRestriction(UserSimpleType type, SimpleType base) throws SchemaException, ValidationException
type
- the type on which the facet is definedbase
- the type from which the restricted type is derived
SchemaException
- if the facet is not legal
ValidationException
public boolean isNewlyIntroduced(SimpleType base)
base
- the base type
public abstract boolean testAtomicValue(AtomicValue value)
value
- the value to be tested
public boolean testListValue(Value value)
value
- the value to be tested
public boolean testLength(int count)
count
- the actual length of the list
public int getWhitespaceAction()
public void serializeFacet(SchemaModelSerializer serializer) throws XPathException
serializer
- receives the content for serialization
XPathException
public static boolean isFacetName(String name)
name
- a candidate facet name, for example "totalDigits"
public static Facet makeFacet(String name, String value, EnterpriseConfiguration config, NamespaceResolver resolver) throws SchemaException
name
- the name of the Facetvalue
- the value of the Facetconfig
- the Saxon configurationresolver
- a namespace resolver used for resolving prefixes in namespace-sensitive enumeration values
SchemaException
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |