Package org.springframework.data.util

Examples of org.springframework.data.util.Version


    this.minVersion = min;
    this.maxVersion = max;
  }

  public static MongoVersionRule any() {
    return new MongoVersionRule(new Version(0, 0, 0), new Version(9999, 9999, 9999));
  }
View Full Code Here


  public static MongoVersionRule any() {
    return new MongoVersionRule(new Version(0, 0, 0), new Version(9999, 9999, 9999));
  }

  public static MongoVersionRule atLeast(Version minVersion) {
    return new MongoVersionRule(minVersion, new Version(9999, 9999, 9999));
  }
View Full Code Here

  public static MongoVersionRule atLeast(Version minVersion) {
    return new MongoVersionRule(minVersion, new Version(9999, 9999, 9999));
  }

  public static MongoVersionRule atMost(Version maxVersion) {
    return new MongoVersionRule(new Version(0, 0, 0), maxVersion);
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.util.Version

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.