Package org.sindice.siren.index

Examples of org.sindice.siren.index.LevelConstrainedNodesEnum


      return new SingleIntervalConstrainedNodesEnum(sirenDocsEnum,
        levelConstraint, new int[] { lowerBound, upperBound });
    }
    // if only a level constraint has been set for the current node
    else if (levelConstraint != -1) {
      return new LevelConstrainedNodesEnum(sirenDocsEnum, levelConstraint);
    }
    else {
      return sirenDocsEnum;
    }
View Full Code Here

TOP

Related Classes of org.sindice.siren.index.LevelConstrainedNodesEnum

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.