soot.jimple.toolkits.reflection
Enum ReflectionTraceInfo.Kind

java.lang.Object
  extended by java.lang.Enum<ReflectionTraceInfo.Kind>
      extended by soot.jimple.toolkits.reflection.ReflectionTraceInfo.Kind
All Implemented Interfaces:
Serializable, Comparable<ReflectionTraceInfo.Kind>
Enclosing class:
ReflectionTraceInfo

public static enum ReflectionTraceInfo.Kind
extends Enum<ReflectionTraceInfo.Kind>


Enum Constant Summary
ClassForName
           
ClassNewInstance
           
ConstructorNewInstance
           
FieldGet
           
FieldSet
           
MethodInvoke
           
 
Method Summary
static ReflectionTraceInfo.Kind valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ReflectionTraceInfo.Kind[] 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

ClassForName

public static final ReflectionTraceInfo.Kind ClassForName

ClassNewInstance

public static final ReflectionTraceInfo.Kind ClassNewInstance

ConstructorNewInstance

public static final ReflectionTraceInfo.Kind ConstructorNewInstance

MethodInvoke

public static final ReflectionTraceInfo.Kind MethodInvoke

FieldSet

public static final ReflectionTraceInfo.Kind FieldSet

FieldGet

public static final ReflectionTraceInfo.Kind FieldGet
Method Detail

values

public static ReflectionTraceInfo.Kind[] 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 (ReflectionTraceInfo.Kind c : ReflectionTraceInfo.Kind.values())
    System.out.println(c);

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

valueOf

public static ReflectionTraceInfo.Kind 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