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

com.algolia.search.models.common.LogType Maven / Gradle / Ivy

There is a newer version: 3.16.9
Show newest version
package com.algolia.search.models.common;

public enum LogType {

  // all query logs
  LOG_QUERY("query"),

  // all build logs
  LOG_BUILD("build"),

  // all error logs
  LOG_ERROR("error"),

  // all logs
  LOG_ALL("all");

  private final String name;

  LogType(String name) {
    this.name = name;
  }

  public String getName() {
    return name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy