Interface XSRestrictionSimpleType

All Superinterfaces:
XSComponent, XSContentType, XSDeclaration, XSSimpleType, XSType
All Known Implementing Classes:
RestrictionSimpleTypeImpl, SchemaSetImpl.AnySimpleType

public interface XSRestrictionSimpleType extends XSSimpleType
Restriction simple type.
Author:
Kohsuke Kawaguchi ([email protected])
  • Method Details

    • iterateDeclaredFacets

      Iterator<XSFacet> iterateDeclaredFacets()
      Iterates facets that are specified in this step of derivation.
    • getDeclaredFacets

      Collection<? extends XSFacet> getDeclaredFacets()
      Gets all the facets that are declared on this restriction.
      Returns:
      Can be empty but always non-null.
    • getDeclaredFacet

      XSFacet getDeclaredFacet(String name)
      Gets the declared facet object of the given name.

      This method returns a facet object that is added in this type and does not recursively check the ancestors.

      For those facets that can have multiple values (pattern facets and enumeration facets), this method will return only the first one.

      Returns:
      Null if the facet is not specified in the last step of derivation.
    • getDeclaredFacets

      List<XSFacet> getDeclaredFacets(String name)
      Gets the declared facets of the given name. This method is for those facets (such as 'pattern') that can be specified multiple times on a simple type.
      Returns:
      can be empty but never be null.