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

com.github.misterreg.mavenplugins.buildgraph.EBuildResult Maven / Gradle / Ivy

The newest version!
package com.github.misterreg.mavenplugins.buildgraph;

public enum EBuildResult {
  SUCCESS ("DDFFDD"), 
  FAILURE ("FFDDDD"), 
  NOT_STARTED ("FFFFFF");
  
  private String htmlColor;
  private EBuildResult(String htmlColor) {
    this.htmlColor = htmlColor;
  }
  
  public String getHtmlColor () {
    return htmlColor;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy