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

com.vwo.enums.VWOEnums Maven / Gradle / Ivy

There is a newer version: 1.66.0
Show newest version
package com.vwo.enums;

public class VWOEnums {

  public enum LOGGER_LEVEL {
    TRACE("trace"),
    DEBUG("debug"),
    INFO("info"),
    WARN("warn"),
    ERROR("error");

    private final String level;

    LOGGER_LEVEL(String level) {
      this.level = level;
    }

    public String value() {
      return this.level;
    }
  }
}







© 2015 - 2025 Weber Informatics LLC | Privacy Policy