Package com.sun.xml.xsom
Interface XSFacet
-
- All Superinterfaces:
XSComponent
- All Known Implementing Classes:
FacetImpl
public interface XSFacet extends XSComponent
Facet for a simple type.- Author:
- Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
-
-
Field Summary
Fields Modifier and Type Field Description static StringFACET_ENUMERATIONstatic StringFACET_FRACTIONDIGITSstatic StringFACET_LENGTHstatic StringFACET_MAXEXCLUSIVEstatic StringFACET_MAXINCLUSIVEstatic StringFACET_MAXLENGTHstatic StringFACET_MINEXCLUSIVEstatic StringFACET_MININCLUSIVEstatic StringFACET_MINLENGTHstatic StringFACET_PATTERNstatic StringFACET_TOTALDIGITSstatic StringFACET_WHITESPACE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Gets the name of the facet, such as "length".XmlStringgetValue()Gets the value of the facet.booleanisFixed()Returns true if this facet is "fixed".-
Methods inherited from interface com.sun.xml.xsom.XSComponent
apply, getAnnotation, getAnnotation, getForeignAttribute, getForeignAttributes, getLocator, getOwnerSchema, getRoot, getSourceDocument, select, selectSingle, visit
-
-
-
-
Field Detail
-
FACET_LENGTH
static final String FACET_LENGTH
- See Also:
- Constant Field Values
-
FACET_MINLENGTH
static final String FACET_MINLENGTH
- See Also:
- Constant Field Values
-
FACET_MAXLENGTH
static final String FACET_MAXLENGTH
- See Also:
- Constant Field Values
-
FACET_PATTERN
static final String FACET_PATTERN
- See Also:
- Constant Field Values
-
FACET_ENUMERATION
static final String FACET_ENUMERATION
- See Also:
- Constant Field Values
-
FACET_TOTALDIGITS
static final String FACET_TOTALDIGITS
- See Also:
- Constant Field Values
-
FACET_FRACTIONDIGITS
static final String FACET_FRACTIONDIGITS
- See Also:
- Constant Field Values
-
FACET_MININCLUSIVE
static final String FACET_MININCLUSIVE
- See Also:
- Constant Field Values
-
FACET_MAXINCLUSIVE
static final String FACET_MAXINCLUSIVE
- See Also:
- Constant Field Values
-
FACET_MINEXCLUSIVE
static final String FACET_MINEXCLUSIVE
- See Also:
- Constant Field Values
-
FACET_MAXEXCLUSIVE
static final String FACET_MAXEXCLUSIVE
- See Also:
- Constant Field Values
-
FACET_WHITESPACE
static final String FACET_WHITESPACE
- See Also:
- Constant Field Values
-
-