Package com.getkeepsafe.dexcount
Class PrintOptions
- java.lang.Object
-
- com.getkeepsafe.dexcount.PrintOptions
-
- All Implemented Interfaces:
Serializable
public abstract class PrintOptions extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPrintOptions.Builder
-
Constructor Summary
Constructors Constructor Description PrintOptions()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static PrintOptions.Builderbuilder()static PrintOptionsfromDexCountExtension(DexCountExtension ext)abstract booleangetIncludeClassCount()abstract booleangetIncludeClasses()abstract booleangetIncludeFieldCount()abstract booleangetIncludeMethodCount()abstract booleangetIncludeTotalMethodCount()abstract intgetMaxMethodCount()abstract intgetMaxTreeDepth()abstract booleangetOrderByMethodCount()abstract OutputFormatgetOutputFormat()abstract booleangetPrintDeclarations()abstract booleangetPrintHeader()abstract booleangetTeamCityIntegration()abstract StringgetTeamCitySlug()abstract booleanisAndroidProject()abstract booleanisVerbose()abstract PrintOptions.BuildertoBuilder()PrintOptionswithIsAndroidProject(boolean isAndroidProject)
-
-
-
Constructor Detail
-
PrintOptions
public PrintOptions()
-
-
Method Detail
-
getIncludeClasses
public abstract boolean getIncludeClasses()
-
getIncludeClassCount
public abstract boolean getIncludeClassCount()
-
getIncludeMethodCount
public abstract boolean getIncludeMethodCount()
-
getIncludeFieldCount
public abstract boolean getIncludeFieldCount()
-
getIncludeTotalMethodCount
public abstract boolean getIncludeTotalMethodCount()
-
getTeamCityIntegration
public abstract boolean getTeamCityIntegration()
-
getTeamCitySlug
@Nullable public abstract String getTeamCitySlug()
-
getPrintHeader
public abstract boolean getPrintHeader()
-
getOrderByMethodCount
public abstract boolean getOrderByMethodCount()
-
getMaxTreeDepth
public abstract int getMaxTreeDepth()
-
getMaxMethodCount
public abstract int getMaxMethodCount()
-
getPrintDeclarations
public abstract boolean getPrintDeclarations()
-
isAndroidProject
public abstract boolean isAndroidProject()
-
isVerbose
public abstract boolean isVerbose()
-
getOutputFormat
public abstract OutputFormat getOutputFormat()
-
toBuilder
public abstract PrintOptions.Builder toBuilder()
-
withIsAndroidProject
public PrintOptions withIsAndroidProject(boolean isAndroidProject)
-
builder
public static PrintOptions.Builder builder()
-
fromDexCountExtension
public static PrintOptions fromDexCountExtension(DexCountExtension ext)
-
-