org.jenkinsci.plugins.valgrind.model
Enum ValgrindErrorKind

java.lang.Object
  extended by java.lang.Enum<ValgrindErrorKind>
      extended by org.jenkinsci.plugins.valgrind.model.ValgrindErrorKind
All Implemented Interfaces:
Serializable, Comparable<ValgrindErrorKind>

public enum ValgrindErrorKind
extends Enum<ValgrindErrorKind>


Enum Constant Summary
InvalidFree
           
InvalidRead
           
InvalidWrite
           
Leak_DefinitelyLost
           
Leak_IndirectlyLost
           
Leak_PossiblyLost
           
Leak_StillReachable
           
MismatchedFree
           
Overlap
           
SyscallParam
           
UninitCondition
           
UninitValue
           
 
Method Summary
static ValgrindErrorKind valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ValgrindErrorKind[] values()
          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

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
Method Detail

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.