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

Deprecated. since 4.4 Since 4.3 SQ will no more run tests. So basically it's always reuse report.

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

Enumerates the type of possible analysis


Enum Constant Summary
DYNAMIC
          Deprecated.  
REUSE_REPORTS
          Deprecated.  
STATIC
          Deprecated.  
 
Method Summary
 boolean isDynamic(boolean includeReuseReportMode)
          Deprecated.  
static Project.AnalysisType valueOf(String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static Project.AnalysisType[] values()
          Deprecated. 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
Deprecated. 

DYNAMIC

public static final Project.AnalysisType DYNAMIC
Deprecated. 

REUSE_REPORTS

public static final Project.AnalysisType REUSE_REPORTS
Deprecated. 
Method Detail

values

public static Project.AnalysisType[] values()
Deprecated. 
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)
Deprecated. 
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)
Deprecated. 
Parameters:
includeReuseReportMode - whether to count report reuse as dynamic or not
Returns:
whether this a dynamic analysis


Copyright © 2009–2014 SonarSource. All rights reserved.