Java 类org.apache.lucene.util.NamedSPILoader 实例源码

项目:lams    文件:Codec.java   
/**
 * Creates a new codec.
 * <p>
 * The provided name will be written into the index segment: in order to
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected Codec(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:lams    文件:PostingsFormat.java   
/**
 * Creates a new postings format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@link PerFieldPostingsFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected PostingsFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:lams    文件:DocValuesFormat.java   
/**
 * Creates a new docvalues format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@code PerFieldDocValuesFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected DocValuesFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:search    文件:Codec.java   
/**
 * Creates a new codec.
 * <p>
 * The provided name will be written into the index segment: in order to
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected Codec(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:search    文件:PostingsFormat.java   
/**
 * Creates a new postings format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@link PerFieldPostingsFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected PostingsFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:search    文件:DocValuesFormat.java   
/**
 * Creates a new docvalues format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@code PerFieldDocValuesFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected DocValuesFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:NYBC    文件:Codec.java   
/**
 * Creates a new codec.
 * <p>
 * The provided name will be written into the index segment: in order to
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected Codec(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:NYBC    文件:PostingsFormat.java   
/**
 * Creates a new postings format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@link PerFieldPostingsFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected PostingsFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:NYBC    文件:DocValuesFormat.java   
/**
 * Creates a new docvalues format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@code PerFieldDocValuesFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected DocValuesFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:read-open-source-code    文件:Codec.java   
/**
 * Creates a new codec.
 * <p>
 * The provided name will be written into the index segment: in order to
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected Codec(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:read-open-source-code    文件:PostingsFormat.java   
/**
 * Creates a new postings format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@link PerFieldPostingsFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected PostingsFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:read-open-source-code    文件:DocValuesFormat.java   
/**
 * Creates a new docvalues format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@code PerFieldDocValuesFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected DocValuesFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:read-open-source-code    文件:Codec.java   
/**
 * Creates a new codec.
 * <p>
 * The provided name will be written into the index segment: in order to
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected Codec(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:read-open-source-code    文件:PostingsFormat.java   
/**
 * Creates a new postings format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@link PerFieldPostingsFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected PostingsFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:read-open-source-code    文件:DocValuesFormat.java   
/**
 * Creates a new docvalues format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@code PerFieldDocValuesFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected DocValuesFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:read-open-source-code    文件:Codec.java   
/**
 * Creates a new codec.
 * <p>
 * The provided name will be written into the index segment: in order to
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected Codec(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:read-open-source-code    文件:PostingsFormat.java   
/**
 * Creates a new postings format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@link PerFieldPostingsFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected PostingsFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:read-open-source-code    文件:DocValuesFormat.java   
/**
 * Creates a new docvalues format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@code PerFieldDocValuesFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected DocValuesFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:Maskana-Gestor-de-Conocimiento    文件:Codec.java   
/**
 * Creates a new codec.
 * <p>
 * The provided name will be written into the index segment: in order to
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected Codec(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:Maskana-Gestor-de-Conocimiento    文件:PostingsFormat.java   
/**
 * Creates a new postings format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@link PerFieldPostingsFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected PostingsFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}
项目:Maskana-Gestor-de-Conocimiento    文件:DocValuesFormat.java   
/**
 * Creates a new docvalues format.
 * <p>
 * The provided name will be written into the index segment in some configurations
 * (such as when using {@code PerFieldDocValuesFormat}): in such configurations,
 * for the segment to be read this class should be registered with Java's
 * SPI mechanism (registered in META-INF/ of your jar file, etc).
 * @param name must be all ascii alphanumeric, and less than 128 characters in length.
 */
protected DocValuesFormat(String name) {
  NamedSPILoader.checkServiceName(name);
  this.name = name;
}