OneDExtendedParameters

OneDExtendedParameters class

Module: aspose_barcode.recognition.one_d_extended_parameters

Stores special data of 1D recognized barcode like separate codetext and checksum. This sample shows how to get 1D barcode value and checksum

Constructors

NameDescription
init

Methods

NameReturn TypeStaticDescription
eqboolNoReturns a value indicating whether this instance is equal to a specified OneDExtendedParameters value.
hashintNoReturns the hash code for the current instance.
strstrNoReturns a human-readable string representation of this OneDExtendedParameters.
checksumOptional[str]No
is_emptyboolNo
valueOptional[str]No

OneDExtendedParameters Constructor

__init__(self, _java_class) -> def
ParameterTypeDescription
_java_class``

OneDExtendedParameters.eq

__eq__(self, OneDExtendedParameters other) -> bool

Returns a value indicating whether this instance is equal to a specified OneDExtendedParameters value.

ParameterTypeDescription
otherOneDExtendedParameters

Return Type: bool — True if obj has the same value as this instance, otherwise False.

OneDExtendedParameters.hash

__hash__(self) -> int

Returns the hash code for the current instance.

Return Type: int — A hash code for the current object.

OneDExtendedParameters.str

__str__(self) -> str

Returns a human-readable string representation of this OneDExtendedParameters.

Return Type: str — A string that represents this OneDExtendedParameters.

OneDExtendedParameters.checksum

checksum(self) -> Optional[str]

Return Type: Optional[str]

OneDExtendedParameters.is_empty

is_empty(self) -> bool

Return Type: bool

OneDExtendedParameters.value

value(self) -> Optional[str]

Return Type: Optional[str]