org.hibernate.search.elasticsearch.cfg.ElasticsearchIndexStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-search-elasticsearch Show documentation
Show all versions of hibernate-search-elasticsearch Show documentation
Hibernate Search backend which has indexing operations forwarded to Elasticsearch
/*
* Hibernate Search, full-text search for your domain model
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.search.elasticsearch.cfg;
import org.hibernate.search.elasticsearch.logging.impl.Log;
import org.hibernate.search.util.logging.impl.LoggerFactory;
import java.lang.invoke.MethodHandles;
public enum ElasticsearchIndexStatus {
GREEN("green"),
YELLOW("yellow"),
RED("red");
private static final Log LOG = LoggerFactory.make( Log.class, MethodHandles.lookup() );
private final String elasticsearchString;
private ElasticsearchIndexStatus(String elasticsearchString) {
this.elasticsearchString = elasticsearchString;
}
public String getElasticsearchString() {
return elasticsearchString;
}
public static ElasticsearchIndexStatus fromString(String status) {
for ( ElasticsearchIndexStatus indexStatus : ElasticsearchIndexStatus.values() ) {
if ( indexStatus.getElasticsearchString().equalsIgnoreCase( status ) ) {
return indexStatus;
}
}
throw LOG.unexpectedIndexStatusString( status );
}
}