Skip to content

Commit

Permalink
WIP: Use Enum type instead of strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
marchof committed Apr 16, 2021
1 parent f632c21 commit 7f1d707
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions jacoco-maven-plugin/src/org/jacoco/maven/ReportFormat.java
@@ -0,0 +1,35 @@
/*******************************************************************************
* Copyright (c) 2009, 2021 Mountainminds GmbH & Co. KG and Contributors
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Marc R. Hoffmann - initial API and implementation
*
*******************************************************************************/
package org.jacoco.maven;

/**
* Configurable output formats for the report goals.
*/
public enum ReportFormat {

/**
* Multi-page html report.
*/
HTML,

/**
* Single-file XML report.
*/
XML,

/**
* Single-file CSV report.
*/
CSV

}

0 comments on commit 7f1d707

Please sign in to comment.