public static enum Metric.Level extends Enum<Metric.Level>
| Modifier and Type | Method and Description | 
|---|---|
| String | getColorName() | 
| static List<String> | names() | 
| static Metric.Level | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Metric.Level[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Metric.Level OK
public static final Metric.Level WARN
public static final Metric.Level ERROR
public static Metric.Level[] values()
for (Metric.Level c : Metric.Level.values()) System.out.println(c);
public static Metric.Level valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getColorName()
Copyright © 2009–2016 SonarSource. All rights reserved.