Package net.sourceforge.pmd.cpd
Enum CPD.StatusCode
- java.lang.Object
-
- java.lang.Enum<CPD.StatusCode>
-
- net.sourceforge.pmd.cpd.CPD.StatusCode
-
- All Implemented Interfaces:
Serializable
,Comparable<CPD.StatusCode>
- Enclosing class:
- CPD
@Deprecated public static enum CPD.StatusCode extends Enum<CPD.StatusCode>
Deprecated.This class is to be removed in PMD 7 in favor of a unified PmdCli entry point.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DUPLICATE_CODE_FOUND
Deprecated.ERROR
Deprecated.OK
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description int
toInt()
Deprecated.Returns the exit code as used in CLI.static CPD.StatusCode
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static CPD.StatusCode[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OK
public static final CPD.StatusCode OK
Deprecated.
-
ERROR
public static final CPD.StatusCode ERROR
Deprecated.
-
DUPLICATE_CODE_FOUND
public static final CPD.StatusCode DUPLICATE_CODE_FOUND
Deprecated.
-
-
Method Detail
-
values
public static CPD.StatusCode[] 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 (CPD.StatusCode c : CPD.StatusCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CPD.StatusCode 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 nameNullPointerException
- if the argument is null
-
toInt
public int toInt()
Deprecated.Returns the exit code as used in CLI.
-
-