org.jacoco.core.analysis
Enum ICoverageNode.ElementType

java.lang.Object
  extended by java.lang.Enum<ICoverageNode.ElementType>
      extended by org.jacoco.core.analysis.ICoverageNode.ElementType
All Implemented Interfaces:
Serializable, Comparable<ICoverageNode.ElementType>
Enclosing interface:
ICoverageNode

public static enum ICoverageNode.ElementType
extends Enum<ICoverageNode.ElementType>

Type of a Java element represented by a ICoverageNode instance.


Enum Constant Summary
BUNDLE
          Bundle of Packages
CLASS
          Class
GROUP
          Logical Group of Bundles
METHOD
          Method
PACKAGE
          Java Package
SOURCEFILE
          Source File
 
Method Summary
static ICoverageNode.ElementType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ICoverageNode.ElementType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

METHOD

public static final ICoverageNode.ElementType METHOD
Method


CLASS

public static final ICoverageNode.ElementType CLASS
Class


SOURCEFILE

public static final ICoverageNode.ElementType SOURCEFILE
Source File


PACKAGE

public static final ICoverageNode.ElementType PACKAGE
Java Package


BUNDLE

public static final ICoverageNode.ElementType BUNDLE
Bundle of Packages


GROUP

public static final ICoverageNode.ElementType GROUP
Logical Group of Bundles

Method Detail

values

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

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

valueOf

public static ICoverageNode.ElementType 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


Copyright © 2009–2024 Mountainminds GmbH & Co. KG. All rights reserved.