org.jenkinsci.plugins.valgrind.model
Enum ValgrindErrorKind
java.lang.Object
java.lang.Enum<ValgrindErrorKind>
org.jenkinsci.plugins.valgrind.model.ValgrindErrorKind
- All Implemented Interfaces:
- Serializable, Comparable<ValgrindErrorKind>
public enum ValgrindErrorKind
- extends Enum<ValgrindErrorKind>
InvalidRead
public static final ValgrindErrorKind InvalidRead
InvalidWrite
public static final ValgrindErrorKind InvalidWrite
Leak_DefinitelyLost
public static final ValgrindErrorKind Leak_DefinitelyLost
Leak_PossiblyLost
public static final ValgrindErrorKind Leak_PossiblyLost
Leak_StillReachable
public static final ValgrindErrorKind Leak_StillReachable
Leak_IndirectlyLost
public static final ValgrindErrorKind Leak_IndirectlyLost
UninitCondition
public static final ValgrindErrorKind UninitCondition
UninitValue
public static final ValgrindErrorKind UninitValue
Overlap
public static final ValgrindErrorKind Overlap
SyscallParam
public static final ValgrindErrorKind SyscallParam
InvalidFree
public static final ValgrindErrorKind InvalidFree
MismatchedFree
public static final ValgrindErrorKind MismatchedFree
values
public static ValgrindErrorKind[] 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 (ValgrindErrorKind c : ValgrindErrorKind.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ValgrindErrorKind 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
Copyright © 2004-2012. All Rights Reserved.