com.agido.logback.elasticsearch.config.Operation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logback-elasticsearch-appender Show documentation
Show all versions of logback-elasticsearch-appender Show documentation
Send log events directly from Logback to Elasticsearch
The newest version!
package com.agido.logback.elasticsearch.config;
import java.util.Optional;
/**
* @see Bulk API actions
*/
public enum Operation {
index,
create,
update,
delete;
public static Optional of( String value ) {
try {
return Optional.of( valueOf( value ) );
} catch ( IllegalArgumentException ignored ) {
}
return Optional.empty( );
}
}