Class ConvertTypeOptions
- java.lang.Object
-
- com.strobel.decompiler.languages.java.ast.ConvertTypeOptions
-
public final class ConvertTypeOptions extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private boolean_addImportsprivate boolean_allowWildcardsprivate boolean_includeIntersectionTypesprivate boolean_includePackageprivate boolean_includeTypeArgumentsprivate boolean_includeTypeParameterDefinitionsprivate boolean_includeUnionTypes
-
Constructor Summary
Constructors Constructor Description ConvertTypeOptions()ConvertTypeOptions(boolean includePackage, boolean includeTypeParameterDefinitions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetAddImports()booleangetAllowWildcards()booleangetIncludeIntersectionTypes()booleangetIncludePackage()booleangetIncludeTypeArguments()booleangetIncludeTypeParameterDefinitions()booleangetIncludeUnionTypes()voidsetAddImports(boolean addImports)voidsetAllowWildcards(boolean allowWildcards)voidsetIncludeIntersectionTypes(boolean includeIntersectionTypes)voidsetIncludePackage(boolean value)voidsetIncludeTypeArguments(boolean includeTypeArguments)voidsetIncludeTypeParameterDefinitions(boolean value)voidsetIncludeUnionTypes(boolean includeUnionTypes)
-
-
-
Field Detail
-
_includePackage
private boolean _includePackage
-
_includeTypeArguments
private boolean _includeTypeArguments
-
_includeTypeParameterDefinitions
private boolean _includeTypeParameterDefinitions
-
_includeIntersectionTypes
private boolean _includeIntersectionTypes
-
_includeUnionTypes
private boolean _includeUnionTypes
-
_allowWildcards
private boolean _allowWildcards
-
_addImports
private boolean _addImports
-
-
Method Detail
-
getIncludePackage
public boolean getIncludePackage()
-
setIncludePackage
public void setIncludePackage(boolean value)
-
getIncludeTypeParameterDefinitions
public boolean getIncludeTypeParameterDefinitions()
-
setIncludeTypeParameterDefinitions
public void setIncludeTypeParameterDefinitions(boolean value)
-
getIncludeIntersectionTypes
public boolean getIncludeIntersectionTypes()
-
setIncludeIntersectionTypes
public void setIncludeIntersectionTypes(boolean includeIntersectionTypes)
-
getIncludeUnionTypes
public boolean getIncludeUnionTypes()
-
setIncludeUnionTypes
public void setIncludeUnionTypes(boolean includeUnionTypes)
-
getAllowWildcards
public boolean getAllowWildcards()
-
setAllowWildcards
public void setAllowWildcards(boolean allowWildcards)
-
getIncludeTypeArguments
public boolean getIncludeTypeArguments()
-
setIncludeTypeArguments
public void setIncludeTypeArguments(boolean includeTypeArguments)
-
getAddImports
public boolean getAddImports()
-
setAddImports
public void setAddImports(boolean addImports)
-
-