All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rapleaf.jack.queries.Index Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
package com.rapleaf.jack.queries;

public final class Index {

  private final String name;

  private Index(String name) {
    this.name = name;
  }

  public static Index of(final String name) {
    return new Index(name);
  }

  public String getName() {
    return name;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy