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

com.twitter.util.lint.Category.scala Maven / Gradle / Ivy

There is a newer version: 21.2.0
Show newest version
package com.twitter.util.lint

/**
 * Used to indicate the broad category a lint [[Rule]] belongs to.
 */
sealed trait Category

object Category {

  /**
   * Indicative of a possible performance issue.
   */
  case object Performance extends Category

  /**
   * Indicative of a possible configuration issue.
   */
  case object Configuration extends Category

  /**
   * Indicative of a runtime failure.
   */
  case object Runtime extends Category
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy