public enum CallGraphAlgorithmMode extends Enum<CallGraphAlgorithmMode>
| Enum Constant and Description |
|---|
Application |
Library |
LibraryWithSignatureResolution |
| Modifier and Type | Method and Description |
|---|---|
static CallGraphAlgorithmMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallGraphAlgorithmMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallGraphAlgorithmMode Application
public static final CallGraphAlgorithmMode Library
public static final CallGraphAlgorithmMode LibraryWithSignatureResolution
public static CallGraphAlgorithmMode[] values()
for (CallGraphAlgorithmMode c : CallGraphAlgorithmMode.values()) System.out.println(c);
public static CallGraphAlgorithmMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.