protected static enum SourceLocator.ClassSourceType extends Enum<SourceLocator.ClassSourceType>
| Enum Constant and Description |
|---|
apk |
dex |
directory |
jar |
jrt |
unknown |
zip |
| Modifier and Type | Method and Description |
|---|---|
static SourceLocator.ClassSourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourceLocator.ClassSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceLocator.ClassSourceType jar
public static final SourceLocator.ClassSourceType zip
public static final SourceLocator.ClassSourceType apk
public static final SourceLocator.ClassSourceType dex
public static final SourceLocator.ClassSourceType directory
public static final SourceLocator.ClassSourceType jrt
public static final SourceLocator.ClassSourceType unknown
public static SourceLocator.ClassSourceType[] values()
for (SourceLocator.ClassSourceType c : SourceLocator.ClassSourceType.values()) System.out.println(c);
public static SourceLocator.ClassSourceType 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 © 2020 Soot OSS. All rights reserved.