Package sootup.core.util.printer
Enum JimplePrinter.Option
- All Implemented Interfaces:
Serializable
,Comparable<JimplePrinter.Option>
,java.lang.constant.Constable
- Enclosing class:
- JimplePrinter
Options to control.. UseAbbreviations: print a brief overview of the given SootClass|SootMethod
OmitLocalsDeclaration: don't print Local declarations at the beginning of each method
AddJimpleLn: unsupported yet UseImports: Enable Java like imports to improve readability by
shortening the Signatures LegacyMode: Print Jimple like it was printed in old Soot (<=
Version 4) Deterministic: print interfaces, fields and methods in a deterministic order
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic JimplePrinter.Option
Returns the enum constant of this type with the specified name.static JimplePrinter.Option[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UseAbbreviations
-
OmitLocalsDeclaration
-
AddJimpleLn
-
UseImports
-
LegacyMode
-
Deterministic
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-