com.yourkit.api
Enum ObfuscatorType

java.lang.Object
  extended by java.lang.Enum<ObfuscatorType>
      extended by com.yourkit.api.ObfuscatorType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ObfuscatorType>

public enum ObfuscatorType
extends java.lang.Enum<ObfuscatorType>

Enumeration of supported obfuscators. If profiled application was obfuscated with one of them, original names of classes, fields and methods can be automatically restored if you provide corresponding obfuscation logs.

See Also:
MemorySnapshot.MemorySnapshot(java.io.File, com.yourkit.api.ObfuscatorType, java.io.File)

Enum Constant Summary
NONE
          Obfuscation was not applied
PROGUARD
          ProGuard
RETRO_GUARD
          RetroGuard
YGUARD
          yGuard
ZELIX_KLASSMASTER
          Zelix KlassMaster
 
Method Summary
static ObfuscatorType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ObfuscatorType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final ObfuscatorType NONE
Obfuscation was not applied


RETRO_GUARD

public static final ObfuscatorType RETRO_GUARD
RetroGuard


YGUARD

public static final ObfuscatorType YGUARD
yGuard


PROGUARD

public static final ObfuscatorType PROGUARD
ProGuard


ZELIX_KLASSMASTER

public static final ObfuscatorType ZELIX_KLASSMASTER
Zelix KlassMaster

Method Detail

values

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

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

valueOf

public static ObfuscatorType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2003-2010 YourKit, LLC. All Rights Reserved.