Tabnine Logo
EvaluatedQualityGate.hasIgnoredConditionsOnSmallChangeset
Code IndexAdd Tabnine to your IDE (free)

How to use
hasIgnoredConditionsOnSmallChangeset
method
in
org.sonar.server.qualitygate.EvaluatedQualityGate

Best Java code snippets using org.sonar.server.qualitygate.EvaluatedQualityGate.hasIgnoredConditionsOnSmallChangeset (Showing top 2 results out of 315)

origin: SonarSource/sonarqube

public static String toJson(EvaluatedQualityGate gate) {
 JsonObject details = new JsonObject();
 details.addProperty(FIELD_LEVEL, gate.getStatus().name());
 JsonArray conditionResults = new JsonArray();
 for (EvaluatedCondition condition : gate.getEvaluatedConditions()) {
  conditionResults.add(toJson(condition));
 }
 details.add("conditions", conditionResults);
 details.addProperty(FIELD_IGNORED_CONDITIONS, gate.hasIgnoredConditionsOnSmallChangeset());
 return details.toString();
}
origin: org.sonarsource.sonarqube/sonar-server

public static String toJson(EvaluatedQualityGate gate) {
 JsonObject details = new JsonObject();
 details.addProperty(FIELD_LEVEL, gate.getStatus().name());
 JsonArray conditionResults = new JsonArray();
 for (EvaluatedCondition condition : gate.getEvaluatedConditions()) {
  conditionResults.add(toJson(condition));
 }
 details.add("conditions", conditionResults);
 details.addProperty(FIELD_IGNORED_CONDITIONS, gate.hasIgnoredConditionsOnSmallChangeset());
 return details.toString();
}
org.sonar.server.qualitygateEvaluatedQualityGatehasIgnoredConditionsOnSmallChangeset

Popular methods of EvaluatedQualityGate

  • newBuilder
  • getEvaluatedConditions
  • getStatus
  • getQualityGate
  • <init>
  • hashCode

Popular in Java

  • Start an intent from android
  • getSharedPreferences (Context)
  • setScale (BigDecimal)
  • addToBackStack (FragmentTransaction)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now