QrParameters

Inheritance: java.lang.Object

public class QrParameters

QR parameters.

Methods

MethodDescription
equals(Object arg0)
getAspectRatio()Height/Width ratio of 2D BarCode module.
getClass()
getECIEncoding()Extended Channel Interpretation Identifiers.
getEncodeMode()QR symbology type of BarCode’s encoding mode.
getErrorLevel()Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode.
getMicroQRVersion()Version of MicroQR Code.
getQrECIEncoding()Extended Channel Interpretation Identifiers.
getQrEncodeMode()QR symbology type of BarCode’s encoding mode.
getQrEncodeType()QR / MicroQR selector mode.
getQrErrorLevel()Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode.
getQrVersion()Version of QR Code.From Version1 to Version40.
getRectMicroQrVersion()Version of RectMicroQR Code.
getStructuredAppend()QR structured append parameters.
getVersion()Version of QR Code.From Version1 to Version40.
hashCode()
notify()
notifyAll()
setAspectRatio(float value)Height/Width ratio of 2D BarCode module.
setECIEncoding(int value)Extended Channel Interpretation Identifiers.
setEncodeMode(QREncodeMode value)QR symbology type of BarCode’s encoding mode.
setErrorLevel(QRErrorLevel value)Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode.
setMicroQRVersion(MicroQRVersion value)Version of MicroQR Code.
setQrEncodeType(QREncodeType value)QR / MicroQR selector mode.
setRectMicroQrVersion(RectMicroQRVersion value)Version of RectMicroQR Code.
setStructuredAppend(QrStructuredAppendParameters value)QR structured append parameters.
setVersion(QRVersion value)Version of QR Code.From Version1 to Version40.
toString()Returns a human-readable string representation of this QrParameters.
wait()
wait(long arg0)
wait(long arg0, int arg1)

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getAspectRatio()

public final float getAspectRatio()

Height/Width ratio of 2D BarCode module.

Returns: float

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getECIEncoding()

public final int getECIEncoding()

Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Not supported by MicroQR.

Returns: int

getEncodeMode()

public final QREncodeMode getEncodeMode()

QR symbology type of BarCode’s encoding mode. Default value: QREncodeMode.Auto.

Returns: QREncodeMode

getErrorLevel()

public final QRErrorLevel getErrorLevel()

Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel.

Returns: QRErrorLevel

getMicroQRVersion()

public final MicroQRVersion getMicroQRVersion()

Version of MicroQR Code. From version M1 to version M4. Default value is MicroQRVersion.Auto.

Returns: MicroQRVersion

getQrECIEncoding()

public final int getQrECIEncoding()

Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Not supported by MicroQR.

Returns: int

getQrEncodeMode()

public final QREncodeMode getQrEncodeMode()

QR symbology type of BarCode’s encoding mode. Default value: QREncodeMode.Auto.

Returns: QREncodeMode

getQrEncodeType()

public final QREncodeType getQrEncodeType()

QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR.

Returns: QREncodeType

getQrErrorLevel()

public final QRErrorLevel getQrErrorLevel()

Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel.

Returns: QRErrorLevel

getQrVersion()

public final QRVersion getQrVersion()

Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto.

Returns: QRVersion

getRectMicroQrVersion()

public final RectMicroQRVersion getRectMicroQrVersion()

Version of RectMicroQR Code. From version R7x59 to version R17x139. Default value is RectMicroQRVersion.Auto.

Returns: RectMicroQRVersion

getStructuredAppend()

public final QrStructuredAppendParameters getStructuredAppend()

QR structured append parameters. Structured append mode is not suppported by MicroQR and RectMicroQR barcodes.

Returns: QrStructuredAppendParameters

getVersion()

public final QRVersion getVersion()

Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto.

Returns: QRVersion

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

setAspectRatio(float value)

public final void setAspectRatio(float value)

Height/Width ratio of 2D BarCode module.

Parameters:

ParameterTypeDescription
valuefloat

setECIEncoding(int value)

public final void setECIEncoding(int value)

Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Not supported by MicroQR.

Parameters:

ParameterTypeDescription
valueint

setEncodeMode(QREncodeMode value)

public final void setEncodeMode(QREncodeMode value)

QR symbology type of BarCode’s encoding mode. Default value: QREncodeMode.Auto.

Parameters:

ParameterTypeDescription
valueQREncodeMode

setErrorLevel(QRErrorLevel value)

public final void setErrorLevel(QRErrorLevel value)

Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel.

Parameters:

ParameterTypeDescription
valueQRErrorLevel

setMicroQRVersion(MicroQRVersion value)

public final void setMicroQRVersion(MicroQRVersion value)

Version of MicroQR Code. From version M1 to version M4. Default value is MicroQRVersion.Auto.

Parameters:

ParameterTypeDescription
valueMicroQRVersion

setQrEncodeType(QREncodeType value)

public final void setQrEncodeType(QREncodeType value)

QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR.

Parameters:

ParameterTypeDescription
valueQREncodeType

setRectMicroQrVersion(RectMicroQRVersion value)

public final void setRectMicroQrVersion(RectMicroQRVersion value)

Version of RectMicroQR Code. From version R7x59 to version R17x139. Default value is RectMicroQRVersion.Auto.

Parameters:

ParameterTypeDescription
valueRectMicroQRVersion

setStructuredAppend(QrStructuredAppendParameters value)

public final void setStructuredAppend(QrStructuredAppendParameters value)

QR structured append parameters. Structured append mode is not suppported by MicroQR and RectMicroQR barcodes.

Parameters:

ParameterTypeDescription
valueQrStructuredAppendParameters

setVersion(QRVersion value)

public final void setVersion(QRVersion value)

Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto.

Parameters:

ParameterTypeDescription
valueQRVersion

toString()

public String toString()

Returns a human-readable string representation of this QrParameters.

Returns: java.lang.String - A string that represents this QrParameters.

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int