org.sonar.api.resources
Enum Project.AnalysisType

java.lang.Object
  extended by java.lang.Enum<Project.AnalysisType>
      extended by org.sonar.api.resources.Project.AnalysisType
All Implemented Interfaces:
Serializable, Comparable<Project.AnalysisType>
Enclosing class:
Project

public static enum Project.AnalysisType
extends Enum<Project.AnalysisType>

Enumerates the type of possible analysis


Enum Constant Summary
DYNAMIC
           
REUSE_REPORTS
           
STATIC
           
 
Method Summary
 boolean isDynamic(boolean includeReuseReportMode)
           
static Project.AnalysisType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Project.AnalysisType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

STATIC

public static final Project.AnalysisType STATIC

DYNAMIC

public static final Project.AnalysisType DYNAMIC

REUSE_REPORTS

public static final Project.AnalysisType REUSE_REPORTS
Method Detail

values

public static Project.AnalysisType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Project.AnalysisType c : Project.AnalysisType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Project.AnalysisType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

isDynamic

public boolean isDynamic(boolean includeReuseReportMode)
Parameters:
includeReuseReportMode - whether to count report reuse as dynamic or not
Returns:
whether this a dynamic analysis


Copyright © 2009-2014 SonarSource. All Rights Reserved.