Enum BarcodeDependencyCheck
-
- All Implemented Interfaces:
-
io.scanbot.sdk.di.RequiredDependency
,java.io.Serializable
,kotlin.Comparable
public enum BarcodeDependencyCheck extends Enum<BarcodeDependencyCheck> implements RequiredDependency
-
-
Field Summary
Fields Modifier and Type Field Description private final String
assetModuleAnchorClassName
private final String
assetModuleAnchorClassPackageName
private final Function0<GradleDependencyException>
exceptionFactory
-
Enum Constant Summary
Enum Constants Enum Constant Description PDFIUM_IMAGES
-
Method Summary
Modifier and Type Method Description final BarcodeDependencyCheck
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<BarcodeDependencyCheck>
values()
Returns an array containing the constants of this enum type, in the order they're declared. String
getAssetModuleAnchorClassName()
Class name for *.java
-class in asset module that is used to check if module is at all added.String
getAssetModuleAnchorClassPackageName()
Package of the *.java
-class in asset module that is used to check if module is at all added.Function0<GradleDependencyException>
getExceptionFactory()
Produce the exception that will be thrown when check fails.
-
-
-
Method Detail
-
valueOf
final BarcodeDependencyCheck valueOf(String value)
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.)
-
values
final Array<BarcodeDependencyCheck> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getAssetModuleAnchorClassName
String getAssetModuleAnchorClassName()
Class name for
*.java
-class in asset module that is used to check if module is at all added.
-
getAssetModuleAnchorClassPackageName
String getAssetModuleAnchorClassPackageName()
Package of the
*.java
-class in asset module that is used to check if module is at all added.
-
getExceptionFactory
Function0<GradleDependencyException> getExceptionFactory()
Produce the exception that will be thrown when check fails.
-
-