congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
RedisZSetCommands$Range$Boundary.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.springframework.data.redis.connection.RedisZSetCommands$Range$Boundary
constructor

Best Java code snippets using org.springframework.data.redis.connection.RedisZSetCommands$Range$Boundary.<init> (Showing top 15 results out of 315)

origin: spring-projects/spring-data-redis

/**
 * Greater Than Equals
 *
 * @param min must not be {@literal null}.
 * @return this.
 */
public Range gte(Object min) {
  Assert.notNull(min, "Min already set for range.");
  this.min = new Boundary(min, true);
  return this;
}
origin: spring-projects/spring-data-redis

/**
 * Less Then Equals
 *
 * @param max must not be {@literal null}.
 * @return this.
 */
public Range lte(Object max) {
  Assert.notNull(max, "Max already set for range.");
  this.max = new Boundary(max, true);
  return this;
}
origin: spring-projects/spring-data-redis

/**
 * Less Than
 *
 * @param max must not be {@literal null}.
 * @return this.
 */
public Range lt(Object max) {
  Assert.notNull(max, "Max already set for range.");
  this.max = new Boundary(max, false);
  return this;
}
origin: apache/servicemix-bundles

static Boundary infinite() {
  return new Boundary(null, true);
}
origin: apache/servicemix-bundles

/**
 * Greater Than Equals
 *
 * @param min must not be {@literal null}.
 * @return this.
 */
public Range gte(Object min) {
  Assert.notNull(min, "Min already set for range.");
  this.min = new Boundary(min, true);
  return this;
}
origin: org.springframework.data/spring-data-redis

static Boundary infinite() {
  return new Boundary(null, true);
}
origin: apache/servicemix-bundles

/**
 * Less Then Equals
 *
 * @param max must not be {@literal null}.
 * @return this.
 */
public Range lte(Object max) {
  Assert.notNull(max, "Max already set for range.");
  this.max = new Boundary(max, true);
  return this;
}
origin: org.springframework.data/spring-data-redis

/**
 * Less Than
 *
 * @param max must not be {@literal null}.
 * @return this.
 */
public Range lt(Object max) {
  Assert.notNull(max, "Max already set for range.");
  this.max = new Boundary(max, false);
  return this;
}
origin: org.springframework.data/spring-data-redis

/**
 * Greater Than
 *
 * @param min must not be {@literal null}.
 * @return this.
 */
public Range gt(Object min) {
  Assert.notNull(min, "Min already set for range.");
  this.min = new Boundary(min, false);
  return this;
}
origin: apache/servicemix-bundles

/**
 * Less Than
 *
 * @param max must not be {@literal null}.
 * @return this.
 */
public Range lt(Object max) {
  Assert.notNull(max, "Max already set for range.");
  this.max = new Boundary(max, false);
  return this;
}
origin: apache/servicemix-bundles

/**
 * Greater Than
 *
 * @param min must not be {@literal null}.
 * @return this.
 */
public Range gt(Object min) {
  Assert.notNull(min, "Min already set for range.");
  this.min = new Boundary(min, false);
  return this;
}
origin: org.springframework.data/spring-data-redis

/**
 * Greater Than Equals
 *
 * @param min must not be {@literal null}.
 * @return this.
 */
public Range gte(Object min) {
  Assert.notNull(min, "Min already set for range.");
  this.min = new Boundary(min, true);
  return this;
}
origin: org.springframework.data/spring-data-redis

/**
 * Less Then Equals
 *
 * @param max must not be {@literal null}.
 * @return this.
 */
public Range lte(Object max) {
  Assert.notNull(max, "Max already set for range.");
  this.max = new Boundary(max, true);
  return this;
}
origin: spring-projects/spring-data-redis

static Boundary infinite() {
  return new Boundary(null, true);
}
origin: spring-projects/spring-data-redis

/**
 * Greater Than
 *
 * @param min must not be {@literal null}.
 * @return this.
 */
public Range gt(Object min) {
  Assert.notNull(min, "Min already set for range.");
  this.min = new Boundary(min, false);
  return this;
}
org.springframework.data.redis.connectionRedisZSetCommands$Range$Boundary<init>

Popular methods of RedisZSetCommands$Range$Boundary

  • getValue
  • isIncluding
  • infinite

Popular in Java

  • Reactive rest calls using spring rest template
  • setRequestProperty (URLConnection)
  • requestLocationUpdates (LocationManager)
  • getSharedPreferences (Context)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • ImageIO (javax.imageio)
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top 17 Plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now