public enum SonarQubeSide extends Enum<SonarQubeSide>
SonarRuntime.getSonarQubeSide()| Enum Constant and Description | 
|---|
| COMPUTE_ENGINE | 
| SCANNER | 
| SERVER | 
| Modifier and Type | Method and Description | 
|---|---|
| static SonarQubeSide | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SonarQubeSide[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SonarQubeSide SCANNER
public static final SonarQubeSide SERVER
public static final SonarQubeSide COMPUTE_ENGINE
public static SonarQubeSide[] values()
for (SonarQubeSide c : SonarQubeSide.values()) System.out.println(c);
public static SonarQubeSide 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 nullCopyright © 2009–2016 SonarSource. All rights reserved.