diff --git a/french/androidjava/_index.md b/french/androidjava/_index.md new file mode 100644 index 000000000..b8fa74716 --- /dev/null +++ b/french/androidjava/_index.md @@ -0,0 +1,18 @@ +--- +title: Aspose.BarCode pour Android via Java +type: docs +weight: 12 +url: /fr/androidjava/ +description: Les références d'API Aspose.BarCode pour Android via Java contiennent des exemples, des extraits de code et la documentation de l'API. Elles fournissent des packages, des classes, des interfaces et d'autres détails d'API. +is_root: true +--- +## Packages +| Package | Description | +| --- | --- | +| [com.aspose.barcode](./com.aspose.barcode) | Ce package contient des classes à usage général pour la génération et le rendu des codes-barres. | +| [com.aspose.barcode.barcoderecognition](./com.aspose.barcode.barcoderecognition) | Ce package contient des outils pour la reconnaissance des codes-barres 1D/2D. | +| [com.aspose.barcode.complexbarcode](./com.aspose.barcode.complexbarcode) | Ce package contient des outils pour le traitement des codes-barres complexes. | +| [com.aspose.barcode.component.barcodescanner](./com.aspose.barcode.component.barcodescanner) | | +| [com.aspose.barcode.component.barcodescanner.recognitionareaview](./com.aspose.barcode.component.barcodescanner.recognitionareaview) | | +| [com.aspose.barcode.generation](./com.aspose.barcode.generation) | Ce package contient des outils pour la génération de codes-barres. | +| [com.aspose.barcode.metered](./com.aspose.barcode.metered) | Ce package fournit les fonctionnalités liées au service de facturation au compteur. | diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/_index.md new file mode 100644 index 000000000..e027d79d9 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/_index.md @@ -0,0 +1,75 @@ +--- +title: com.aspose.barcode.barcoderecognition +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Ce package contient des outils pour la reconnaissance des codes-barres 1D/2D. +type: docs +weight: 11 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/ +--- + +Ce package contient des outils pour la reconnaissance des codes-barres 1D/2D. + + +## Classes + +| Classe | Description | +| --- | --- | +| [AustraliaPostSettings](../com.aspose.barcode.barcoderecognition/australiapostsettings) | Paramètres de décodage AustraliaPost. | +| [AustraliaPostSettingsInternal](../com.aspose.barcode.barcoderecognition/australiapostsettingsinternal) | | +| [AztecExtendedParameters](../com.aspose.barcode.barcoderecognition/aztecextendedparameters) | Stocke les données spéciales du code-barres Aztec reconnu | +| [BarCodeConfidence](../com.aspose.barcode.barcoderecognition/barcodeconfidence) | Contient le niveau de confiance de la reconnaissance | +| [BarCodeExtendedParameters](../com.aspose.barcode.barcoderecognition/barcodeextendedparameters) | Stocke les paramètres étendus du code-barres reconnu | +| [BarCodeReader](../com.aspose.barcode.barcoderecognition/barcodereader) | BarCodeReader encapsule une image qui peut contenir un ou plusieurs codes-barres, puis peut exécuter l'opération ReadBarCodes pour détecter les codes-barres. | +| [BarCodeRecognitionException](../com.aspose.barcode.barcoderecognition/barcoderecognitionexception) | Exception générale lancée par BarCodeReader, héritée de BarCodeException | +| [BarCodeRegionParameters](../com.aspose.barcode.barcoderecognition/barcoderegionparameters) | Représente la région du code-barres reconnu et l'angle du code-barres | +| [BarCodeResult](../com.aspose.barcode.barcoderecognition/barcoderesult) | Stocke les données du code-barres reconnu comme le type SingleDecodeType, la chaîne codetext, les paramètres BarCodeRegionParameters region et d'autres paramètres | +| [BarCodeResultInternalCalls](../com.aspose.barcode.barcoderecognition/barcoderesultinternalcalls) | | +| [BarcodeSettings](../com.aspose.barcode.barcoderecognition/barcodesettings) | Les principaux paramètres de décodage BarCode. | +| [BarcodeSettingsInternal](../com.aspose.barcode.barcoderecognition/barcodesettingsinternal) | | +| [BarcodeSvmDetectorSettings](../com.aspose.barcode.barcoderecognition/barcodesvmdetectorsettings) | Paramètres du détecteur de code-barres. | +| [BaseDecodeType](../com.aspose.barcode.barcoderecognition/basedecodetype) | Classe de base pour MultiDecodeType et SingleDecodeType. | +| [BaseExtendedParameters](../com.aspose.barcode.barcoderecognition/baseextendedparameters) | Classe de base pour le stockage des paramètres étendus du code-barres reconnu | +| [CodabarExtendedParameters](../com.aspose.barcode.barcoderecognition/codabarextendedparameters) | Stocke une information supplémentaire Codabar du code-barres reconnu | +| [Code128DataPortion](../com.aspose.barcode.barcoderecognition/code128dataportion) | Contient les données du sous-type pour le code-barres de type Code128 | +| [Code128DataPortionInternal](../com.aspose.barcode.barcoderecognition/code128dataportioninternal) | | +| [Code128ExtendedParameters](../com.aspose.barcode.barcoderecognition/code128extendedparameters) | Stocke les données spéciales du code‑barres Code128 reconnu | +| [Code128SubType](../com.aspose.barcode.barcoderecognition/code128subtype) | Contient les types du sous‑ensemble Code128 | +| [DataBarExtendedParameters](../com.aspose.barcode.barcoderecognition/databarextendedparameters) | Stocke des informations supplémentaires DataBar du code‑barres reconnu BarCodeReader reader = new BarCodeReader("test.png", DecodeType.DATABAR\_OMNI\_DIRECTIONAL); for(BarCodeResult result : reader.readBarCodes()) System.out.println("BarCode Type: " + result.getCodeTypeName()); System.out.println("BarCode CodeText: " + result.getCodeText()); System.out.println("QR Structured Append Quantity: " + result.getExtended().getQR().getQRStructuredAppendModeBarCodesQuantity()); | +| [DataMatrixExtendedParameters](../com.aspose.barcode.barcoderecognition/datamatrixextendedparameters) | Stocke les données spéciales du code‑barres DataMatrix reconnu | +| [DecodeType](../com.aspose.barcode.barcoderecognition/decodetype) | Spécifiez le type de code‑barres à lire. | +| [DotCodeExtendedParameters](../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) | Stocke les données spéciales du code‑barres DotCode reconnu | +| [GS1CompositeBarExtendedParameters](../com.aspose.barcode.barcoderecognition/gs1compositebarextendedparameters) | Stocke les données spéciales du code‑barres **GS1 Composite Bar** reconnu | +| [ImageScalingModeInternal](../com.aspose.barcode.barcoderecognition/imagescalingmodeinternal) | | +| [MaxiCodeExtendedParameters](../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | Stocke des informations supplémentaires MaxiCode du code‑barres reconnu | +| [MultiDecodeType](../com.aspose.barcode.barcoderecognition/multidecodetype) | Type de décodage composite. | +| [MultyDecodeType](../com.aspose.barcode.barcoderecognition/multydecodetype) | Type de décodage composite. | +| [OneDExtendedParameters](../com.aspose.barcode.barcoderecognition/onedextendedparameters) | Stocke les données spéciales du code‑barres 1D reconnu, comme le texte du code séparé et la somme de contrôle | +| [Pdf417ExtendedParameters](../com.aspose.barcode.barcoderecognition/pdf417extendedparameters) | Stocke les informations de métadonnées MacroPdf417 du code‑barres reconnu | +| [ProcessorSettings](../com.aspose.barcode.barcoderecognition/processorsettings) | ProcessorSettings permet de reconnaître les codes‑barres avec une augmentation des performances grâce au multithreading | +| [QRExtendedParameters](../com.aspose.barcode.barcoderecognition/qrextendedparameters) | Stocke les informations QR Structured Append du code‑barres reconnu | +| [Quadrangle](../com.aspose.barcode.barcoderecognition/quadrangle) | Stocke un ensemble de quatre Points qui représentent une région Quadrangle | +| [QualitySettings](../com.aspose.barcode.barcoderecognition/qualitysettings) | QualitySettings permet de configurer manuellement la qualité et la vitesse de reconnaissance. | +| [QualitySettingsInternal](../com.aspose.barcode.barcoderecognition/qualitysettingsinternal) | | +| [RecognitionAbortedException](../com.aspose.barcode.barcoderecognition/recognitionabortedexception) | Représente l'exception d'annulation de reconnaissance qui est levée lorsqu'un délai d'attente est dépassé pendant la reconnaissance avec BarCodeReader. | +| [RecognitionOptions](../com.aspose.barcode.barcoderecognition/recognitionoptions) | | +| [SingleDecodeType](../com.aspose.barcode.barcoderecognition/singledecodetype) | Type de décodage unique. | +| [TextEncodingDetection](../com.aspose.barcode.barcoderecognition/textencodingdetection) | | + +## Interfaces + +| Interface | Description | +| --- | --- | +| [AustraliaPostCustomerInformationDecoder](../com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder) | Interface publique pour le décodage du champ d'information client utilisé dans la symbologie AustraliaPost. | + +## Énumérations + +| Énum | Description | +| --- | --- | +| [BarcodeQualityMode](../com.aspose.barcode.barcoderecognition/barcodequalitymode) | | +| [ChecksumValidation](../com.aspose.barcode.barcoderecognition/checksumvalidation) | | +| [ComplexBackgroundMode](../com.aspose.barcode.barcoderecognition/complexbackgroundmode) | | +| [CustomerInformationInterpretingType](../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) | Définit le type d'interprétation (C\_TABLE ou N\_TABLE) des informations client pour le code‑barres AustralianPost. | +| [DeconvolutionMode](../com.aspose.barcode.barcoderecognition/deconvolutionmode) | | +| [ImageScalingMode](../com.aspose.barcode.barcoderecognition/imagescalingmode) | Spécifiez la taille de l'image mise à l'échelle | +| [InverseImageMode](../com.aspose.barcode.barcoderecognition/inverseimagemode) | | +| [XDimensionMode](../com.aspose.barcode.barcoderecognition/xdimensionmode) | | diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/_index.md new file mode 100644 index 000000000..7e210fcdc --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/_index.md @@ -0,0 +1,32 @@ +--- +title: AustraliaPostCustomerInformationDecoder +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Interface publique pour le décodage du champ d'information client utilisé dans la symbologie AustraliaPost. +type: docs +weight: 50 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/ +---``` +public interface AustraliaPostCustomerInformationDecoder +``` + +Public interface for Customer Information Field decoding which is used in AustraliaPost symbology. Implementation should be provided by user. +## Methods + +| Method | Description | +| --- | --- | +| [decode(String customerInformationField)](#decode-java.lang.String-) | Decode Customer Information Field from AustraliaPost symbology. | +### decode(String customerInformationField) {#decode-java.lang.String-} +``` +public abstract String decode(String customerInformationField) +``` + + +Decode Customer Information Field from AustraliaPost symbology. Can be used for different data interpretation from NTable and CTable encoding. Data is provided as a row of bar values: 0, 1, 2 or 3. Example String[] N\_Table = \{ "00", "01", "02", "10", "11", "12", "20", "21", "22", "30" \}; public String decode(String customerInformationField) \{ StringBuilder bd = new StringBuilder(); for (int i = 0; customerInformationField.length > i; i += 2) \{ if (customerInformationField.length >= i + 2) \{ String tmp = customerInformationField.substring(i, i + 2); for (int j = 0; N\_Table.Length > j; j++) \{ if (N\_Table[j].equals(tmp)) \{ bd.append(j); break; \} \} \} \} return bd.toString(); \} + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| customerInformationField | java.lang.String | The Customer Information Field encoded as row of raw bar values: 0, 1, 2 or 3 | + +**Returns:** +java.lang.String - the decoded Customer Information Field string diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/australiapostsettings/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/australiapostsettings/_index.md new file mode 100644 index 000000000..033717df0 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/australiapostsettings/_index.md @@ -0,0 +1,199 @@ +--- +title: AustraliaPostSettings +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres de décodage AustraliaPost. +type: docs +weight: 10 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/australiapostsettings/ +--- +**Inheritance:** +java.lang.Object +``` +public class AustraliaPostSettings +``` + +AustraliaPost decoding parameters. Contains parameters which make influence on recognized data of AustraliaPost symbology. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getCustomerInformationDecoder()](#getCustomerInformationDecoder--) | Interface publique pour le décodage du champ d'information client utilisé dans la symbologie AustraliaPost. | +| [getCustomerInformationInterpretingType()](#getCustomerInformationInterpretingType--) | Gets or sets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER. | +| [getIgnoreEndingFillingPatternsForCTable()](#getIgnoreEndingFillingPatternsForCTable--) | The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setCustomerInformationDecoder(AustraliaPostCustomerInformationDecoder value)](#setCustomerInformationDecoder-com.aspose.barcode.barcoderecognition.AustraliaPostCustomerInformationDecoder-) | Interface publique pour le décodage du champ d'information client utilisé dans la symbologie AustraliaPost. | +| [setCustomerInformationInterpretingType(CustomerInformationInterpretingType value)](#setCustomerInformationInterpretingType-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-) | Gets or sets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER. | +| [setIgnoreEndingFillingPatternsForCTable(boolean value)](#setIgnoreEndingFillingPatternsForCTable-boolean-) | The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCustomerInformationDecoder() {#getCustomerInformationDecoder--} +``` +public AustraliaPostCustomerInformationDecoder getCustomerInformationDecoder() +``` + + +Interface publique pour le décodage du champ d'information client utilisé dans la symbologie AustraliaPost. + +**Returns:** +[AustraliaPostCustomerInformationDecoder](../../com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder) - Public interface for Customer Information Field decoding which is used in AustraliaPost symbology. +### getCustomerInformationInterpretingType() {#getCustomerInformationInterpretingType--} +``` +public CustomerInformationInterpretingType getCustomerInformationInterpretingType() +``` + + +Gets or sets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER. + +**Returns:** +[CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) - The interpreting type (CTable, NTable or Other) of customer information for AustralianPost BarCode +### getIgnoreEndingFillingPatternsForCTable() {#getIgnoreEndingFillingPatternsForCTable--} +``` +public boolean getIgnoreEndingFillingPatternsForCTable() +``` + + +Le drapeau qui force le décodeur AustraliaPost à ignorer les derniers motifs de remplissage dans le champ d'informations client lors du décodage avec la méthode CTable. La méthode d'encodage CTable ne comporte aucun vide dans la table d'encodage et la séquence "333" de motifs de remplissage est décodée comme la lettre "z". Exemple BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA\_POST, "5912345678AB"); generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.C\_TABLE); Bitmap image = generator.generateBarCodeImage(); BarCodeReader reader = new BarCodeReader(image, DecodeType.AUSTRALIA\_POST); reader.getBarcodeSettings().getAustraliaPost().setCustomerInformationInterpretingType(CustomerInformationInterpretingType.C\_TABLE); reader.getBarcodeSettings().getAustraliaPost().setIgnoreEndingFillingPatternsForCTable(true); for(BarCodeResult result : reader.readBarCodes()) \{ System.out.println("BarCode Type: " + result.getCodeType()); System.out.println("BarCode CodeText: " + result.getCodeText()); \} + +**Returns:** +boolean - Le drapeau qui force le décodeur AustraliaPost à ignorer les derniers motifs de remplissage lors du décodage avec la méthode CTable +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setCustomerInformationDecoder(AustraliaPostCustomerInformationDecoder value) {#setCustomerInformationDecoder-com.aspose.barcode.barcoderecognition.AustraliaPostCustomerInformationDecoder-} +``` +public void setCustomerInformationDecoder(AustraliaPostCustomerInformationDecoder value) +``` + + +Interface publique pour le décodage du champ d'information client utilisé dans la symbologie AustraliaPost. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [AustraliaPostCustomerInformationDecoder](../../com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder) | | + +### setCustomerInformationInterpretingType(CustomerInformationInterpretingType value) {#setCustomerInformationInterpretingType-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-} +``` +public void setCustomerInformationInterpretingType(CustomerInformationInterpretingType value) +``` + + +Gets or sets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) | Le type d'interprétation (CTable, NTable ou Autre) des informations client pour le code-barres AustralianPost | + +### setIgnoreEndingFillingPatternsForCTable(boolean value) {#setIgnoreEndingFillingPatternsForCTable-boolean-} +``` +public void setIgnoreEndingFillingPatternsForCTable(boolean value) +``` + + +Le drapeau qui force le décodeur AustraliaPost à ignorer les derniers motifs de remplissage dans le champ d'informations client lors du décodage avec la méthode CTable. La méthode d'encodage CTable ne comporte aucun vide dans la table d'encodage et la séquence "333" de motifs de remplissage est décodée comme la lettre "z". Exemple BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA\_POST, "5912345678AB"); generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.C\_TABLE); Bitmap image = generator.generateBarCodeImage(); BarCodeReader reader = new BarCodeReader(image, DecodeType.AUSTRALIA\_POST); reader.getBarcodeSettings().getAustraliaPost().setCustomerInformationInterpretingType(CustomerInformationInterpretingType.C\_TABLE); reader.getBarcodeSettings().getAustraliaPost().setIgnoreEndingFillingPatternsForCTable(true); for(BarCodeResult result : reader.readBarCodes()) \{ System.out.println("BarCode Type: " + result.getCodeType()); System.out.println("BarCode CodeText: " + result.getCodeText()); \} + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/australiapostsettingsinternal/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/australiapostsettingsinternal/_index.md new file mode 100644 index 000000000..03ee45527 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/australiapostsettingsinternal/_index.md @@ -0,0 +1,160 @@ +--- +title: AustraliaPostSettingsInternal +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 11 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/australiapostsettingsinternal/ +--- +**Inheritance:** +java.lang.Object +``` +public class AustraliaPostSettingsInternal +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [AustraliaPostSettingsInternal()](#AustraliaPostSettingsInternal--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [AustraliaPostSettingsCtor()](#AustraliaPostSettingsCtor--) | | +| [AustraliaPostSettingsCtor(AustraliaPostSettings australiaPostSettings)](#AustraliaPostSettingsCtor-com.aspose.barcode.barcoderecognition.AustraliaPostSettings-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AustraliaPostSettingsInternal() {#AustraliaPostSettingsInternal--} +``` +public AustraliaPostSettingsInternal() +``` + + +### AustraliaPostSettingsCtor() {#AustraliaPostSettingsCtor--} +``` +public static AustraliaPostSettings AustraliaPostSettingsCtor() +``` + + + + +**Returns:** +[AustraliaPostSettings](../../com.aspose.barcode.barcoderecognition/australiapostsettings) +### AustraliaPostSettingsCtor(AustraliaPostSettings australiaPostSettings) {#AustraliaPostSettingsCtor-com.aspose.barcode.barcoderecognition.AustraliaPostSettings-} +``` +public static AustraliaPostSettings AustraliaPostSettingsCtor(AustraliaPostSettings australiaPostSettings) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| australiaPostSettings | [AustraliaPostSettings](../../com.aspose.barcode.barcoderecognition/australiapostsettings) | | + +**Returns:** +[AustraliaPostSettings](../../com.aspose.barcode.barcoderecognition/australiapostsettings) +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/aztecextendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/aztecextendedparameters/_index.md new file mode 100644 index 000000000..e73bf20a4 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/aztecextendedparameters/_index.md @@ -0,0 +1,207 @@ +--- +title: AztecExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke les données spéciales du code-barres Aztec reconnu +type: docs +weight: 12 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/aztecextendedparameters/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) +``` +public final class AztecExtendedParameters extends BaseExtendedParameters +``` + +Stocke les données spéciales du code-barres Aztec reconnu + +-------------------- + +> ``` +> This sample shows how to get Aztec raw values +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AZTEC, "12345"); +> generator.save("c:\\test.png"); +> +> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.AZTEC); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode type: " + result.getCodeTypeName()); +> System.out.println("BarCode codetext: " + result.getCodeText()); +> System.out.println("Aztec barcode ID: " + result.getExtended.getAztec.getStructuredAppendBarcodeId()); +> System.out.println("Aztec barcodes count: " + result.getExtended.getAztec.getStructuredAppendBarcodesCount()); +> System.out.println("Aztec file ID: " + result.getExtended.getAztec.getStructuredAppendFileId()); +> System.out.println("Aztec is reader initialization: " + result.getExtended.getAztec.isReaderInitialization()); +> } +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de AztecExtendedParameters . | +| [getClass()](#getClass--) | | +| [getStructuredAppendBarcodeId()](#getStructuredAppendBarcodeId--) | Obtient l'ID du code-barres du mode d'ajout structuré Aztec. | +| [getStructuredAppendBarcodesCount()](#getStructuredAppendBarcodesCount--) | Obtient le nombre de codes-barres du mode d'ajout structuré Aztec. | +| [getStructuredAppendFileId()](#getStructuredAppendFileId--) | Obtient l'ID du fichier du mode d'ajout structuré Aztec. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [isReaderInitialization()](#isReaderInitialization--) | Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce AztecExtendedParameters . | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de AztecExtendedParameters . + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getStructuredAppendBarcodeId() {#getStructuredAppendBarcodeId--} +``` +public int getStructuredAppendBarcodeId() +``` + + +Obtient l'ID du code-barres du mode d'ajout structuré Aztec. L'ID commence à 1 et doit être inférieur ou égal au nombre de codes-barres. La valeur par défaut est 0. + +Valeur: L'ID du code-barres du mode d'ajout structuré Aztec. + +**Returns:** +int +### getStructuredAppendBarcodesCount() {#getStructuredAppendBarcodesCount--} +``` +public int getStructuredAppendBarcodesCount() +``` + + +Obtient le nombre de codes-barres du mode d'ajout structuré Aztec. La valeur par défaut est 0. Le nombre doit être compris entre 1 et 26. + +Valeur: Le nombre de codes-barres du mode d'ajout structuré Aztec. + +**Returns:** +int +### getStructuredAppendFileId() {#getStructuredAppendFileId--} +``` +public String getStructuredAppendFileId() +``` + + +Obtient l'ID du fichier du mode d'ajout structuré Aztec. La valeur par défaut est une chaîne vide + +Valeur: L'ID du fichier du mode d'ajout structuré Aztec. + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### isReaderInitialization() {#isReaderInitialization--} +``` +public boolean isReaderInitialization() +``` + + +Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. La valeur par défaut est false. + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce AztecExtendedParameters . + +**Returns:** +java.lang.String - Une chaîne qui représente ce AztecExtendedParameters . +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/barcodeconfidence/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodeconfidence/_index.md new file mode 100644 index 000000000..b142f9a00 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodeconfidence/_index.md @@ -0,0 +1,184 @@ +--- +title: BarCodeConfidence +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Contient le niveau de confiance de la reconnaissance +type: docs +weight: 13 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/barcodeconfidence/ +--- +**Inheritance:** +java.lang.Object +``` +public final class BarCodeConfidence +``` + +Contient le niveau de confiance de la reconnaissance + +-------------------- + +> ``` +> This sample shows how BarCodeConfidence changed, depending on barcode type +> +> //Moderate confidence +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.CODE_128, "12345"); +> generator.save("test.png"); +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_STANDARD, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> System.out.println("BarCode Confidence: " + result.getConfidence()); +> System.out.println("BarCode ReadingQuality: " + result.getReadingQuality()); +> } +> //Strong confidence +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR, "12345"); +> generator.save("test.png"); +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_STANDARD, DecodeType.QR); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> System.out.println("BarCode Confidence: " + result.getConfidence()); +> System.out.println("BarCode ReadingQuality: " + result.getReadingQuality()); +> } +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [MODERATE](#MODERATE) | Confiance de reconnaissance du code-barres (principalement les codes-barres 1D) avec une somme de contrôle faible ou même sans. | +| [NONE](#NONE) | Confiance de reconnaissance du code-barres lorsque le texte du code n'a pas été reconnu correctement ou que le code-barres a été détecté comme possible fakeBarCodeExtendedParameters. | +| [STRONG](#STRONG) | Confiance de reconnaissance qui a été confirmée avec des codes BCH comme Reed\\u2013Solomon. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MODERATE {#MODERATE} +``` +public static final int MODERATE +``` + + +Confiance de reconnaissance du code-barres (principalement les codes-barres 1D) avec une somme de contrôle faible ou même sans. Peut contenir quelques erreurs de reconnaissance du texte ou même des reconnaissances factices si elle est basse. + +### NONE {#NONE} +``` +public static final int NONE +``` + + +Confiance de reconnaissance du code-barres lorsque le texte du code n'a pas été reconnu correctement ou que le code-barres a été détecté comme possible fakeBarCodeExtendedParameters. + +### STRONG {#STRONG} +``` +public static final int STRONG +``` + + +Confiance de reconnaissance confirmée par des codes BCH comme Reed\\u2013Solomon. Il ne doit pas y avoir d'erreurs dans le texte lu ou de reconnaissances factices. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/barcodeextendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodeextendedparameters/_index.md new file mode 100644 index 000000000..6605637b5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodeextendedparameters/_index.md @@ -0,0 +1,261 @@ +--- +title: BarCodeExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke les paramètres étendus du code-barres reconnu +type: docs +weight: 14 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/barcodeextendedparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public final class BarCodeExtendedParameters +``` + +Stocke les paramètres étendus du code-barres reconnu +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de BarCodeExtendedParameters. | +| [getAztec()](#getAztec--) | Obtient une information supplémentaire Aztec AztecExtendedParameters du code-barres reconnu. | +| [getClass()](#getClass--) | | +| [getCodabar()](#getCodabar--) | Obtient une information supplémentaire Codabar CodabarExtendedParameters du code-barres reconnu. | +| [getCode128()](#getCode128--) | Obtient des données spéciales Code128ExtendedParameters du code-barres Code128 reconnu | +| [getDataBar()](#getDataBar--) | Obtient des informations supplémentaires DataBarExtendedParameters du code-barres DataBar reconnu | +| [getDataMatrix()](#getDataMatrix--) | Obtient des informations supplémentaires DataMatrixExtendedParameters du code-barres DataMatrix reconnu | +| [getDotCode()](#getDotCode--) | Obtient des informations supplémentaires DotCodeExtendedParameters du code-barres DataMatrix reconnu | +| [getGS1CompositeBar()](#getGS1CompositeBar--) | Obtient des informations supplémentaires GS1CompositeBarExtendedParameters du code-barres GS1CompositeBar reconnu | +| [getMaxiCode()](#getMaxiCode--) | Obtient des informations supplémentaires MaxiCodeExtendedParameters du code-barres MaxiCode reconnu | +| [getOneD()](#getOneD--) | Obtient des données spéciales OneDExtendedParameters du code-barres 1D reconnu | +| [getPdf417()](#getPdf417--) | Obtient des informations de métadonnées Pdf417ExtendedParameters du code-barres MacroPdf417 reconnu | +| [getQR()](#getQR--) | Obtient des informations d'ajout structuré QR QRExtendedParameters du code-barres QR reconnu | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de cet objet BarCodeExtendedParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de BarCodeExtendedParameters. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getAztec() {#getAztec--} +``` +public AztecExtendedParameters getAztec() +``` + + +Obtient une information supplémentaire Aztec AztecExtendedParameters du code-barres reconnu. + +Valeur : des informations supplémentaires AztecExtendedParameters du code-barres Aztec reconnu + +**Returns:** +com.aspose.barcode.barcoderecognition.AztecExtendedParameters +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCodabar() {#getCodabar--} +``` +public CodabarExtendedParameters getCodabar() +``` + + +Obtient une information supplémentaire Codabar CodabarExtendedParameters du code-barres reconnu. + +**Returns:** +[CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) - A Codabar additional information CodabarExtendedParameters of recognized barcode +### getCode128() {#getCode128--} +``` +public Code128ExtendedParameters getCode128() +``` + + +Obtient des données spéciales Code128ExtendedParameters du code-barres Code128 reconnu + +Valeur : des données spéciales Code128ExtendedParameters du code-barres Code128 reconnu + +**Returns:** +[Code128ExtendedParameters](../../com.aspose.barcode.barcoderecognition/code128extendedparameters) +### getDataBar() {#getDataBar--} +``` +public DataBarExtendedParameters getDataBar() +``` + + +Obtient des informations supplémentaires DataBarExtendedParameters du code-barres DataBar reconnu + +**Returns:** +[DataBarExtendedParameters](../../com.aspose.barcode.barcoderecognition/databarextendedparameters) - A DataBar additional informationDataBarExtendedParameters of recognized barcode +### getDataMatrix() {#getDataMatrix--} +``` +public DataMatrixExtendedParameters getDataMatrix() +``` + + +Obtient des informations supplémentaires DataMatrixExtendedParameters du code-barres DataMatrix reconnu + +Valeur : des informations supplémentaires DataMatrixExtendedParameters du code-barres DataMatrix reconnu + +**Returns:** +[DataMatrixExtendedParameters](../../com.aspose.barcode.barcoderecognition/datamatrixextendedparameters) +### getDotCode() {#getDotCode--} +``` +public DotCodeExtendedParameters getDotCode() +``` + + +Obtient des informations supplémentaires DotCodeExtendedParameters du code-barres DataMatrix reconnu + +Valeur : des informations supplémentaires DotCodeExtendedParameters du code-barres DotCode reconnu + +**Returns:** +[DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) +### getGS1CompositeBar() {#getGS1CompositeBar--} +``` +public GS1CompositeBarExtendedParameters getGS1CompositeBar() +``` + + +Obtient des informations supplémentaires GS1CompositeBarExtendedParameters du code-barres GS1CompositeBar reconnu + +Valeur : des informations supplémentaires GS1CompositeBarExtendedParameters du code-barres GS1CompositeBar reconnu + +**Returns:** +com.aspose.barcode.barcoderecognition.GS1CompositeBarExtendedParameters +### getMaxiCode() {#getMaxiCode--} +``` +public MaxiCodeExtendedParameters getMaxiCode() +``` + + +Obtient des informations supplémentaires MaxiCodeExtendedParameters du code-barres MaxiCode reconnu + +**Returns:** +[MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) - A MaxiCode additional information MaxiCodeExtendedParameters of recognized barcode +### getOneD() {#getOneD--} +``` +public OneDExtendedParameters getOneD() +``` + + +Obtient des données spéciales OneDExtendedParameters du code-barres 1D reconnu + +Valeur : des données spéciales OneDExtendedParameters du code-barres 1D reconnu + +**Returns:** +[OneDExtendedParameters](../../com.aspose.barcode.barcoderecognition/onedextendedparameters) +### getPdf417() {#getPdf417--} +``` +public Pdf417ExtendedParameters getPdf417() +``` + + +Obtient des informations de métadonnées Pdf417ExtendedParameters du code-barres MacroPdf417 reconnu + +Valeur : des informations de métadonnées Pdf417ExtendedParameters du code-barres MacroPdf417 reconnu + +**Returns:** +[Pdf417ExtendedParameters](../../com.aspose.barcode.barcoderecognition/pdf417extendedparameters) +### getQR() {#getQR--} +``` +public QRExtendedParameters getQR() +``` + + +Obtient des informations d'ajout structuré QR QRExtendedParameters du code-barres QR reconnu + +Valeur : des informations d'ajout structuré QR QRExtendedParameters du code-barres QR reconnu + +**Returns:** +[QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de cet objet BarCodeExtendedParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente cet objet BarCodeExtendedParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/_index.md new file mode 100644 index 000000000..f12fd26db --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/_index.md @@ -0,0 +1,297 @@ +--- +title: BarcodeQualityMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 51 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum BarcodeQualityMode extends Enum +``` + +Mode qui permet aux méthodes de reconnaître les éléments de code-barres avec la qualité sélectionnée. Un élément de code-barres de qualité inférieure nécessite des méthodes plus complexes, ce qui ralentit la reconnaissance. + +-------------------- + +> ``` +> This sample shows how to use BarcodeQuality mode +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> reader.getQualitySettings().setBarcodeQuality(BarcodeQualityMode.LOW); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [HIGH](#HIGH) | Active les méthodes de reconnaissance pour les codes-barres de haute qualité. | +| [LOW](#LOW) | Active les méthodes de reconnaissance pour les codes-barres de basse qualité. | +| [NORMAL](#NORMAL) | Active les méthodes de reconnaissance pour les codes-barres de qualité courante (normale). | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromValue(int value)](#fromValue-int-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### HIGH {#HIGH} +``` +public static final BarcodeQualityMode HIGH +``` + + +Active les méthodes de reconnaissance pour les codes-barres de haute qualité. + +### LOW {#LOW} +``` +public static final BarcodeQualityMode LOW +``` + + +Active les méthodes de reconnaissance pour les codes-barres de basse qualité. + +### NORMAL {#NORMAL} +``` +public static final BarcodeQualityMode NORMAL +``` + + +Active les méthodes de reconnaissance pour les codes-barres de qualité courante (normale). + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromValue(int value) {#fromValue-int-} +``` +public static BarcodeQualityMode fromValue(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[BarcodeQualityMode](../../com.aspose.barcode.barcoderecognition/barcodequalitymode) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static BarcodeQualityMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[BarcodeQualityMode](../../com.aspose.barcode.barcoderecognition/barcodequalitymode) +### values() {#values--} +``` +public static BarcodeQualityMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.barcoderecognition.BarcodeQualityMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/barcodereader/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodereader/_index.md new file mode 100644 index 000000000..32cec6622 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodereader/_index.md @@ -0,0 +1,1171 @@ +--- +title: BarCodeReader +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: BarCodeReader encapsule une image qui peut contenir un ou plusieurs codes-barres ; il peut alors exécuter l'opération ReadBarCodes pour détecter les codes-barres. +type: docs +weight: 15 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/barcodereader/ +--- +**Inheritance:** +java.lang.Object +``` +public class BarCodeReader +``` + +BarCodeReader encapsule une image qui peut contenir un ou plusieurs codes-barres, puis peut exécuter l'opération ReadBarCodes pour détecter les codes-barres. + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarCodeReader()](#BarCodeReader--) | Initialise une nouvelle instance de la classe BarCodeReader avec les valeurs par défaut. | +| [BarCodeReader(Bitmap image)](#BarCodeReader-android.graphics.Bitmap-) | Initialise une nouvelle instance de la classe BarCodeReader à partir d'une image. | +| [BarCodeReader(Bitmap image, BaseDecodeType[] decodeTypes)](#BarCodeReader-android.graphics.Bitmap-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(Bitmap image, BaseDecodeType type)](#BarCodeReader-android.graphics.Bitmap-com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(Bitmap image, Rect area, BaseDecodeType[] decodeTypes)](#BarCodeReader-android.graphics.Bitmap-android.graphics.Rect-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(String imagePath, Rect[] areas, BaseDecodeType type)](#BarCodeReader-java.lang.String-android.graphics.Rect---com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(InputStream stream, Rect area, BaseDecodeType type)](#BarCodeReader-java.io.InputStream-android.graphics.Rect-com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(String imagePath, Rect area, BaseDecodeType type)](#BarCodeReader-java.lang.String-android.graphics.Rect-com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(InputStream stream, Rect[] areas, BaseDecodeType type)](#BarCodeReader-java.io.InputStream-android.graphics.Rect---com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(Bitmap image, Rect[] areas, BaseDecodeType type)](#BarCodeReader-android.graphics.Bitmap-android.graphics.Rect---com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(Bitmap image, Rect area, BaseDecodeType type)](#BarCodeReader-android.graphics.Bitmap-android.graphics.Rect-com.aspose.barcode.barcoderecognition.BaseDecodeType-) | | +| [BarCodeReader(String filename)](#BarCodeReader-java.lang.String-) | Initialise une nouvelle instance de la classe BarCodeReader à partir d'un fichier. | +| [BarCodeReader(String filename, BaseDecodeType type)](#BarCodeReader-java.lang.String-com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(String filename, BaseDecodeType[] decodeTypes)](#BarCodeReader-java.lang.String-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(InputStream stream)](#BarCodeReader-java.io.InputStream-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(InputStream stream, BaseDecodeType type)](#BarCodeReader-java.io.InputStream-com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Initialise une nouvelle instance de la classe BarCodeReader . | +| [BarCodeReader(InputStream stream, BaseDecodeType[] decodeTypes)](#BarCodeReader-java.io.InputStream-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Initialise une nouvelle instance de la classe BarCodeReader . | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [abort()](#abort--) | La fonction demande la terminaison de la session de reconnaissance en cours depuis un autre thread. | +| [dispose()](#dispose--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [exportToXml(OutputStream xmlStream)](#exportToXml-java.io.OutputStream-) | Exporte les propriétés BarCode vers le flux xml spécifié | +| [exportToXml(String xmlFile)](#exportToXml-java.lang.String-) | Exporte les propriétés BarCode vers le fichier xml spécifié | +| [getBarCodeReadType()](#getBarCodeReadType--) | Obtient le type de décodage du code-barres d'entrée | +| [getBarcodeSettings()](#getBarcodeSettings--) | Les principaux paramètres de décodage BarCode. | +| [getClass()](#getClass--) | | +| [getFoundBarCodes()](#getFoundBarCodes--) | Obtient le tableau des BarCodeResult reconnus | +| [getFoundCount()](#getFoundCount--) | Obtient le nombre de codes-barres reconnus | +| [getProcessorSettings()](#getProcessorSettings--) | Obtient les paramètres d'utilisation des cœurs du processeur. | +| [getQualitySettings()](#getQualitySettings--) | QualitySettings permet de configurer manuellement la qualité et la vitesse de reconnaissance. | +| [getTimeout()](#getTimeout--) | Obtient le délai d'attente du processus de reconnaissance en millisecondes. | +| [hashCode()](#hashCode--) | | +| [importFromXml(InputStream xmlStream)](#importFromXml-java.io.InputStream-) | Importe les propriétés BarCode depuis le flux xml spécifié et les applique à l'instance actuelle de BarCodeReader. | +| [importFromXml(String xmlFile)](#importFromXml-java.lang.String-) | Importe les propriétés BarCode du fichier xml spécifié et les applique à l'instance actuelle de BarCodeReader. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [readBarCodes()](#readBarCodes--) | Lit les BarCodeResult de l'image. | +| [setBarCodeImage(Bitmap value)](#setBarCodeImage-android.graphics.Bitmap-) | Définit l'image bitmap pour la reconnaissance. | +| [setBarCodeImage(Bitmap value, Rect area)](#setBarCodeImage-android.graphics.Bitmap-android.graphics.Rect-) | Définit l'image bitmap et la zone pour la reconnaissance. | +| [setBarCodeImage(Bitmap value, Rect[] areas)](#setBarCodeImage-android.graphics.Bitmap-android.graphics.Rect---) | Définit l'image bitmap et les zones pour la reconnaissance. | +| [setBarCodeImage(InputStream stream)](#setBarCodeImage-java.io.InputStream-) | Définit le flux d'image pour la reconnaissance. | +| [setBarCodeImage(String filename)](#setBarCodeImage-java.lang.String-) | Définit le fichier image pour la reconnaissance. | +| [setBarCodeReadType(BaseDecodeType type)](#setBarCodeReadType-com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Définit le type de décodage pour la reconnaissance. | +| [setBarCodeReadType(SingleDecodeType[] barcodeTypes)](#setBarCodeReadType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-) | Définit le tableau de type SingleDecodeType pour la reconnaissance. | +| [setQualitySettings(QualitySettings value)](#setQualitySettings-com.aspose.barcode.barcoderecognition.QualitySettings-) | QualitySettings permet de configurer manuellement la qualité et la vitesse de reconnaissance. | +| [setTimeout(int value)](#setTimeout-int-) | Définit le délai d'attente du processus de reconnaissance en millisecondes. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarCodeReader() {#BarCodeReader--} +``` +public BarCodeReader() +``` + + +Initialise une nouvelle instance de la classe BarCodeReader avec des valeurs par défaut. Nécessite de définir l'image (SetBitmapImage()) avant d'appeler la méthode ReadBarCodes(). + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BarCodeReader reader = new BarCodeReader(); +> reader.setBarCodeReadType(DecodeType.CODE_39, DecodeType.CODE_128); +> reader.setBarCodeImage("test.png"); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +### BarCodeReader(Bitmap image) {#BarCodeReader-android.graphics.Bitmap-} +``` +public BarCodeReader(Bitmap image) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader à partir d'une image. + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> Bitmap bmp = BitmapFactory.decodeFile("test.png"); +> BarCodeReader reader = new BarCodeReader(bmp); +> reader.setBarCodeReadType(DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| image | android.graphics.Bitmap | Une instance Bitmap contenant l'image | + +### BarCodeReader(Bitmap image, BaseDecodeType[] decodeTypes) {#BarCodeReader-android.graphics.Bitmap-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public BarCodeReader(Bitmap image, BaseDecodeType[] decodeTypes) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> Bitmap bmp = BitmapFactory.decodeFile("test.png"); +> BarCodeReader reader = new BarCodeReader(bmp, DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| image | android.graphics.Bitmap | L'image. | +| decodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Types de décodage. | + +### BarCodeReader(Bitmap image, BaseDecodeType type) {#BarCodeReader-android.graphics.Bitmap-com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public BarCodeReader(Bitmap image, BaseDecodeType type) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> Bitmap bmp = BitmapFactory.decodeFile("test.png"); +> BarCodeReader reader = new BarCodeReader(bmp, new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| image | android.graphics.Bitmap | L'image. | +| type | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le type de décodage1. Il peut être simple ou multiple | + +### BarCodeReader(Bitmap image, Rect area, BaseDecodeType[] decodeTypes) {#BarCodeReader-android.graphics.Bitmap-android.graphics.Rect-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public BarCodeReader(Bitmap image, Rect area, BaseDecodeType[] decodeTypes) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> Bitmap bmp = BitmapFactory.decodeFile("test.png"); +> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| image | android.graphics.Bitmap | L'image. | +| zone | android.graphics.Rect | La zone pour la reconnaissance. | +| decodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Types de décodage. | + +### BarCodeReader(String imagePath, Rect[] areas, BaseDecodeType type) {#BarCodeReader-java.lang.String-android.graphics.Rect---com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public BarCodeReader(String imagePath, Rect[] areas, BaseDecodeType type) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BufferedImage bmp = ImageIO.read(new File("c:\\test.png")); +> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| imagePath | java.lang.String | Le chemin de l'image. | +| zones | android.graphics.Rect[] | La zone pour la reconnaissance. | +| type | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le type de décodage. | + +### BarCodeReader(InputStream stream, Rect area, BaseDecodeType type) {#BarCodeReader-java.io.InputStream-android.graphics.Rect-com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public BarCodeReader(InputStream stream, Rect area, BaseDecodeType type) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BufferedImage bmp = ImageIO.read(new File("c:\\test.png")); +> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.InputStream | Le flux d'image. | +| zone | android.graphics.Rect | La zone pour la reconnaissance. | +| type | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le type de décodage. | + +### BarCodeReader(String imagePath, Rect area, BaseDecodeType type) {#BarCodeReader-java.lang.String-android.graphics.Rect-com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public BarCodeReader(String imagePath, Rect area, BaseDecodeType type) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BufferedImage bmp = ImageIO.read(new File("c:\\test.png")); +> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| imagePath | java.lang.String | Le chemin de l'image. | +| zone | android.graphics.Rect | La zone pour la reconnaissance. | +| type | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le type de décodage. | + +### BarCodeReader(InputStream stream, Rect[] areas, BaseDecodeType type) {#BarCodeReader-java.io.InputStream-android.graphics.Rect---com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public BarCodeReader(InputStream stream, Rect[] areas, BaseDecodeType type) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BufferedImage bmp = ImageIO.read(new File("c:\\test.png")); +> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.InputStream | Le flux d'image. | +| zones | android.graphics.Rect[] | La zone pour la reconnaissance. | +| type | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le type de décodage. | + +### BarCodeReader(Bitmap image, Rect[] areas, BaseDecodeType type) {#BarCodeReader-android.graphics.Bitmap-android.graphics.Rect---com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public BarCodeReader(Bitmap image, Rect[] areas, BaseDecodeType type) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> Bitmap bmp = BitmapFactory.decodeFile("test.png"); +> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| image | android.graphics.Bitmap | L'image. | +| zones | android.graphics.Rect[] | Les zones pour la reconnaissance. | +| type | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le type de décodage. | + +### BarCodeReader(Bitmap image, Rect area, BaseDecodeType type) {#BarCodeReader-android.graphics.Bitmap-android.graphics.Rect-com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public BarCodeReader(Bitmap image, Rect area, BaseDecodeType type) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| image | android.graphics.Bitmap | | +| zone | android.graphics.Rect | | +| type | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | | + +### BarCodeReader(String filename) {#BarCodeReader-java.lang.String-} +``` +public BarCodeReader(String filename) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader à partir d'un fichier. + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BarCodeReader reader = new BarCodeReader("test.png"); +> reader.setBarCodeReadType(DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom de fichier | java.lang.String | Le nom de fichier. | + +### BarCodeReader(String filename, BaseDecodeType type) {#BarCodeReader-java.lang.String-com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public BarCodeReader(String filename, BaseDecodeType type) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BarCodeReader reader = new BarCodeReader("test.png", new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom de fichier | java.lang.String | Le nom de fichier. | +| type | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le type de décodage. | + +### BarCodeReader(String filename, BaseDecodeType[] decodeTypes) {#BarCodeReader-java.lang.String-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public BarCodeReader(String filename, BaseDecodeType[] decodeTypes) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom de fichier | java.lang.String | Le nom de fichier. | +| decodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Types de décodage. | + +### BarCodeReader(InputStream stream) {#BarCodeReader-java.io.InputStream-} +``` +public BarCodeReader(InputStream stream) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> InputStream fstr = new FileInputStream(new File("test.png")); +> BarCodeReader reader = new BarCodeReader(fstr); +> reader.setBarCodeReadType(DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.InputStream | Le flux. | + +### BarCodeReader(InputStream stream, BaseDecodeType type) {#BarCodeReader-java.io.InputStream-com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public BarCodeReader(InputStream stream, BaseDecodeType type) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> InputStream fstr = new FileInputStream("test.png"); +> BarCodeReader reader = new BarCodeReader(fstr, new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.InputStream | Le flux. | +| type | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le type de décodage. | + +### BarCodeReader(InputStream stream, BaseDecodeType[] decodeTypes) {#BarCodeReader-java.io.InputStream-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public BarCodeReader(InputStream stream, BaseDecodeType[] decodeTypes) +``` + + +Initialise une nouvelle instance de la classe BarCodeReader . + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> InputStream fstr = new FileInputStream("test.png")); +> BarCodeReader reader = new BarCodeReader(fstr, DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.InputStream | Le flux. | +| decodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Types de décodage. | + +### abort() {#abort--} +``` +public void abort() +``` + + +La fonction demande la terminaison de la session de reconnaissance en cours depuis un autre thread. Abort est une méthode non bloquante et rend le contrôle immédiatement après l'appel. La méthode doit être utilisée lorsque le processus de reconnaissance est trop long. + +-------------------- + +> ``` +> This sample shows how to call Abort function from other thread +> +> final BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> Thread thread1 = new Thread(new Runnable() +> { +> ``` + +### dispose() {#dispose--} +``` +public void dispose() +``` + + + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### exportToXml(OutputStream xmlStream) {#exportToXml-java.io.OutputStream-} +``` +public boolean exportToXml(OutputStream xmlStream) +``` + + +Exporte les propriétés BarCode vers le flux xml spécifié + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| xmlStream | java.io.OutputStream | Le xml-stream pour l'enregistrement | + +**Returns:** +booléen - Indique si l'exportation s'est terminée avec succès ou non. + +Renvoie **True** en cas de succès ; **False** sinon +### exportToXml(String xmlFile) {#exportToXml-java.lang.String-} +``` +public boolean exportToXml(String xmlFile) +``` + + +Exporte les propriétés BarCode vers le fichier xml spécifié + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| xmlFile | java.lang.String | Le nom du fichier | + +**Returns:** +booléen - Indique si l'exportation s'est terminée avec succès ou non. + +Renvoie **True** en cas de succès ; **False** sinon +### getBarCodeReadType() {#getBarCodeReadType--} +``` +public BaseDecodeType getBarCodeReadType() +``` + + +Obtient le type de décodage du code-barres d'entrée + +**Returns:** +[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) +### getBarcodeSettings() {#getBarcodeSettings--} +``` +public BarcodeSettings getBarcodeSettings() +``` + + +Les principaux paramètres de décodage BarCode. Contient des paramètres qui influencent les données reconnues. + +**Returns:** +[BarcodeSettings](../../com.aspose.barcode.barcoderecognition/barcodesettings) - The main BarCode decoding parameters +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFoundBarCodes() {#getFoundBarCodes--} +``` +public BarCodeResult[] getFoundBarCodes() +``` + + +Obtient le tableau des BarCodeResult reconnus + +-------------------- + +> ``` +> This sample shows how to read barcodes with BarCodeReader +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> { +> reader.readBarCodes(); +> for(int i = 0; reader.getFoundCount() > i; ++i) +> System.out.println("BarCode CodeText: " + reader.getFoundBarCodes()[i].getCodeText()); +> } +> ``` + +Valeur : Le tableau de BarCodeResult reconnus + +**Returns:** +com.aspose.barcode.barcoderecognition.BarCodeResult[] +### getFoundCount() {#getFoundCount--} +``` +public int getFoundCount() +``` + + +Obtient le nombre de codes-barres reconnus + +-------------------- + +> ``` +> This sample shows how to read barcodes with BarCodeReader +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> reader.readBarCodes(); +> for(int i = 0; reader.getFoundCount() > i; ++i) +> System.out.println("BarCode CodeText: " + reader.getFoundBarCodes()[i].getCodeText()); +> ``` + +Valeur : Le nombre de codes-barres reconnus + +**Returns:** +int +### getProcessorSettings() {#getProcessorSettings--} +``` +public static ProcessorSettings getProcessorSettings() +``` + + +Obtient les paramètres d'utilisation des cœurs du processeur. + +-------------------- + +> ``` +> This sample shows how to use ProcessorSettings to add maximum multi-threaded performnce +> +> //this allows to use all cores for single BarCodeReader call +> BarCodeReader.getProcessorSettings().setUseAllCores(true); +> //this allows to use current count of cores +> BarCodeReader.getProcessorSettings().setUseAllCores(false); +> BarCodeReader.getProcessorSettings().setUseOnlyThisCoresCount(Math.max(1, Environment.getProcessorCount() / 2)); +> ``` + +**Returns:** +[ProcessorSettings](../../com.aspose.barcode.barcoderecognition/processorsettings) +### getQualitySettings() {#getQualitySettings--} +``` +public final QualitySettings getQualitySettings() +``` + + +QualitySettings permet de configurer manuellement la qualité et la vitesse de reconnaissance. Vous pouvez configurer rapidement QualitySettings à l'aide des préréglages intégrés : HighPerformance, NormalQuality, HighQuality, MaxBarCodes ou vous pouvez configurer manuellement des options séparées. La valeur par défaut de QualitySettings est NormalQuality. + +-------------------- + +> ``` +> This sample shows how to use QualitySettings with BarCodeReader +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> //set high performance mode +> reader.setQualitySettings(QualitySettings.getHighPerformance()); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> //normal quality mode is set by default +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> //set high performance mode +> reader.setQualitySettings(QualitySettings.getHighPerformance()); +> //set separate options +> reader.getQualitySettings().setAllowMedianSmoothing(true); +> reader.getQualitySettings().setMedianSmoothingWindowSize(5); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> ``` + +Valeur : QualitySettings pour configurer la qualité et la vitesse de reconnaissance. + +**Returns:** +[QualitySettings](../../com.aspose.barcode.barcoderecognition/qualitysettings) +### getTimeout() {#getTimeout--} +``` +public int getTimeout() +``` + + +Obtient le délai d'attente du processus de reconnaissance en millisecondes. + +``` +BarCodeReader reader = new BarCodeReader("test.png"); + reader.setTimeout(5000); + for(BarCodeResult result : reader.readBarCodes()) + System.out.println("BarCode CodeText: " + result.getCodeText()); +``` + +**Returns:** +int - Le délai d'attente. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### importFromXml(InputStream xmlStream) {#importFromXml-java.io.InputStream-} +``` +public static BarCodeReader importFromXml(InputStream xmlStream) +``` + + +Importe les propriétés BarCode depuis le flux xml spécifié et les applique à l'instance actuelle de BarCodeReader. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| xmlStream | java.io.InputStream | Le flux xml pour le chargement | + +**Returns:** +[BarCodeReader](../../com.aspose.barcode.barcoderecognition/barcodereader) - Returns **True** in case of success; + + **False** Otherwise +### importFromXml(String xmlFile) {#importFromXml-java.lang.String-} +``` +public static BarCodeReader importFromXml(String xmlFile) +``` + + +Importe les propriétés BarCode du fichier xml spécifié et les applique à l'instance actuelle de BarCodeReader. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| xmlFile | java.lang.String | Le nom du fichier | + +**Returns:** +[BarCodeReader](../../com.aspose.barcode.barcoderecognition/barcodereader) - Returns **True** in case of success; + + **False** Otherwise +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### readBarCodes() {#readBarCodes--} +``` +public BarCodeResult[] readBarCodes() +``` + + +Lit les BarCodeResult de l'image. + +-------------------- + +> ``` +> This sample shows how to read barcodes with BarCodeReader +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> reader.readBarCodes(); +> for(int i = 0; reader.getFoundCount() > i; ++i) +> System.out.println("BarCode CodeText: " + reader.getFoundBarCodes()[i].getCodeText()); +> ``` + +**Returns:** +com.aspose.barcode.barcoderecognition.BarCodeResult[] - Renvoie un tableau de BarCodeResult reconnus sur l'image. Si rien n'est reconnu, un tableau vide est renvoyé. +### setBarCodeImage(Bitmap value) {#setBarCodeImage-android.graphics.Bitmap-} +``` +public void setBarCodeImage(Bitmap value) +``` + + +Définit l'image bitmap pour la reconnaissance. Doit être appelée avant la méthode ReadBarCodes(). + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> Bitmap bmp = BitmapFactory.decodeFile("test.png"); +> BarCodeReader reader = new BarCodeReader()) +> { +> reader.setBarCodeReadType(DecodeType.CODE_39, DecodeType.CODE_128); +> reader.setBarCodeImage(bmp); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | android.graphics.Bitmap | L'image bitmap pour la reconnaissance. | + +### setBarCodeImage(Bitmap value, Rect area) {#setBarCodeImage-android.graphics.Bitmap-android.graphics.Rect-} +``` +public final void setBarCodeImage(Bitmap value, Rect area) +``` + + +Définit l'image bitmap et la zone pour la reconnaissance. Doit être appelée avant la méthode ReadBarCodes(). + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> Bitmap bmp = BitmapFactory.decodeFile("test.png"); +> BarCodeReader reader = new BarCodeReader(); +> reader.setBarCodeReadType(DecodeType.CODE_39, DecodeType.CODE_128); +> reader.setBarCodeImage(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight())); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | android.graphics.Bitmap | L'image bitmap pour la reconnaissance. | +| zone | android.graphics.Rect | zone pour la reconnaissance | + +### setBarCodeImage(Bitmap value, Rect[] areas) {#setBarCodeImage-android.graphics.Bitmap-android.graphics.Rect---} +``` +public final void setBarCodeImage(Bitmap value, Rect[] areas) +``` + + +Définit l'image bitmap et les zones pour la reconnaissance. Doit être appelée avant la méthode ReadBarCodes(). + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> Bitmap bmp = BitmapFactory.decodeFile("test.png"); +> BarCodeReader reader = new BarCodeReader(); +> reader.setBarCodeReadType(DecodeType.CODE_39, DecodeType.CODE_128); +> reader.setBarCodeImage(bmp, new Rectangle[] { new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()) }); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | android.graphics.Bitmap | L'image bitmap pour la reconnaissance. | +| zones | android.graphics.Rect[] | liste de zones pour la reconnaissance | + +### setBarCodeImage(InputStream stream) {#setBarCodeImage-java.io.InputStream-} +``` +public final void setBarCodeImage(InputStream stream) +``` + + +Définit le flux d'image pour la reconnaissance. Doit être appelée avant la méthode ReadBarCodes(). + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> InputStream fstr = new FileInputStream(new File("test.png")); +> BarCodeReader reader = new BarCodeReader(); +> reader.setBarCodeReadType(DecodeType.CODE_39, DecodeType.CODE_128); +> reader.setBarCodeImage(fstr); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.InputStream | Le flux d'image pour la reconnaissance. | + +### setBarCodeImage(String filename) {#setBarCodeImage-java.lang.String-} +``` +public void setBarCodeImage(String filename) +``` + + +Définit le fichier image pour la reconnaissance. Doit être appelé avant la méthode ReadBarCodes(). + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BarCodeReader reader = new BarCodeReader()) +> { +> reader.setBarCodeReadType(DecodeType.CODE_39, DecodeType.CODE_128); +> reader.setBarCodeImage("test.png"); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom de fichier | java.lang.String | Le fichier image pour la reconnaissance. | + +### setBarCodeReadType(BaseDecodeType type) {#setBarCodeReadType-com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public void setBarCodeReadType(BaseDecodeType type) +``` + + +Définit le type de décodage pour la reconnaissance. Doit être appelé avant la méthode ReadBarCodes(). + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BarCodeReader reader = new BarCodeReader(); +> reader.setBarCodeReadType(new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> reader.setBarCodeImage("test.png"); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> System.out.println("BarCodeReadType: " + reader.getBarCodeReadType().toString()); +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| type | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le type de code-barres à lire. | + +### setBarCodeReadType(SingleDecodeType[] barcodeTypes) {#setBarCodeReadType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-} +``` +public void setBarCodeReadType(SingleDecodeType[] barcodeTypes) +``` + + +Définit le tableau de type SingleDecodeType pour la reconnaissance. Doit être appelé avant la méthode ReadBarCodes(). + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BarCodeReader reader = new BarCodeReader(); +> reader.setBarCodeReadType(DecodeType.CODE_39, DecodeType.CODE_128); +> reader.setBarCodeImage("test.png"); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeTypes | [SingleDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Le tableau de type SingleDecodeType à lire. | + +### setQualitySettings(QualitySettings value) {#setQualitySettings-com.aspose.barcode.barcoderecognition.QualitySettings-} +``` +public final void setQualitySettings(QualitySettings value) +``` + + +QualitySettings permet de configurer manuellement la qualité et la vitesse de reconnaissance. Vous pouvez configurer rapidement QualitySettings à l'aide des préréglages intégrés : HighPerformance, NormalQuality, HighQuality, MaxBarCodes ou vous pouvez configurer manuellement des options séparées. La valeur par défaut de QualitySettings est NormalQuality. + +-------------------- + +> ``` +> This sample shows how to use QualitySettings with BarCodeReader +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> //set high performance mode +> reader.setQualitySettings(QualitySettings.getHighPerformance()); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> //normal quality mode is set by default +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> //set high performance mode +> reader.setQualitySettings(QualitySettings.getHighPerformance()); +> //set separate options +> reader.getQualitySettings().setAllowMedianSmoothing(true); +> reader.getQualitySettings().setMedianSmoothingWindowSize(5); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> ``` + +Valeur : QualitySettings pour configurer la qualité et la vitesse de reconnaissance. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [QualitySettings](../../com.aspose.barcode.barcoderecognition/qualitysettings) | | + +### setTimeout(int value) {#setTimeout-int-} +``` +public void setTimeout(int value) +``` + + +Définit le délai d'attente du processus de reconnaissance en millisecondes. + +``` +BarCodeReader reader = new BarCodeReader("test.png"); + reader.setTimeout(5000); + for(BarCodeResult result : reader.readBarCodes()) + System.out.println("BarCode CodeText: " + result.getCodeText()); +``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Le délai d'attente. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderecognitionexception/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderecognitionexception/_index.md new file mode 100644 index 000000000..9986dbf83 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderecognitionexception/_index.md @@ -0,0 +1,313 @@ +--- +title: BarCodeRecognitionException +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Exception générale lancée par BarCodeReader héritée de BarCodeException +type: docs +weight: 16 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/barcoderecognitionexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException +``` +public class BarCodeRecognitionException extends RuntimeException +``` + +Exception générale lancée par BarCodeReader, héritée de BarCodeException +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarCodeRecognitionException()](#BarCodeRecognitionException--) | Initialise une nouvelle instance de la classe BarCodeRecognitionException. | +| [BarCodeRecognitionException(String message)](#BarCodeRecognitionException-java.lang.String-) | Initialise une nouvelle instance de la classe BarCodeRecognitionException. | +| [BarCodeRecognitionException(String message, Exception innerException)](#BarCodeRecognitionException-java.lang.String-java.lang.Exception-) | Initialise une nouvelle instance de la classe BarCodeRecognitionException avec le message d'erreur spécifié et l'exception actuelle. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarCodeRecognitionException() {#BarCodeRecognitionException--} +``` +public BarCodeRecognitionException() +``` + + +Initialise une nouvelle instance de la classe BarCodeRecognitionException. + +### BarCodeRecognitionException(String message) {#BarCodeRecognitionException-java.lang.String-} +``` +public BarCodeRecognitionException(String message) +``` + + +Initialise une nouvelle instance de la classe BarCodeRecognitionException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | message d'erreur | + +### BarCodeRecognitionException(String message, Exception innerException) {#BarCodeRecognitionException-java.lang.String-java.lang.Exception-} +``` +public BarCodeRecognitionException(String message, Exception innerException) +``` + + +Initialise une nouvelle instance de la classe BarCodeRecognitionException avec le message d'erreur spécifié et l'exception actuelle. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Le message d'erreur de l'exception. | +| innerException | java.lang.Exception | L'exception actuelle est levée. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderegionparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderegionparameters/_index.md new file mode 100644 index 000000000..e0e99c243 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderegionparameters/_index.md @@ -0,0 +1,192 @@ +--- +title: BarCodeRegionParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Représente la région des codes-barres reconnus et l'angle du code-barres +type: docs +weight: 17 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/barcoderegionparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public final class BarCodeRegionParameters +``` + +Représente la région du code-barres reconnu et l'angle du code-barres + +-------------------- + +> ``` +> This sample shows how to get barcode Angle and bounding quadrangle values +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128, "12345"); +> generator.save("test.png"); +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_STANDARD, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> System.out.println("BarCode Angle: " + result.getRegion().getAngle()); +> System.out.println("BarCode Quadrangle: " + result.getRegion().getQuadrangle()); +> } +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à la valeur spécifiée de BarCodeRegionParameters. | +| [getAngle()](#getAngle--) | Obtient l'angle du code-barres (0-360). | +| [getClass()](#getClass--) | | +| [getPoints()](#getPoints--) | Obtient le tableau de Point s délimitant la région du code-barres | +| [getQuadrangle()](#getQuadrangle--) | Obtient le Aspose.BarCode.BarCodeRecognition.Quadrangle délimitant la région du code-barres | +| [getRectangle()](#getRectangle--) | Obtient le System.Drawing.Rectangle délimitant la région du code-barres | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de cet BarCodeRegionParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à la valeur spécifiée de BarCodeRegionParameters. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getAngle() {#getAngle--} +``` +public double getAngle() +``` + + +Obtient l'angle du code-barres (0-360). + +Valeur : L'angle du code-barres (0-360). + +**Returns:** +double +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getPoints() {#getPoints--} +``` +public Point[] getPoints() +``` + + +Obtient le tableau de Point s délimitant la région du code-barres + +Valeur : Renvoie le tableau de Point s délimitant la région du code-barres. + +**Returns:** +android.graphics.Point[] +### getQuadrangle() {#getQuadrangle--} +``` +public Quadrangle getQuadrangle() +``` + + +Obtient le Aspose.BarCode.BarCodeRecognition.Quadrangle délimitant la région du code-barres + +Valeur : Renvoie le Aspose.BarCode.BarCodeRecognition.Quadrangle délimitant la région du code-barres. + +**Returns:** +[Quadrangle](../../com.aspose.barcode.barcoderecognition/quadrangle) +### getRectangle() {#getRectangle--} +``` +public Rect getRectangle() +``` + + +Obtient le System.Drawing.Rectangle délimitant la région du code-barres + +Valeur : Renvoie le System.Drawing.Rectangle délimitant la région du code-barres. + +**Returns:** +android.graphics.Rect +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de cet BarCodeRegionParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ce BarCodeRegionParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderesult/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderesult/_index.md new file mode 100644 index 000000000..1e496fa85 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderesult/_index.md @@ -0,0 +1,307 @@ +--- +title: BarCodeResult +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke les données du code-barres reconnu comme SingleDecodeType type string codetext BarCodeRegionParameters region et d'autres paramètres +type: docs +weight: 18 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/barcoderesult/ +--- +**Inheritance:** +java.lang.Object +``` +public final class BarCodeResult +``` + +Stocke les données du code-barres reconnu comme le type SingleDecodeType, la chaîne codetext, les paramètres BarCodeRegionParameters region et d'autres paramètres + +-------------------- + +> ``` +> This sample shows how to obtain BarCodeResult. +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.CODE_128, "12345"); +> generator.save("test.png"); +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> System.out.println("BarCode Confidence: " + result.getConfidence()); +> System.out.println("BarCode ReadingQuality: " + result.getReadingQuality()); +> System.out.println("BarCode Angle: " + result.getRegion().getAngle()); +> } +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarCodeResult(BarCodeResult result)](#BarCodeResult-com.aspose.barcode.barcoderecognition.BarCodeResult-) | Crée une copie de la classe BarCodeResult. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [deepClone()](#deepClone--) | Crée une copie de la classe BarCodeResult. | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur BarCodeResult spécifiée. | +| [getClass()](#getClass--) | | +| [getCodeBytes()](#getCodeBytes--) | Obtient les octets du code encodés | +| [getCodeText()](#getCodeText--) | Obtient le texte du code | +| [getCodeText(Charset encoding)](#getCodeText-java.nio.charset.Charset-) | Obtient le texte du code avec encodage. | +| [getCodeType()](#getCodeType--) | Obtient le type de code-barres | +| [getCodeTypeName()](#getCodeTypeName--) | Obtient le nom du type de code-barres | +| [getConfidence()](#getConfidence--) | Obtient le niveau de confiance de reconnaissance du code-barres reconnu | +| [getExtended()](#getExtended--) | Obtient les paramètres étendus du code-barres reconnu | +| [getReadingQuality()](#getReadingQuality--) | Obtient la qualité de lecture. | +| [getRegion()](#getRegion--) | Obtient la région du code-barres | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce BarCodeResult. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarCodeResult(BarCodeResult result) {#BarCodeResult-com.aspose.barcode.barcoderecognition.BarCodeResult-} +``` +public BarCodeResult(BarCodeResult result) +``` + + +Crée une copie de la classe BarCodeResult. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| result | [BarCodeResult](../../com.aspose.barcode.barcoderecognition/barcoderesult) | Une copie de l'instance BarCodeResult. | + +### deepClone() {#deepClone--} +``` +public Object deepClone() +``` + + +Crée une copie de la classe BarCodeResult. + +**Returns:** +java.lang.Object - Renvoie une copie de la classe BarCodeResult. +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur BarCodeResult spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur BarCodeResult à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCodeBytes() {#getCodeBytes--} +``` +public byte[] getCodeBytes() +``` + + +Obtient les octets du code encodés + +Valeur : Les octets du code du code-barres + +**Returns:** +byte[] +### getCodeText() {#getCodeText--} +``` +public String getCodeText() +``` + + +Obtient le texte du code + +Valeur : Le texte du code-barres + +**Returns:** +java.lang.String +### getCodeText(Charset encoding) {#getCodeText-java.nio.charset.Charset-} +``` +public String getCodeText(Charset encoding) +``` + + +Obtient le texte du code avec encodage. + +-------------------- + +> ``` +> This example shows how to use ``` +> GetCodeText +> ```: +> +> BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.DATA_MATRIX); +> gen.setCodeText("\u8eca\u7a2e\u540d", Charset.forName("932")); +> gen.save("barcode.png", BarCodeImageFormat.PNG); +> +> BarCodeReader reader = new BarCodeReader("barcode.png", DecodeType.DATA_MATRIX); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText(Charset.forName("932"))); +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| encodage | java.nio.charset.Charset | L'encodage pour le texte du code. | + +**Returns:** +java.lang.String - Une chaîne contenant le texte du code reconnu. +### getCodeType() {#getCodeType--} +``` +public SingleDecodeType getCodeType() +``` + + +Obtient le type de code-barres + +Valeur : Les informations de type du code-barres reconnu + +**Returns:** +[SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) +### getCodeTypeName() {#getCodeTypeName--} +``` +public String getCodeTypeName() +``` + + +Obtient le nom du type de code-barres + +Valeur : Le nom du type du code-barres reconnu + +**Returns:** +java.lang.String +### getConfidence() {#getConfidence--} +``` +public int getConfidence() +``` + + +Obtient le niveau de confiance de reconnaissance du code-barres reconnu + +Valeur : BarCodeConfidence.Strong ne présente pas de faux ou de mauvaises reconnaissances, BarCodeConfidence.Moderate peut parfois contenir des faux ou un texte de code incorrect car ce niveau de confiance concerne les codes-barres avec un checksum faible ou même sans, BarCodeConfidence.None a toujours un texte de code incorrect et peut être des reconnaissances factices + +**Returns:** +int +### getExtended() {#getExtended--} +``` +public BarCodeExtendedParameters getExtended() +``` + + +Obtient les paramètres étendus du code-barres reconnu + +Valeur : Les paramètres étendus du code-barres reconnu + +**Returns:** +[BarCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/barcodeextendedparameters) +### getReadingQuality() {#getReadingQuality--} +``` +public double getReadingQuality() +``` + + +Obtient la qualité de lecture. Fonctionne pour les codes-barres 1D et postaux. + +Valeur : Le pourcentage de qualité de lecture + +**Returns:** +double +### getRegion() {#getRegion--} +``` +public BarCodeRegionParameters getRegion() +``` + + +Obtient la région du code-barres + +Valeur : La région du code-barres reconnu + +**Returns:** +[BarCodeRegionParameters](../../com.aspose.barcode.barcoderecognition/barcoderegionparameters) +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce BarCodeResult. + +**Returns:** +java.lang.String - Une chaîne qui représente ce BarCodeResult . +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderesultinternalcalls/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderesultinternalcalls/_index.md new file mode 100644 index 000000000..f80c10c64 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/barcoderesultinternalcalls/_index.md @@ -0,0 +1,149 @@ +--- +title: BarCodeResultInternalCalls +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 19 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/barcoderesultinternalcalls/ +--- +**Inheritance:** +java.lang.Object +``` +public class BarCodeResultInternalCalls +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarCodeResultInternalCalls()](#BarCodeResultInternalCalls--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [ctor(CodeResult aResult)](#ctor-com.aspose.barcode.barcoderecognition.recognition.recognitionsession.coderesult.CodeResult-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarCodeResultInternalCalls() {#BarCodeResultInternalCalls--} +``` +public BarCodeResultInternalCalls() +``` + + +### ctor(CodeResult aResult) {#ctor-com.aspose.barcode.barcoderecognition.recognition.recognitionsession.coderesult.CodeResult-} +``` +public static BarCodeResult ctor(CodeResult aResult) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| aResult | com.aspose.barcode.barcoderecognition.recognition.recognitionsession.coderesult.CodeResult | | + +**Returns:** +[BarCodeResult](../../com.aspose.barcode.barcoderecognition/barcoderesult) +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/barcodesettings/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodesettings/_index.md new file mode 100644 index 000000000..610910acf --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodesettings/_index.md @@ -0,0 +1,258 @@ +--- +title: BarcodeSettings +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Les principaux paramètres de décodage BarCode. +type: docs +weight: 20 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/barcodesettings/ +--- +**Inheritance:** +java.lang.Object +``` +public class BarcodeSettings +``` + +Les principaux paramètres de décodage BarCode. Contient des paramètres qui influencent les données reconnues. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAustraliaPost()](#getAustraliaPost--) | Gets AustraliaPost decoding parameters | +| [getChecksumValidation()](#getChecksumValidation--) | Active la validation du checksum pendant la reconnaissance des codes-barres 1D et postaux. | +| [getClass()](#getClass--) | | +| [getDetectEncoding()](#getDetectEncoding--) | The flag which force engine to detect codetext encoding for Unicode codesets. | +| [getStripFNC()](#getStripFNC--) | Strip FNC1, FNC2, FNC3 characters from codetext. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setChecksumValidation(ChecksumValidation value)](#setChecksumValidation-com.aspose.barcode.barcoderecognition.ChecksumValidation-) | Active la validation du checksum pendant la reconnaissance des codes-barres 1D et postaux. | +| [setDetectEncoding(boolean value)](#setDetectEncoding-boolean-) | The flag which force engine to detect codetext encoding for Unicode codesets. | +| [setStripFNC(boolean value)](#setStripFNC-boolean-) | Strip FNC1, FNC2, FNC3 characters from codetext. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAustraliaPost() {#getAustraliaPost--} +``` +public AustraliaPostSettings getAustraliaPost() +``` + + +Gets AustraliaPost decoding parameters + +**Returns:** +[AustraliaPostSettings](../../com.aspose.barcode.barcoderecognition/australiapostsettings) - The AustraliaPost decoding parameters which make influence on recognized data of AustraliaPost symbology +### getChecksumValidation() {#getChecksumValidation--} +``` +public ChecksumValidation getChecksumValidation() +``` + + +Enable checksum validation during recognition for 1D and Postal barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible. Checksum never used: Codabar, PatchCode, Pharmacode, DataLogic2of5 Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, ItalianPost25, Matrix2of5, MSI, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN Checksum always used: Rest symbologies Example BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.EAN\_13, "1234567890128"); generator.save("c:/test.png"); BarCodeReader reader = new BarCodeReader("c:/test.png", DecodeType.EAN\_13); //checksum disabled reader.getBarcodeSettings().setChecksumValidation(ChecksumValidation.OFF); for(BarCodeResult result : reader.readBarCodes()) \{ System.out.println("BarCode CodeText: " + result.getCodeText()); System.out.println("BarCode Value: " + result.getExtended().getOneD().getValue()); System.out.println("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); \} BarCodeReader reader = new BarCodeReader(@"c:\\test.png", DecodeType.EAN\_13); //checksum enabled reader.getBarcodeSettings().setChecksumValidation(ChecksumValidation.ON); for (BarCodeResult result : reader.readBarCodes()) \{ System.out.println("BarCode CodeText: " + result.CodeText); System.out.println("BarCode Value: " + result.getExtended().getOneD().getValue()); System.out.println("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); \} + +**Returns:** +[ChecksumValidation](../../com.aspose.barcode.barcoderecognition/checksumvalidation) - Enable checksum validation during recognition for 1D and Postal barcodes. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDetectEncoding() {#getDetectEncoding--} +``` +public boolean getDetectEncoding() +``` + + +The flag which force engine to detect codetext encoding for Unicode codesets. Default value is true. + +-------------------- + +> ``` +> This sample shows how to detect text encoding on the fly if DetectEncoding is enabled +> +> +> ByteArrayOutputStream ms = new ByteArrayOutputStream(); +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); +> generator.setCodeText("\u0421\u043b\u043e\u0432\u043e", StandardCharsets.UTF_8); +> generator.save(ms, BarCodeImageFormat.PNG); +> +> BarCodeReader reader = new BarCodeReader(new ByteArrayInputStream(ms.toByteArray()), DecodeType.QR); +> reader.getBarcodeSettings().setDetectEncoding(true); +> for (BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> //detect encoding is disabled +> reader = new BarCodeReader(new ByteArrayInputStream(ms.toByteArray()), DecodeType.QR); +> reader.getBarcodeSettings().setDetectEncoding(false); +> for (BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> ``` + +Value: The flag which force engine to detect codetext encoding for Unicode codesets + +**Returns:** +boolean +### getStripFNC() {#getStripFNC--} +``` +public boolean getStripFNC() +``` + + +Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false. Example BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS\_1\_CODE\_128, "(02)04006664241007(37)1(400)7019590754"); generator.save("c:/test.png"); BarCodeReader reader = new BarCodeReader("c:/test.png", DecodeType.CODE\_128); //StripFNC disabled reader.getBarcodeSettings().setStripFNC(false); for(BarCodeResult result : reader.readBarCodes()) \{ System.our.println("BarCode CodeText: " + result.getCodeText()); \} BarCodeReader reader = new BarCodeReader("c:/test.png", DecodeType.CODE\_128); //StripFNC enabled reader.getBarcodeSettings().setStripFNC(true); for(BarCodeResult result : reader.readBarCodes()) \{ System.our.println("BarCode CodeText: " + result.getCodeText()); \} + +**Returns:** +boolean - Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setChecksumValidation(ChecksumValidation value) {#setChecksumValidation-com.aspose.barcode.barcoderecognition.ChecksumValidation-} +``` +public void setChecksumValidation(ChecksumValidation value) +``` + + +Enable checksum validation during recognition for 1D and Postal barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible. Checksum never used: Codabar, PatchCode, Pharmacode, DataLogic2of5 Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, ItalianPost25, Matrix2of5, MSI, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN Checksum always used: Rest symbologies Example BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.EAN\_13, "1234567890128"); generator.save("c:/test.png"); BarCodeReader reader = new BarCodeReader("c:/test.png", DecodeType.EAN\_13); //checksum disabled reader.getBarcodeSettings().setChecksumValidation(ChecksumValidation.OFF); for(BarCodeResult result : reader.readBarCodes()) \{ System.out.println("BarCode CodeText: " + result.getCodeText()); System.out.println("BarCode Value: " + result.getExtended().getOneD().getValue()); System.out.println("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); \} BarCodeReader reader = new BarCodeReader(@"c:\\test.png", DecodeType.EAN\_13); //checksum enabled reader.getBarcodeSettings().setChecksumValidation(ChecksumValidation.ON); for (BarCodeResult result : reader.readBarCodes()) \{ System.out.println("BarCode CodeText: " + result.CodeText); System.out.println("BarCode Value: " + result.getExtended().getOneD().getValue()); System.out.println("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); \} + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [ChecksumValidation](../../com.aspose.barcode.barcoderecognition/checksumvalidation) | Active la validation du checksum pendant la reconnaissance des codes-barres 1D et postaux. | + +### setDetectEncoding(boolean value) {#setDetectEncoding-boolean-} +``` +public void setDetectEncoding(boolean value) +``` + + +The flag which force engine to detect codetext encoding for Unicode codesets. Default value is true. + +-------------------- + +> ``` +> This sample shows how to detect text encoding on the fly if DetectEncoding is enabled +> +> +> ByteArrayOutputStream ms = new ByteArrayOutputStream(); +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); +> generator.setCodeText("\u0421\u043b\u043e\u0432\u043e", StandardCharsets.UTF_8); +> generator.save(ms, BarCodeImageFormat.PNG); +> +> BarCodeReader reader = new BarCodeReader(new ByteArrayInputStream(ms.toByteArray()), DecodeType.QR); +> reader.getBarcodeSettings().setDetectEncoding(true); +> for (BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> //detect encoding is disabled +> reader = new BarCodeReader(new ByteArrayInputStream(ms.toByteArray()), DecodeType.QR); +> reader.getBarcodeSettings().setDetectEncoding(false); +> for (BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> ``` + +Value: The flag which force engine to detect codetext encoding for Unicode codesets + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setStripFNC(boolean value) {#setStripFNC-boolean-} +``` +public void setStripFNC(boolean value) +``` + + +Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false. Example BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS\_1\_CODE\_128, "(02)04006664241007(37)1(400)7019590754"); generator.save("c:/test.png"); BarCodeReader reader = new BarCodeReader("c:/test.png", DecodeType.CODE\_128); //StripFNC disabled reader.getBarcodeSettings().setStripFNC(false); for(BarCodeResult result : reader.readBarCodes()) \{ System.our.println("BarCode CodeText: " + result.getCodeText()); \} BarCodeReader reader = new BarCodeReader("c:/test.png", DecodeType.CODE\_128); //StripFNC enabled reader.getBarcodeSettings().setStripFNC(true); for(BarCodeResult result : reader.readBarCodes()) \{ System.our.println("BarCode CodeText: " + result.getCodeText()); \} + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/barcodesettingsinternal/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodesettingsinternal/_index.md new file mode 100644 index 000000000..1c1848b25 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodesettingsinternal/_index.md @@ -0,0 +1,160 @@ +--- +title: BarcodeSettingsInternal +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 21 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/barcodesettingsinternal/ +--- +**Inheritance:** +java.lang.Object +``` +public class BarcodeSettingsInternal +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarcodeSettingsInternal()](#BarcodeSettingsInternal--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [BarcodeSettingsCtor()](#BarcodeSettingsCtor--) | | +| [BarcodeSettingsCtor(BarcodeSettings barcodeSettings)](#BarcodeSettingsCtor-com.aspose.barcode.barcoderecognition.BarcodeSettings-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarcodeSettingsInternal() {#BarcodeSettingsInternal--} +``` +public BarcodeSettingsInternal() +``` + + +### BarcodeSettingsCtor() {#BarcodeSettingsCtor--} +``` +public static BarcodeSettings BarcodeSettingsCtor() +``` + + + + +**Returns:** +[BarcodeSettings](../../com.aspose.barcode.barcoderecognition/barcodesettings) +### BarcodeSettingsCtor(BarcodeSettings barcodeSettings) {#BarcodeSettingsCtor-com.aspose.barcode.barcoderecognition.BarcodeSettings-} +``` +public static BarcodeSettings BarcodeSettingsCtor(BarcodeSettings barcodeSettings) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeSettings | [BarcodeSettings](../../com.aspose.barcode.barcoderecognition/barcodesettings) | | + +**Returns:** +[BarcodeSettings](../../com.aspose.barcode.barcoderecognition/barcodesettings) +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/barcodesvmdetectorsettings/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodesvmdetectorsettings/_index.md new file mode 100644 index 000000000..82d3d27a7 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/barcodesvmdetectorsettings/_index.md @@ -0,0 +1,361 @@ +--- +title: BarcodeSvmDetectorSettings +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres du détecteur de code-barres. +type: docs +weight: 22 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/barcodesvmdetectorsettings/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +android.os.Parcelable +``` +public final class BarcodeSvmDetectorSettings implements Parcelable +``` + +Paramètres du détecteur de code-barres. +## Champs + +| Champ | Description | +| --- | --- | +| [CREATOR](#CREATOR) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [describeContents()](#describeContents--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getHighPerformance()](#getHighPerformance--) | Préréglage de détection haute performance. | +| [getHighQuality()](#getHighQuality--) | Préréglage de détection haute qualité. | +| [getMaxQuality()](#getMaxQuality--) | Préréglage de détection qualité maximale. | +| [getMedianFilterWindowSize()](#getMedianFilterWindowSize--) | Taille de la fenêtre pour le lissage médian. | +| [getNormalQuality()](#getNormalQuality--) | Préréglage de détection qualité normale. | +| [getRegionLikelihoodThresholdPercent()](#getRegionLikelihoodThresholdPercent--) | Définit le seuil pour les régions détectées pouvant contenir des codes-barres. | +| [getScanWindowSizes()](#getScanWindowSizes--) | Tailles de la fenêtre de numérisation en pixels. | +| [getSimilarityCoef()](#getSimilarityCoef--) | Le coefficient de similarité dépend de l'homogénéité des codes-barres. | +| [getSkipDiagonalSearch()](#getSkipDiagonalSearch--) | Autorise le détecteur à ignorer la recherche de codes-barres diagonaux. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setMedianFilterWindowSize(int value)](#setMedianFilterWindowSize-int-) | Taille de la fenêtre pour le lissage médian. | +| [setRegionLikelihoodThresholdPercent(float value)](#setRegionLikelihoodThresholdPercent-float-) | Définit le seuil pour les régions détectées pouvant contenir des codes-barres. | +| [setScanWindowSizes(List value)](#setScanWindowSizes-java.util.List-java.lang.Integer--) | Tailles de la fenêtre de numérisation en pixels. | +| [setSimilarityCoef(float value)](#setSimilarityCoef-float-) | Le coefficient de similarité dépend de l'homogénéité des codes-barres. | +| [setSkipDiagonalSearch(boolean value)](#setSkipDiagonalSearch-boolean-) | Autorise le détecteur à ignorer la recherche de codes-barres diagonaux. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [writeToParcel(Parcel dest, int flags)](#writeToParcel-android.os.Parcel-int-) | | +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### describeContents() {#describeContents--} +``` +public int describeContents() +``` + + + + +**Returns:** +int +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getHighPerformance() {#getHighPerformance--} +``` +public static BarcodeSvmDetectorSettings getHighPerformance() +``` + + +Préréglage de détection haute performance. + +Valeur par défaut pour QualitySettings.PresetType.HighPerformance + +**Returns:** +com.aspose.barcode.barcoderecognition.BarcodeSvmDetectorSettings +### getHighQuality() {#getHighQuality--} +``` +public static BarcodeSvmDetectorSettings getHighQuality() +``` + + +Préréglage de détection haute qualité. + +Valeur par défaut pour QualitySettings.PresetType.HighQualityDetection et QualitySettings.PresetType.HighQuality + +**Returns:** +com.aspose.barcode.barcoderecognition.BarcodeSvmDetectorSettings +### getMaxQuality() {#getMaxQuality--} +``` +public static BarcodeSvmDetectorSettings getMaxQuality() +``` + + +Préréglage de détection qualité maximale. + +Valeur par défaut pour QualitySettings.PresetType.MaxQualityDetection et QualitySettings.PresetType.MaxBarCodes + +**Returns:** +com.aspose.barcode.barcoderecognition.BarcodeSvmDetectorSettings +### getMedianFilterWindowSize() {#getMedianFilterWindowSize--} +``` +public int getMedianFilterWindowSize() +``` + + +Taille de la fenêtre pour le lissage médian. + +Les valeurs typiques sont 3 ou 4. 0 signifie aucun lissage médian. La valeur par défaut est 0. La taille de la fenêtre du filtre médian doit être comprise entre [0, 10] + +**Returns:** +int +### getNormalQuality() {#getNormalQuality--} +``` +public static BarcodeSvmDetectorSettings getNormalQuality() +``` + + +Préréglage de détection qualité normale. + +Valeur par défaut pour QualitySettings.PresetType.NormalQuality + +**Returns:** +com.aspose.barcode.barcoderecognition.BarcodeSvmDetectorSettings +### getRegionLikelihoodThresholdPercent() {#getRegionLikelihoodThresholdPercent--} +``` +public float getRegionLikelihoodThresholdPercent() +``` + + +Définit le seuil pour les régions détectées pouvant contenir des codes-barres. + +La valeur 0,7 signifie que les 70 % inférieurs des régions possibles sont filtrés et ne sont pas traités davantage. Le seuil de probabilité de région doit être compris entre [0,05, 0,9]. Utilisez des valeurs élevées pour des images claires avec peu de codes-barres. Utilisez des valeurs faibles pour des images contenant de nombreux codes-barres ou pour des images bruitées. Une valeur faible peut entraîner un temps de reconnaissance plus long. + +**Returns:** +float +### getScanWindowSizes() {#getScanWindowSizes--} +``` +public List getScanWindowSizes() +``` + + +Tailles de la fenêtre de numérisation en pixels. + +Les tailles autorisées sont 10, 15, 20, 25, 30. Le numérisation avec une petite taille de fenêtre prend plus de temps et offre une plus grande précision mais peut échouer à détecter des codes-barres très grands. La combinaison de plusieurs tailles de fenêtre peut améliorer la qualité de détection. + +**Returns:** +java.util.List +### getSimilarityCoef() {#getSimilarityCoef--} +``` +public float getSimilarityCoef() +``` + + +Le coefficient de similarité dépend de l'homogénéité des codes-barres. + +Utilisez une valeur élevée pour des codes-barres clairs. Utilisez des valeurs faibles pour détecter des codes-barres partiellement endommagés ou mal éclairés uniformément. Le coefficient de similarité doit être compris entre [0,5, 0,9] + +**Returns:** +float +### getSkipDiagonalSearch() {#getSkipDiagonalSearch--} +``` +public boolean getSkipDiagonalSearch() +``` + + +Autorise le détecteur à ignorer la recherche de codes-barres diagonaux. + +Le définir sur false augmentera le temps de détection mais permettra de trouver des codes-barres diagonaux qui pourraient autrement être manqués. L'activation de la recherche diagonale entraîne un temps de détection plus long. + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setMedianFilterWindowSize(int value) {#setMedianFilterWindowSize-int-} +``` +public void setMedianFilterWindowSize(int value) +``` + + +Taille de la fenêtre pour le lissage médian. + +Les valeurs typiques sont 3 ou 4. 0 signifie aucun lissage médian. La valeur par défaut est 0. La taille de la fenêtre du filtre médian doit être comprise entre [0, 10] + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setRegionLikelihoodThresholdPercent(float value) {#setRegionLikelihoodThresholdPercent-float-} +``` +public void setRegionLikelihoodThresholdPercent(float value) +``` + + +Définit le seuil pour les régions détectées pouvant contenir des codes-barres. + +La valeur 0,7 signifie que les 70 % inférieurs des régions possibles sont filtrés et ne sont pas traités davantage. Le seuil de probabilité de région doit être compris entre [0,05, 0,9]. Utilisez des valeurs élevées pour des images claires avec peu de codes-barres. Utilisez des valeurs faibles pour des images contenant de nombreux codes-barres ou pour des images bruitées. Une valeur faible peut entraîner un temps de reconnaissance plus long. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setScanWindowSizes(List value) {#setScanWindowSizes-java.util.List-java.lang.Integer--} +``` +public void setScanWindowSizes(List value) +``` + + +Tailles de la fenêtre de numérisation en pixels. + +Les tailles autorisées sont 10, 15, 20, 25, 30. Le numérisation avec une petite taille de fenêtre prend plus de temps et offre une plus grande précision mais peut échouer à détecter des codes-barres très grands. La combinaison de plusieurs tailles de fenêtre peut améliorer la qualité de détection. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.util.List | | + +### setSimilarityCoef(float value) {#setSimilarityCoef-float-} +``` +public void setSimilarityCoef(float value) +``` + + +Le coefficient de similarité dépend de l'homogénéité des codes-barres. + +Utilisez une valeur élevée pour des codes-barres clairs. Utilisez des valeurs faibles pour détecter des codes-barres partiellement endommagés ou mal éclairés uniformément. Le coefficient de similarité doit être compris entre [0,5, 0,9] + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setSkipDiagonalSearch(boolean value) {#setSkipDiagonalSearch-boolean-} +``` +public void setSkipDiagonalSearch(boolean value) +``` + + +Autorise le détecteur à ignorer la recherche de codes-barres diagonaux. + +Le définir sur false augmentera le temps de détection mais permettra de trouver des codes-barres diagonaux qui pourraient autrement être manqués. L'activation de la recherche diagonale entraîne un temps de détection plus long. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### writeToParcel(Parcel dest, int flags) {#writeToParcel-android.os.Parcel-int-} +``` +public void writeToParcel(Parcel dest, int flags) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dest | android.os.Parcel | | +| flags | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/_index.md new file mode 100644 index 000000000..49d5fee46 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/_index.md @@ -0,0 +1,235 @@ +--- +title: BaseDecodeType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe de base pour MultiDecodeType et SingleDecodeType. +type: docs +weight: 23 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract class BaseDecodeType +``` + +Classe de base pour MultiDecodeType et SingleDecodeType. + +-------------------- + +> ``` +> This sample shows how to use BaseDecodeType with SingleDecodeType and MultiDecodeType +> +> BaseDecodeType decodeOne = DecodeType.CODE_128; +> BaseDecodeType decodeTwo = new MultiDecodeType(DecodeType.CODE_128, DecodeType.CODE_39_STANDARD, DecodeType.CODE_39_FULL_ASCII); +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [containsAny(BaseDecodeType[] types)](#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Détermine si l'un des types de décodage fournis est inclus dans | +| [equals(MultiDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-) | Renvoie une valeur indiquant si cette instance est égale à une valeur [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) spécifiée. | +| [equals(SingleDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Renvoie une valeur indiquant si cette instance est égale à une valeur [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) spécifiée. | +| [equals(Object other)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) spécifiée. | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [tryParseBaseDecodeType(String parsingType)](#tryParseBaseDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un BaseDecodeType en son instance, après avoir déterminé le type concret. | +| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un MultiDecodeType en son instance. | +| [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un SingleDecodeType en son instance. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### containsAny(BaseDecodeType[] types) {#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public abstract boolean containsAny(BaseDecodeType[] types) +``` + + +Détermine si l'un des types de décodage fournis est inclus dans + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| types | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Types à vérifier. | + +**Returns:** +boolean - La valeur est vraie si un type quelconque est inclus dans. +### equals(MultiDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-} +``` +public boolean equals(MultiDecodeType other) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| autre | com.aspose.barcode.barcoderecognition.MultiDecodeType | Une valeur java.lang.Object à comparer à cette instance. | + +**Returns:** +booléen - Vrai si l'objet a la même valeur que cette instance ; sinon, faux. +### equals(SingleDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public boolean equals(SingleDecodeType other) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| other | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Une valeur java.lang.Object à comparer à cette instance. | + +**Returns:** +booléen - Vrai si l'objet a la même valeur que cette instance ; sinon, faux. +### equals(Object other) {#equals-java.lang.Object-} +``` +public boolean equals(Object other) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| autre | java.lang.Object | Une valeur java.lang.Object à comparer à cette instance. | + +**Returns:** +booléen - Vrai si l'objet a la même valeur que cette instance ; sinon, faux. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### tryParseBaseDecodeType(String parsingType) {#tryParseBaseDecodeType-java.lang.String-} +``` +public static BaseDecodeType tryParseBaseDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un BaseDecodeType en son instance, après avoir déterminé le type concret. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant une représentation MultiDecodeType à convertir. | + +**Returns:** +[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultiDecodeType is returned, when conversion has completed successfully; + +sinon, elle renvoie un type indéfini. ou MultiDecodeType ("None"). +### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-} +``` +public static MultiDecodeType tryParseMultiDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un MultiDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant une représentation MultiDecodeType à convertir. | + +**Returns:** +com.aspose.barcode.barcoderecognition.MultiDecodeType - Un MultiDecodeType réel est renvoyé lorsque la conversion s'est terminée avec succès; + +sinon, elle renvoie un type indéfini. ou MultiDecodeType ("None"). +### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-} +``` +public static SingleDecodeType tryParseSingleDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un SingleDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant un SingleDecodeType au format "EAN8" ou "EAN13" ou "CodaBar"... à convertir. | + +**Returns:** +[SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) - An actual SingleDecodeType is returned, when conversion has completed successfully; + +sinon, elle renvoie un type indéfini. ou SingleDecodeType (-1, "None"). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/baseextendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/baseextendedparameters/_index.md new file mode 100644 index 000000000..61eed7d86 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/baseextendedparameters/_index.md @@ -0,0 +1,137 @@ +--- +title: BaseExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe de base pour le stockage des paramètres étendus du code-barres reconnu +type: docs +weight: 24 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/baseextendedparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract class BaseExtendedParameters +``` + +Classe de base pour le stockage des paramètres étendus du code-barres reconnu +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/_index.md new file mode 100644 index 000000000..7d79a2a4a --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/_index.md @@ -0,0 +1,309 @@ +--- +title: ChecksumValidation +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 52 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum ChecksumValidation extends Enum +``` + +Active la validation du checksum pendant la reconnaissance des codes-barres 1D et postaux. + +Par défaut, il est traité comme Yes pour les symbologies qui doivent contenir un checksum, comme No là où le checksum n'est possible que. + +Checksum jamais utilisé : Codabar, PatchCode, Pharmacode, DataLogic2of5 + +Checksum possible : Code39 Standard/Extended, Standard2of5, Interleaved2of5, ItalianPost25, Matrix2of5, MSI, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN + +Checksum toujours utilisé : le reste des symbologies + +-------------------- + +> ``` +> This sample shows influence of ChecksumValidation on recognition quality and results +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.EAN_13, "1234567890128"); +> { +> generator.save("test.png"); +> } +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.EAN_13)) +> { +> //checksum disabled +> reader.getBarcodeSettings().setChecksumValidation(ChecksumValidation.OFF); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> System.out.println("BarCode Value: " + result.getExtended().getOneD().getValue()); +> System.out.println("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); +> } +> } +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.EAN_13); +> //checksum enabled +> reader.getBarcodeSettings().setChecksumValidation(ChecksumValidation.ON); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> System.out.println("BarCode Value: " + result.getExtended().getOneD().getValue()); +> System.out.println("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); +> } +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [DEFAULT](#DEFAULT) | Si le checksum est requis par la spécification - il sera validé. | +| [OFF](#OFF) | Ne pas valider le checksum. | +| [ON](#ON) | Toujours valider le checksum si possible. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### DEFAULT {#DEFAULT} +``` +public static final ChecksumValidation DEFAULT +``` + + +Si le checksum est requis par la spécification - il sera validé. + +### OFF {#OFF} +``` +public static final ChecksumValidation OFF +``` + + +Ne pas valider le checksum. + +### ON {#ON} +``` +public static final ChecksumValidation ON +``` + + +Toujours valider le checksum si possible. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static ChecksumValidation valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[ChecksumValidation](../../com.aspose.barcode.barcoderecognition/checksumvalidation) +### values() {#values--} +``` +public static ChecksumValidation[] values() +``` + + + + +**Returns:** +com.aspose.barcode.barcoderecognition.ChecksumValidation[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/codabarextendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/codabarextendedparameters/_index.md new file mode 100644 index 000000000..b093690f8 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/codabarextendedparameters/_index.md @@ -0,0 +1,271 @@ +--- +title: CodabarExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke une information supplémentaire Codabar du code-barres reconnu +type: docs +weight: 25 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/codabarextendedparameters/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) +``` +public final class CodabarExtendedParameters extends BaseExtendedParameters +``` + +Stocke une information supplémentaire Codabar du code-barres reconnu +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Retourne une valeur indiquant si cette instance est égale à une valeur [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) spécifiée. | +| [getClass()](#getClass--) | | +| [getCodabarStartSymbol()](#getCodabarStartSymbol--) | Obtient un symbole de début Codabar. | +| [getCodabarStopSymbol()](#getCodabarStopSymbol--) | Obtient un symbole de fin Codabar. | +| [getStartSymbol()](#getStartSymbol--) | Obtient un symbole de début Codabar. | +| [getStopSymbol()](#getStopSymbol--) | Obtient un symbole de fin Codabar. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [op_Equality(CodabarExtendedParameters first, CodabarExtendedParameters second)](#op-Equality-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-) | Retourne une valeur indiquant si la première valeur [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) est égale à la seconde. | +| [op_Inequality(CodabarExtendedParameters first, CodabarExtendedParameters second)](#op-Inequality-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-) | Retourne une valeur indiquant si la première valeur [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) est différente de la seconde. | +| [setCodabarStartSymbol(short value)](#setCodabarStartSymbol-short-) | Définit un symbole de début Codabar. | +| [setCodabarStopSymbol(short value)](#setCodabarStopSymbol-short-) | Définit un symbole de fin Codabar. | +| [setStartSymbol(short value)](#setStartSymbol-short-) | Définit un symbole de début Codabar. | +| [setStopSymbol(short value)](#setStopSymbol-short-) | Définit un symbole de fin Codabar. | +| [toString()](#toString--) | Retourne une représentation sous forme de chaîne lisible par l'homme de ce [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Retourne une valeur indiquant si cette instance est égale à une valeur [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCodabarStartSymbol() {#getCodabarStartSymbol--} +``` +public final short getCodabarStartSymbol() +``` + + +Obtient un symbole de démarrage Codabar. Valeur par défaut : CodabarSymbol.A + +**Returns:** +short - un symbole de démarrage Codabar. +### getCodabarStopSymbol() {#getCodabarStopSymbol--} +``` +public final short getCodabarStopSymbol() +``` + + +Obtient un symbole d'arrêt Codabar. Valeur par défaut : CodabarSymbol.A + +**Returns:** +short - un symbole d'arrêt Codabar. +### getStartSymbol() {#getStartSymbol--} +``` +public final short getStartSymbol() +``` + + +Obtient un symbole de démarrage Codabar. Valeur par défaut : CodabarSymbol.A + +**Returns:** +short - un symbole de démarrage Codabar. +### getStopSymbol() {#getStopSymbol--} +``` +public final short getStopSymbol() +``` + + +Obtient un symbole d'arrêt Codabar. Valeur par défaut : CodabarSymbol.A + +**Returns:** +short - un symbole d'arrêt Codabar. +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### op_Equality(CodabarExtendedParameters first, CodabarExtendedParameters second) {#op-Equality-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-} +``` +public static boolean op_Equality(CodabarExtendedParameters first, CodabarExtendedParameters second) +``` + + +Retourne une valeur indiquant si la première valeur [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) est égale à la seconde. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| first | [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) | Une première valeur comparée | +| second | [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) | Une seconde valeur comparée | + +**Returns:** +boolean - **true** si le premier a la même valeur que le second ; sinon, **false** . +### op_Inequality(CodabarExtendedParameters first, CodabarExtendedParameters second) {#op-Inequality-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-} +``` +public static boolean op_Inequality(CodabarExtendedParameters first, CodabarExtendedParameters second) +``` + + +Retourne une valeur indiquant si la première valeur [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) est différente de la seconde. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| first | [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) | Une première valeur comparée | +| second | [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) | Une seconde valeur comparée | + +**Returns:** +boolean - **true** si le premier a une valeur différente du second ; sinon, **false** . +### setCodabarStartSymbol(short value) {#setCodabarStartSymbol-short-} +``` +public final void setCodabarStartSymbol(short value) +``` + + +Définit un symbole de démarrage Codabar. Valeur par défaut : CodabarSymbol.A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | short | un symbole de démarrage Codabar. | + +### setCodabarStopSymbol(short value) {#setCodabarStopSymbol-short-} +``` +public final void setCodabarStopSymbol(short value) +``` + + +Définit un symbole d'arrêt Codabar. Valeur par défaut : CodabarSymbol.A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | short | un symbole d'arrêt Codabar. | + +### setStartSymbol(short value) {#setStartSymbol-short-} +``` +public final void setStartSymbol(short value) +``` + + +Définit un symbole de démarrage Codabar. Valeur par défaut : CodabarSymbol.A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | short | un symbole de démarrage Codabar. | + +### setStopSymbol(short value) {#setStopSymbol-short-} +``` +public final void setStopSymbol(short value) +``` + + +Définit un symbole d'arrêt Codabar. Valeur par défaut : CodabarSymbol.A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | short | un symbole d'arrêt Codabar. | + +### toString() {#toString--} +``` +public String toString() +``` + + +Retourne une représentation sous forme de chaîne lisible par l'homme de ce [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente ce [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/code128dataportion/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/code128dataportion/_index.md new file mode 100644 index 000000000..b7d386918 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/code128dataportion/_index.md @@ -0,0 +1,160 @@ +--- +title: Code128DataPortion +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Contient les données du sous-type pour le code-barres de type Code128 +type: docs +weight: 26 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/code128dataportion/ +--- +**Inheritance:** +java.lang.Object +``` +public class Code128DataPortion +``` + +Contient les données du sous-type pour le code-barres de type Code128 +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de Code128DataPortion. | +| [getClass()](#getClass--) | | +| [getCode128SubType()](#getCode128SubType--) | Obtient le type du sous-ensemble Code128 | +| [getData()](#getData--) | Obtient la partie du texte du code liée au sous-type. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setData(String value)](#setData-java.lang.String-) | Obtient la partie du texte du code liée au sous-type. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce Code128DataPortion. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de Code128DataPortion. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCode128SubType() {#getCode128SubType--} +``` +public int getCode128SubType() +``` + + +Obtient le type du sous-ensemble Code128 + +**Returns:** +int - Le type du sous-ensemble Code128 +### getData() {#getData--} +``` +public String getData() +``` + + +Obtient la partie du texte du code liée au sous-type. + +**Returns:** +java.lang.String - La partie du texte du code liée au sous-type +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setData(String value) {#setData-java.lang.String-} +``` +public void setData(String value) +``` + + +Obtient la partie du texte du code liée au sous-type. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce Code128DataPortion. + +**Returns:** +java.lang.String - Une chaîne qui représente ce Code128DataPortion. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/code128dataportioninternal/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/code128dataportioninternal/_index.md new file mode 100644 index 000000000..c9fad43d3 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/code128dataportioninternal/_index.md @@ -0,0 +1,165 @@ +--- +title: Code128DataPortionInternal +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 27 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/code128dataportioninternal/ +--- +**Inheritance:** +java.lang.Object +``` +public class Code128DataPortionInternal +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [Code128DataPortionInternal()](#Code128DataPortionInternal--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [Code128DataPortionCtor(int code128SubType, String data)](#Code128DataPortionCtor-int-java.lang.String-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setData(Code128DataPortion code128DataPortion, String value)](#setData-com.aspose.barcode.barcoderecognition.Code128DataPortion-java.lang.String-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Code128DataPortionInternal() {#Code128DataPortionInternal--} +``` +public Code128DataPortionInternal() +``` + + +### Code128DataPortionCtor(int code128SubType, String data) {#Code128DataPortionCtor-int-java.lang.String-} +``` +public static Code128DataPortion Code128DataPortionCtor(int code128SubType, String data) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| code128SubType | int | | +| data | java.lang.String | | + +**Returns:** +[Code128DataPortion](../../com.aspose.barcode.barcoderecognition/code128dataportion) +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setData(Code128DataPortion code128DataPortion, String value) {#setData-com.aspose.barcode.barcoderecognition.Code128DataPortion-java.lang.String-} +``` +public static void setData(Code128DataPortion code128DataPortion, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| code128DataPortion | [Code128DataPortion](../../com.aspose.barcode.barcoderecognition/code128dataportion) | | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/code128extendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/code128extendedparameters/_index.md new file mode 100644 index 000000000..2753e5280 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/code128extendedparameters/_index.md @@ -0,0 +1,168 @@ +--- +title: Code128ExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke les données spéciales du code‑barres Code128 reconnu +type: docs +weight: 28 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/code128extendedparameters/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) +``` +public final class Code128ExtendedParameters extends BaseExtendedParameters +``` + +Stocke les données spéciales du code‑barres Code128 reconnu + +Représente la région du code-barres reconnu et l'angle du code-barres + +-------------------- + +> ``` +> This sample shows how to get code128 raw values +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128, "12345"); +> generator.save("test.png"); +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> System.out.println("Code128 Data Portions: " + result.getExtended().getCode128()); +> } +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de Code128ExtendedParameters. | +| [getClass()](#getClass--) | | +| [getCode128DataPortions()](#getCode128DataPortions--) | Obtient le tableau Code128DataPortion des codes-barres Code128 reconnus. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce Code128ExtendedParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de Code128ExtendedParameters. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCode128DataPortions() {#getCode128DataPortions--} +``` +public Code128DataPortion[] getCode128DataPortions() +``` + + +Obtient le tableau Code128DataPortion des codes-barres Code128 reconnus. + +Valeur : tableau de Code128DataPortion. + +**Returns:** +com.aspose.barcode.barcoderecognition.Code128DataPortion[] +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce Code128ExtendedParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ce Code128ExtendedParameters . +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/code128subtype/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/code128subtype/_index.md new file mode 100644 index 000000000..8b7d38e08 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/code128subtype/_index.md @@ -0,0 +1,166 @@ +--- +title: Code128SubType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Contient les types du sous‑ensemble Code128 +type: docs +weight: 29 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/code128subtype/ +--- +**Inheritance:** +java.lang.Object +``` +public final class Code128SubType +``` + +Contient les types du sous‑ensemble Code128 +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [Code128SubType()](#Code128SubType--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [CODE_SET_A](#CODE-SET-A) | Caractères ASCII 00 à 95 (0\u20139, A\u2013Z et codes de contrôle), caractères spéciaux et FNC 1\u20134 /// | +| [CODE_SET_B](#CODE-SET-B) | Caractères ASCII 32 à 127 (0\u20139, A\u2013Z, a\u2013z), caractères spéciaux et FNC 1\u20134 /// | +| [CODE_SET_C](#CODE-SET-C) | 00\u201399 (encode deux chiffres avec un seul point de code) et FNC1 /// | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Code128SubType() {#Code128SubType--} +``` +public Code128SubType() +``` + + +### CODE_SET_A {#CODE-SET-A} +``` +public static final int CODE_SET_A +``` + + +Caractères ASCII 00 à 95 (0\u20139, A\u2013Z et codes de contrôle), caractères spéciaux et FNC 1\u20134 /// + +### CODE_SET_B {#CODE-SET-B} +``` +public static final int CODE_SET_B +``` + + +Caractères ASCII 32 à 127 (0\u20139, A\u2013Z, a\u2013z), caractères spéciaux et FNC 1\u20134 /// + +### CODE_SET_C {#CODE-SET-C} +``` +public static final int CODE_SET_C +``` + + +00\u201399 (encode deux chiffres avec un seul point de code) et FNC1 /// + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/complexbackgroundmode/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/complexbackgroundmode/_index.md new file mode 100644 index 000000000..2b6acd5b7 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/complexbackgroundmode/_index.md @@ -0,0 +1,297 @@ +--- +title: ComplexBackgroundMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 53 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/complexbackgroundmode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum ComplexBackgroundMode extends Enum +``` + +Mode qui active ou désactive la reconnaissance supplémentaire des codes-barres couleur sur des images couleur. + +-------------------- + +> ``` +> This sample shows how to use ComplexBackground mode +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> reader.getQualitySettings().setComplexBackground(ComplexBackgroundMode.ENABLED); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | At this time the same as Disabled. | +| [DISABLED](#DISABLED) | Disables additional recognition of color barcodes on color images. | +| [ENABLED](#ENABLED) | Enables additional recognition of color barcodes on color images. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromValue(int value)](#fromValue-int-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final ComplexBackgroundMode AUTO +``` + + +At this time the same as Disabled. Disables additional recognition of color barcodes on color images. + +### DISABLED {#DISABLED} +``` +public static final ComplexBackgroundMode DISABLED +``` + + +Disables additional recognition of color barcodes on color images. + +### ENABLED {#ENABLED} +``` +public static final ComplexBackgroundMode ENABLED +``` + + +Enables additional recognition of color barcodes on color images. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromValue(int value) {#fromValue-int-} +``` +public static ComplexBackgroundMode fromValue(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[ComplexBackgroundMode](../../com.aspose.barcode.barcoderecognition/complexbackgroundmode) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static ComplexBackgroundMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[ComplexBackgroundMode](../../com.aspose.barcode.barcoderecognition/complexbackgroundmode) +### values() {#values--} +``` +public static ComplexBackgroundMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.barcoderecognition.ComplexBackgroundMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype/_index.md new file mode 100644 index 000000000..1d545a4df --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype/_index.md @@ -0,0 +1,317 @@ +--- +title: CustomerInformationInterpretingType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Définit le type d'interprétation C_TABLE ou N_TABLE des informations client pour le code-barres AustralianPost. +type: docs +weight: 54 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum CustomerInformationInterpretingType extends Enum +``` + +Définit le type d'interprétation (C\_TABLE ou N\_TABLE) des informations client pour le code‑barres AustralianPost. + +Cet exemple montre comment générer et reconnaître le code-barres Australia Post avec le type d'interprétation CTable. + +-------------------- + +> ``` +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AustraliaPost, "5912345678ABCde"); +> generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.C_TABLE); +> Bitmap image = generator.generateBarCodeImage(); +> BarCodeReader reader = new BarCodeReader(image, DecodeType.AUSTRALIA_POST); +> reader.getBarcodeSettings().getAustraliaPost().setCustomerInformationInterpretingType(CustomerInformationInterpretingType.C_TABLE); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeType()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +-------------------- + +> ``` +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AustraliaPost, "59123456781234567")) +> generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.N_TABLE); +> Bitmap image = generator.generateBarCodeImage(); +> BarCodeReader reader = new BarCodeReader(image, DecodeType.AUSTRALIA_POST)) +> reader.getBarcodeSettings().getAustraliaPost().setCustomerInformationInterpretingType(CustomerInformationInterpretingType.N_TABLE); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeType()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` + +-------------------- + +> ``` +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA_POST, "59123456780123012301230123"); +> generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.OTHER); +> Bitmap image = generator.generateBarCodeImage(); +> BarCodeReader reader = new BarCodeReader(image, DecodeType.AUSTRALIA_POST); +> reader.getBarcodeSettings().getAustraliaPost().setCustomerInformationInterpretingType(CustomerInformationInterpretingType.OTHER); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeType()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [C_TABLE](#C-TABLE) | Utilisez C\_TABLE pour interpréter les informations client. | +| [N_TABLE](#N-TABLE) | Utilisez N\_TABLE pour interpréter les informations client. | +| [OTHER](#OTHER) | N'interprétez pas les informations client. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### C_TABLE {#C-TABLE} +``` +public static final CustomerInformationInterpretingType C_TABLE +``` + + +Utilisez C\_TABLE pour interpréter les informations client. Autorise A..Z, a..z, 1..9, l'espace et le caractère \#. + +### N_TABLE {#N-TABLE} +``` +public static final CustomerInformationInterpretingType N_TABLE +``` + + +Utilisez N\_TABLE pour interpréter les informations client. Autorise les chiffres. + +### OTHER {#OTHER} +``` +public static final CustomerInformationInterpretingType OTHER +``` + + +N'interprétez pas les informations client. Autorise uniquement le symbole 0, 1, 2 ou 3. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static CustomerInformationInterpretingType valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) +### values() {#values--} +``` +public static CustomerInformationInterpretingType[] values() +``` + + + + +**Returns:** +com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/databarextendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/databarextendedparameters/_index.md new file mode 100644 index 000000000..661c5fff5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/databarextendedparameters/_index.md @@ -0,0 +1,148 @@ +--- +title: DataBarExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke des informations supplémentaires DataBar du code-barres reconnu BarCodeReader reader new BarCodeReadertest.png DecodeType.DATABAR_OMNI_DIRECTIONAL forBarCodeResult result reader.readBarCodes System.out.printlnBarCode Type result.getCodeTypeName System.out.printlnBarCode CodeText result.getCodeText System.out.printlnQR Structured Append Quantity result.getExtended.getQR.getQRStructuredAppendModeBarCodesQuantity +type: docs +weight: 30 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/databarextendedparameters/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) +``` +public class DataBarExtendedParameters extends BaseExtendedParameters +``` + +Stocke des informations supplémentaires DataBar du code‑barres reconnu BarCodeReader reader = new BarCodeReader("test.png", DecodeType.DATABAR\_OMNI\_DIRECTIONAL); for(BarCodeResult result : reader.readBarCodes()) System.out.println("BarCode Type: " + result.getCodeTypeName()); System.out.println("BarCode CodeText: " + result.getCodeText()); System.out.println("QR Structured Append Quantity: " + result.getExtended().getQR().getQRStructuredAppendModeBarCodesQuantity()); +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée. | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [is2DCompositeComponent()](#is2DCompositeComponent--) | Obtient le drapeau du composant composite DataBar 2D. | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de cet objet. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +booléen - **true** si obj a la même valeur que cette instance ; sinon, **false**. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### is2DCompositeComponent() {#is2DCompositeComponent--} +``` +public boolean is2DCompositeComponent() +``` + + +Obtient le drapeau du composant composite DataBar 2D. La valeur par défaut est false. + +**Returns:** +booléen - Le drapeau du composant composite DataBar 2D. +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de cet objet. + +**Returns:** +java.lang.String - Une chaîne qui représente ceci. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/datamatrixextendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/datamatrixextendedparameters/_index.md new file mode 100644 index 000000000..4a6c6926b --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/datamatrixextendedparameters/_index.md @@ -0,0 +1,241 @@ +--- +title: DataMatrixExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke les données spéciales du code‑barres DataMatrix reconnu +type: docs +weight: 31 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/datamatrixextendedparameters/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) +``` +public final class DataMatrixExtendedParameters extends BaseExtendedParameters +``` + +Stocke les données spéciales du code‑barres DataMatrix reconnu + +-------------------- + +> ``` +> This sample shows how to get DataMatrix raw values +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX, "12345"); +> generator.save("c:\\test.png"); +> +> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.DATA_MATRIX); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode type: " + result.getCodeTypeName()); +> System.out.println("BarCode codetext: " + result.getCodeText); +> System.out.println("DataMatrix barcode ID: " + result.getExtended().getDataMatrix().getStructuredAppendBarcodeId()); +> System.out.println("DataMatrix barcodes count: " + result.getExtended().getDataMatrix().getStructuredAppendBarcodesCount()); +> System.out.println("DataMatrix file ID: " + result.getExtended().getDataMatrix().getStructuredAppendFileId()); +> System.out.println("DataMatrix is reader programming: " + result.getExtended().getDataMatrix().isReaderProgramming)_); +> } +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur DataMatrixExtendedParameters spécifiée. | +| [getClass()](#getClass--) | | +| [getStructuredAppendBarcodeId()](#getStructuredAppendBarcodeId--) | Obtient l'ID du code-barres en mode ajout structuré DataMatrix. | +| [getStructuredAppendBarcodesCount()](#getStructuredAppendBarcodesCount--) | Obtient le nombre de codes-barres en mode d'ajout structuré DataMatrix. | +| [getStructuredAppendFileId()](#getStructuredAppendFileId--) | Obtient l'ID du code-barres en mode ajout structuré DataMatrix. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [isReaderProgramming()](#isReaderProgramming--) | Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [op_Equality(DataMatrixExtendedParameters first, DataMatrixExtendedParameters second)](#op-Equality-com.aspose.barcode.barcoderecognition.DataMatrixExtendedParameters-com.aspose.barcode.barcoderecognition.DataMatrixExtendedParameters-) | Renvoie une valeur indiquant si la première valeur DataMatrixExtendedParameters est égale à la seconde. | +| [op_Inequality(DataMatrixExtendedParameters first, DataMatrixExtendedParameters second)](#op-Inequality-com.aspose.barcode.barcoderecognition.DataMatrixExtendedParameters-com.aspose.barcode.barcoderecognition.DataMatrixExtendedParameters-) | Renvoie une valeur indiquant si la première valeur DataMatrixExtendedParameters est différente de la seconde. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de cet DataMatrixExtendedParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur DataMatrixExtendedParameters spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getStructuredAppendBarcodeId() {#getStructuredAppendBarcodeId--} +``` +public int getStructuredAppendBarcodeId() +``` + + +Obtient l'ID du code-barres en mode d'ajout structuré DataMatrix. L'ID commence à 1 et doit être inférieur ou égal au nombre de codes-barres. La valeur par défaut est -1. + +Valeur : L'ID du code-barres en mode d'ajout structuré DataMatrix. + +**Returns:** +int +### getStructuredAppendBarcodesCount() {#getStructuredAppendBarcodesCount--} +``` +public int getStructuredAppendBarcodesCount() +``` + + +Obtient le nombre de codes-barres en mode d'ajout structuré DataMatrix. La valeur par défaut est -1. Le nombre doit être compris entre 1 et 35. + +Valeur : Le nombre de codes-barres en mode d'ajout structuré DataMatrix. + +**Returns:** +int +### getStructuredAppendFileId() {#getStructuredAppendFileId--} +``` +public int getStructuredAppendFileId() +``` + + +Obtient l'ID du code-barres en mode d'ajout structuré DataMatrix. L'ID commence à 1 et doit être inférieur ou égal au nombre de codes-barres. La valeur par défaut est -1. + +Valeur : L'ID du code-barres en mode d'ajout structuré DataMatrix. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### isReaderProgramming() {#isReaderProgramming--} +``` +public boolean isReaderProgramming() +``` + + +Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. La valeur par défaut est false. + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### op_Equality(DataMatrixExtendedParameters first, DataMatrixExtendedParameters second) {#op-Equality-com.aspose.barcode.barcoderecognition.DataMatrixExtendedParameters-com.aspose.barcode.barcoderecognition.DataMatrixExtendedParameters-} +``` +public static boolean op_Equality(DataMatrixExtendedParameters first, DataMatrixExtendedParameters second) +``` + + +Renvoie une valeur indiquant si la première valeur DataMatrixExtendedParameters est égale à la seconde. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| first | [DataMatrixExtendedParameters](../../com.aspose.barcode.barcoderecognition/datamatrixextendedparameters) | Une première valeur comparée | +| second | [DataMatrixExtendedParameters](../../com.aspose.barcode.barcoderecognition/datamatrixextendedparameters) | Une seconde valeur comparée | + +**Returns:** +boolean - **true** si le premier a la même valeur que le second ; sinon, **false** . +### op_Inequality(DataMatrixExtendedParameters first, DataMatrixExtendedParameters second) {#op-Inequality-com.aspose.barcode.barcoderecognition.DataMatrixExtendedParameters-com.aspose.barcode.barcoderecognition.DataMatrixExtendedParameters-} +``` +public static boolean op_Inequality(DataMatrixExtendedParameters first, DataMatrixExtendedParameters second) +``` + + +Renvoie une valeur indiquant si la première valeur DataMatrixExtendedParameters est différente de la seconde. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| first | [DataMatrixExtendedParameters](../../com.aspose.barcode.barcoderecognition/datamatrixextendedparameters) | Une première valeur comparée | +| second | [DataMatrixExtendedParameters](../../com.aspose.barcode.barcoderecognition/datamatrixextendedparameters) | Une seconde valeur comparée | + +**Returns:** +boolean - **true** si le premier a une valeur différente du second ; sinon, **false** . +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de cet DataMatrixExtendedParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ce DataMatrixExtendedParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/decodetype/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/decodetype/_index.md new file mode 100644 index 000000000..1ccf83672 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/decodetype/_index.md @@ -0,0 +1,1106 @@ +--- +title: DecodeType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifiez le type de code‑barres à lire. +type: docs +weight: 32 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/decodetype/ +--- +**Inheritance:** +java.lang.Object +``` +public class DecodeType +``` + +Spécifiez le type de code‑barres à lire. + +-------------------- + +> ``` +> This sample shows how to detect Code39 and Code128 barcodes. +> +> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.CODE_39_FULL_ASCII, DecodeType.CODE_128); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> } +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [DecodeType()](#DecodeType--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [ALL_SUPPORTED_TYPES](#ALL-SUPPORTED-TYPES) | Spécifie que les données seront vérifiées avec toutes les symbologies disponibles | +| [AUSTRALIAN_POSTE_PARCEL](#AUSTRALIAN-POSTE-PARCEL) | Spécifie que les données doivent être décodées avec **Australian Post Domestic eParcel Barcode** spécification de code-barres | +| [AUSTRALIA_POST](#AUSTRALIA-POST) | Spécifie que les données doivent être décodées avec **Australia Post** spécification de code-barres | +| [AZTEC](#AZTEC) | Spécifie que les données doivent être décodées avec **Aztec** spécification de code-barres | +| [CODABAR](#CODABAR) | Spécifie que les données doivent être décodées avec **CODABAR** spécification de code-barres | +| [CODABLOCK_F](#CODABLOCK-F) | Spécifie que les données doivent être décodées avec **CodablockF** spécification de code-barres | +| [CODE_11](#CODE-11) | Spécifie que les données doivent être décodées avec **CODE 11** spécification de code-barres | +| [CODE_128](#CODE-128) | Spécifie que les données doivent être décodées avec la spécification de code-barres **CODE 128** | +| [CODE_16_K](#CODE-16-K) | Spécifie que les données doivent être décodées avec la spécification de code-barres **SCode16K** | +| [CODE_32](#CODE-32) | Spécifie que les données doivent être décodées avec la spécification de code-barres **Code32** | +| [CODE_39](#CODE-39) | Spécifie que les données doivent être décodées avec la spécification de code-barres **Code 39** jeu de caractères de base : ISO/IEC 16388 | +| [CODE_39_FULL_ASCII](#CODE-39-FULL-ASCII) | Spécifie que les données doivent être décodées avec la spécification de code-barres **Code 39** jeu de caractères ASCII complet : ISO/IEC 16388 | +| [CODE_93](#CODE-93) | Spécifie que les données doivent être décodées avec la spécification de code-barres **CODE 93** | +| [COMPACT_PDF_417](#COMPACT-PDF-417) | Spécifie que les données doivent être décodées avec la spécification de code-barres **CompactPdf417** (Pdf417Truncated) | +| [DATABAR_EXPANDED](#DATABAR-EXPANDED) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR expanded** | +| [DATABAR_EXPANDED_STACKED](#DATABAR-EXPANDED-STACKED) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR expanded stacked** | +| [DATABAR_LIMITED](#DATABAR-LIMITED) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR limited** | +| [DATABAR_OMNI_DIRECTIONAL](#DATABAR-OMNI-DIRECTIONAL) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR omni-directional** | +| [DATABAR_STACKED](#DATABAR-STACKED) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR stacked** | +| [DATABAR_STACKED_OMNI_DIRECTIONAL](#DATABAR-STACKED-OMNI-DIRECTIONAL) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR stacked omni-directional** | +| [DATABAR_TRUNCATED](#DATABAR-TRUNCATED) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR truncated** | +| [DATA_LOGIC_2_OF_5](#DATA-LOGIC-2-OF-5) | Spécifie que les données doivent être décodées avec la spécification de code-barres **DataLogic 2 of 5** | +| [DATA_MATRIX](#DATA-MATRIX) | Spécifie que les données doivent être décodées avec la symbologie de code-barres **DataMatrix** | +| [DEUTSCHE_POST_IDENTCODE](#DEUTSCHE-POST-IDENTCODE) | Spécifie que les données doivent être décodées avec la spécification de code-barres **DeutschePost Ident code** | +| [DEUTSCHE_POST_LEITCODE](#DEUTSCHE-POST-LEITCODE) | Spécifie que les données doivent être décodées avec la spécification de code-barres **DeutschePost Leit code** | +| [DOT_CODE](#DOT-CODE) | Spécifie que les données doivent être décodées avec la spécification de code-barres **DotCode** | +| [DUTCH_KIX](#DUTCH-KIX) | Spécifie que les données doivent être décodées avec la spécification de code-barres **DotCode** | +| [EAN_13](#EAN-13) | Spécifie que les données doivent être décodées avec la spécification de code-barres **EAN-13** | +| [EAN_14](#EAN-14) | Spécifie que les données doivent être décodées avec la spécification de code-barres **EAN14** | +| [EAN_8](#EAN-8) | Spécifie que les données doivent être décodées avec la spécification de code-barres **EAN-8** | +| [GS_1_AZTEC](#GS-1-AZTEC) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 Aztec** | +| [GS_1_CODE_128](#GS-1-CODE-128) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 CODE 128** | +| [GS_1_COMPOSITE_BAR](#GS-1-COMPOSITE-BAR) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 Composite Bar** | +| [GS_1_DATA_MATRIX](#GS-1-DATA-MATRIX) | Spécifie que les données doivent être décodées avec la symbologie de code-barres **GS1DataMatrix** | +| [GS_1_DOT_CODE](#GS-1-DOT-CODE) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DotCode** | +| [GS_1_HAN_XIN](#GS-1-HAN-XIN) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 Han Xin Code** | +| [GS_1_MICRO_PDF_417](#GS-1-MICRO-PDF-417) | Spécifie que les données doivent être décodées avec la spécification de code-barres **MicroPdf417** | +| [GS_1_QR](#GS-1-QR) | Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 QR** | +| [HAN_XIN](#HAN-XIN) | Spécifie que les données doivent être décodées avec la spécification de code-barres **Han Xin Code** | +| [HIBCQRLIC](#HIBCQRLIC) | Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC LIC QR** | +| [HIBCQRPAS](#HIBCQRPAS) | Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC PAS QR** | +| [HIBC_AZTEC_LIC](#HIBC-AZTEC-LIC) | Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC LIC Aztec** | +| [HIBC_AZTEC_PAS](#HIBC-AZTEC-PAS) | Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC PAS Aztec** | +| [HIBC_CODE_128_LIC](#HIBC-CODE-128-LIC) | Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC LIC Code128** | +| [HIBC_CODE_128_PAS](#HIBC-CODE-128-PAS) | Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC PAS Code128** | +| [HIBC_CODE_39_LIC](#HIBC-CODE-39-LIC) | Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC LIC Code39** | +| [HIBC_CODE_39_PAS](#HIBC-CODE-39-PAS) | Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC PAS Code39** | +| [HIBC_DATA_MATRIX_LIC](#HIBC-DATA-MATRIX-LIC) | Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC LIC DataMatrix** | +| [HIBC_DATA_MATRIX_PAS](#HIBC-DATA-MATRIX-PAS) | Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC PAS DataMatrix** | +| [IATA_2_OF_5](#IATA-2-OF-5) | Spécifie que les données doivent être décodées avec la spécification de code-barres **IATA 2 of 5**. | +| [INTERLEAVED_2_OF_5](#INTERLEAVED-2-OF-5) | Spécifie que les données doivent être décodées avec la spécification de code-barres **INTERLEAVED 2 of 5** | +| [ISBN](#ISBN) | Spécifie que les données doivent être décodées avec la spécification de code-barres **ISBN** | +| [ISMN](#ISMN) | Spécifie que les données doivent être décodées avec la spécification de code-barres **ISMN** | +| [ISSN](#ISSN) | Spécifie que les données doivent être décodées avec la spécification de code-barres **ISSN** | +| [ITALIAN_POST_25](#ITALIAN-POST-25) | Spécifie que les données doivent être décodées avec la spécification de code-barres **Italian Post 25** | +| [ITF_14](#ITF-14) | Spécifie que les données doivent être décodées avec la spécification de code-barres **ITF14** | +| [ITF_6](#ITF-6) | Spécifie que les données doivent être décodées avec la spécification de code-barres **ITF6** | +| [MACRO_PDF_417](#MACRO-PDF-417) | Spécifie que les données doivent être décodées avec la spécification de code-barres **MacroPdf417** | +| [MAILMARK](#MAILMARK) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **Royal Mail Mailmark**. | +| [MATRIX_2_OF_5](#MATRIX-2-OF-5) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **Matrix 2 of 5** | +| [MAXI_CODE](#MAXI-CODE) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **MaxiCode** | +| [MICRO_PDF_417](#MICRO-PDF-417) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **MicroPdf417** | +| [MICRO_QR](#MICRO-QR) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **MicroQR Code** | +| [MICR_E_13_B](#MICR-E-13-B) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **MICR E-13B** | +| [MOST_COMMON_TYPES](#MOST-COMMON-TYPES) | Spécifie que les données seront vérifiées avec les symbologies les plus couramment utilisées | +| [MSI](#MSI) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **MSI Plessey** | +| [NONE](#NONE) | Type de décodage non spécifié. | +| [ONE_CODE](#ONE-CODE) | Spécifie que les données doivent être décodées avec la spécification de code‑barres USPS **OneCode** | +| [OPC](#OPC) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **OPC** | +| [PATCH_CODE](#PATCH-CODE) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **Patch code**. | +| [PDF_417](#PDF-417) | Spécifie que les données doivent être décodées avec la symbologie de code‑barres **Pdf417** | +| [PHARMACODE](#PHARMACODE) | Spécifie que les données doivent être décodées avec le code‑barres **Pharmacode**. | +| [PLANET](#PLANET) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **Planet** | +| [POSTAL_TYPES](#POSTAL-TYPES) | Spécifie que les données seront vérifiées avec toutes les symbologies de code‑barres **1.5D POSTAL**, comme **Planet, Postnet, AustraliaPost, OneCode, RM4SCC, DutchKIX** | +| [POSTNET](#POSTNET) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **Postnet** | +| [PZN](#PZN) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **PZN**. | +| [QR](#QR) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **QR Code** | +| [RECT_MICRO_QR](#RECT-MICRO-QR) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **RectMicroQR (rMQR) Code** | +| [RM_4_SCC](#RM-4-SCC) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **RM4SCC**. | +| [SCC_14](#SCC-14) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **SCC14** | +| [SSCC_18](#SSCC-18) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **SSCC18** | +| [STANDARD_2_OF_5](#STANDARD-2-OF-5) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **Standard 2 of 5** | +| [SUPPLEMENT](#SUPPLEMENT) | Spécifie que les données doivent être décodées avec la spécification de code‑barres **Supplement(EAN2, EAN5)** | +| [SWISS_POST_PARCEL](#SWISS-POST-PARCEL) | Spécifie que les données doivent être décodées selon la spécification de code-barres **Swiss Post Parcel Barcode** | +| [TYPES_1D](#TYPES-1D) | Spécifie que les données seront vérifiées avec toutes les symbologies de code-barres **1D** | +| [TYPES_2D](#TYPES-2D) | Spécifie que les données seront vérifiées avec toutes les symbologies de code-barres **2D** | +| [UPCA](#UPCA) | Spécifie que les données doivent être décodées selon la spécification de code-barres **UPC-A** | +| [UPCE](#UPCE) | Spécifie que les données doivent être décodées selon la spécification de code-barres **UPC-E** | +| [VIN](#VIN) | Spécifie que les données doivent être décodées selon la spécification de code-barres **VIN** (numéro d'identification du véhicule) | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllSupportedTypesArray()](#getAllSupportedTypesArray--) | Obtient un tableau qui représente AllSupportedTypes | +| [getClass()](#getClass--) | | +| [getNames()](#getNames--) | Récupère un tableau des noms des types de décodage. | +| [hashCode()](#hashCode--) | | +| [is1D(BaseDecodeType symbology)](#is1D-com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Détermine si le BaseDecodeType spécifié contient une quelconque symbologie de code-barres 1D | +| [is2D(BaseDecodeType symbology)](#is2D-com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Détermine si le BaseDecodeType spécifié contient une quelconque symbologie de code-barres 2D | +| [isPostal(BaseDecodeType symbology)](#isPostal-com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Détermine si le BaseDecodeType spécifié contient une quelconque symbologie de code-barres Postal | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parse(String parsingType)](#parse-java.lang.String-) | Convertit la représentation chaîne d'un SingleDecodeType en son instance. | +| [parse(String parsingType, SingleDecodeType[] result)](#parse-java.lang.String-com.aspose.barcode.barcoderecognition.SingleDecodeType---) | Convertit la représentation chaîne d'un SingleDecodeType en son instance. | +| [scanSets(BaseDecodeType[] barcodeTypes)](#scanSets-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Spécifiez les ensembles de numérisation par barcodeTypes | +| [toString()](#toString--) | | +| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un MultiDecodeType en son instance. | +| [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un SingleDecodeType en son instance. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### DecodeType() {#DecodeType--} +``` +public DecodeType() +``` + + +### ALL_SUPPORTED_TYPES {#ALL-SUPPORTED-TYPES} +``` +public static final MultiDecodeType ALL_SUPPORTED_TYPES +``` + + +Spécifie que les données seront vérifiées avec toutes les symbologies disponibles + +### AUSTRALIAN_POSTE_PARCEL {#AUSTRALIAN-POSTE-PARCEL} +``` +public static final SingleDecodeType AUSTRALIAN_POSTE_PARCEL +``` + + +Spécifie que les données doivent être décodées avec **Australian Post Domestic eParcel Barcode** spécification de code-barres + +### AUSTRALIA_POST {#AUSTRALIA-POST} +``` +public static final SingleDecodeType AUSTRALIA_POST +``` + + +Spécifie que les données doivent être décodées avec **Australia Post** spécification de code-barres + +### AZTEC {#AZTEC} +``` +public static final SingleDecodeType AZTEC +``` + + +Spécifie que les données doivent être décodées avec **Aztec** spécification de code-barres + +### CODABAR {#CODABAR} +``` +public static final SingleDecodeType CODABAR +``` + + +Spécifie que les données doivent être décodées avec **CODABAR** spécification de code-barres + +### CODABLOCK_F {#CODABLOCK-F} +``` +public static final SingleDecodeType CODABLOCK_F +``` + + +Spécifie que les données doivent être décodées avec **CodablockF** spécification de code-barres + +### CODE_11 {#CODE-11} +``` +public static final SingleDecodeType CODE_11 +``` + + +Spécifie que les données doivent être décodées avec **CODE 11** spécification de code-barres + +### CODE_128 {#CODE-128} +``` +public static final SingleDecodeType CODE_128 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **CODE 128** + +### CODE_16_K {#CODE-16-K} +``` +public static final SingleDecodeType CODE_16_K +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **SCode16K** + +### CODE_32 {#CODE-32} +``` +public static final SingleDecodeType CODE_32 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **Code32** + +### CODE_39 {#CODE-39} +``` +public static final SingleDecodeType CODE_39 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **Code 39** jeu de caractères de base : ISO/IEC 16388 + +### CODE_39_FULL_ASCII {#CODE-39-FULL-ASCII} +``` +public static final SingleDecodeType CODE_39_FULL_ASCII +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **Code 39** jeu de caractères ASCII complet : ISO/IEC 16388 + +### CODE_93 {#CODE-93} +``` +public static final SingleDecodeType CODE_93 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **CODE 93** + +### COMPACT_PDF_417 {#COMPACT-PDF-417} +``` +public static final SingleDecodeType COMPACT_PDF_417 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **CompactPdf417** (Pdf417Truncated) + +### DATABAR_EXPANDED {#DATABAR-EXPANDED} +``` +public static final SingleDecodeType DATABAR_EXPANDED +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR expanded** + +### DATABAR_EXPANDED_STACKED {#DATABAR-EXPANDED-STACKED} +``` +public static final SingleDecodeType DATABAR_EXPANDED_STACKED +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR expanded stacked** + +### DATABAR_LIMITED {#DATABAR-LIMITED} +``` +public static final SingleDecodeType DATABAR_LIMITED +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR limited** + +### DATABAR_OMNI_DIRECTIONAL {#DATABAR-OMNI-DIRECTIONAL} +``` +public static final SingleDecodeType DATABAR_OMNI_DIRECTIONAL +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR omni-directional** + +### DATABAR_STACKED {#DATABAR-STACKED} +``` +public static final SingleDecodeType DATABAR_STACKED +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR stacked** + +### DATABAR_STACKED_OMNI_DIRECTIONAL {#DATABAR-STACKED-OMNI-DIRECTIONAL} +``` +public static final SingleDecodeType DATABAR_STACKED_OMNI_DIRECTIONAL +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR stacked omni-directional** + +### DATABAR_TRUNCATED {#DATABAR-TRUNCATED} +``` +public static final SingleDecodeType DATABAR_TRUNCATED +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DATABAR truncated** + +### DATA_LOGIC_2_OF_5 {#DATA-LOGIC-2-OF-5} +``` +public static final SingleDecodeType DATA_LOGIC_2_OF_5 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **DataLogic 2 of 5** + +### DATA_MATRIX {#DATA-MATRIX} +``` +public static final SingleDecodeType DATA_MATRIX +``` + + +Spécifie que les données doivent être décodées avec la symbologie de code-barres **DataMatrix** + +### DEUTSCHE_POST_IDENTCODE {#DEUTSCHE-POST-IDENTCODE} +``` +public static final SingleDecodeType DEUTSCHE_POST_IDENTCODE +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **DeutschePost Ident code** + +### DEUTSCHE_POST_LEITCODE {#DEUTSCHE-POST-LEITCODE} +``` +public static final SingleDecodeType DEUTSCHE_POST_LEITCODE +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **DeutschePost Leit code** + +### DOT_CODE {#DOT-CODE} +``` +public static final SingleDecodeType DOT_CODE +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **DotCode** + +### DUTCH_KIX {#DUTCH-KIX} +``` +public static final SingleDecodeType DUTCH_KIX +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **DotCode** + +### EAN_13 {#EAN-13} +``` +public static final SingleDecodeType EAN_13 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **EAN-13** + +### EAN_14 {#EAN-14} +``` +public static final SingleDecodeType EAN_14 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **EAN14** + +### EAN_8 {#EAN-8} +``` +public static final SingleDecodeType EAN_8 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **EAN-8** + +### GS_1_AZTEC {#GS-1-AZTEC} +``` +public static final SingleDecodeType GS_1_AZTEC +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 Aztec** + +### GS_1_CODE_128 {#GS-1-CODE-128} +``` +public static final SingleDecodeType GS_1_CODE_128 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 CODE 128** + +### GS_1_COMPOSITE_BAR {#GS-1-COMPOSITE-BAR} +``` +public static final SingleDecodeType GS_1_COMPOSITE_BAR +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 Composite Bar** + +### GS_1_DATA_MATRIX {#GS-1-DATA-MATRIX} +``` +public static final SingleDecodeType GS_1_DATA_MATRIX +``` + + +Spécifie que les données doivent être décodées avec la symbologie de code-barres **GS1DataMatrix** + +### GS_1_DOT_CODE {#GS-1-DOT-CODE} +``` +public static final SingleDecodeType GS_1_DOT_CODE +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 DotCode** + +### GS_1_HAN_XIN {#GS-1-HAN-XIN} +``` +public static final SingleDecodeType GS_1_HAN_XIN +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 Han Xin Code** + +### GS_1_MICRO_PDF_417 {#GS-1-MICRO-PDF-417} +``` +public static final SingleDecodeType GS_1_MICRO_PDF_417 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **MicroPdf417** + +### GS_1_QR {#GS-1-QR} +``` +public static final SingleDecodeType GS_1_QR +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **GS1 QR** + +### HAN_XIN {#HAN-XIN} +``` +public static final SingleDecodeType HAN_XIN +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **Han Xin Code** + +### HIBCQRLIC {#HIBCQRLIC} +``` +public static final SingleDecodeType HIBCQRLIC +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC LIC QR** + +### HIBCQRPAS {#HIBCQRPAS} +``` +public static final SingleDecodeType HIBCQRPAS +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC PAS QR** + +### HIBC_AZTEC_LIC {#HIBC-AZTEC-LIC} +``` +public static final SingleDecodeType HIBC_AZTEC_LIC +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC LIC Aztec** + +### HIBC_AZTEC_PAS {#HIBC-AZTEC-PAS} +``` +public static final SingleDecodeType HIBC_AZTEC_PAS +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC PAS Aztec** + +### HIBC_CODE_128_LIC {#HIBC-CODE-128-LIC} +``` +public static final SingleDecodeType HIBC_CODE_128_LIC +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC LIC Code128** + +### HIBC_CODE_128_PAS {#HIBC-CODE-128-PAS} +``` +public static final SingleDecodeType HIBC_CODE_128_PAS +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC PAS Code128** + +### HIBC_CODE_39_LIC {#HIBC-CODE-39-LIC} +``` +public static final SingleDecodeType HIBC_CODE_39_LIC +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC LIC Code39** + +### HIBC_CODE_39_PAS {#HIBC-CODE-39-PAS} +``` +public static final SingleDecodeType HIBC_CODE_39_PAS +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC PAS Code39** + +### HIBC_DATA_MATRIX_LIC {#HIBC-DATA-MATRIX-LIC} +``` +public static final SingleDecodeType HIBC_DATA_MATRIX_LIC +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC LIC DataMatrix** + +### HIBC_DATA_MATRIX_PAS {#HIBC-DATA-MATRIX-PAS} +``` +public static final SingleDecodeType HIBC_DATA_MATRIX_PAS +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **HIBC PAS DataMatrix** + +### IATA_2_OF_5 {#IATA-2-OF-5} +``` +public static final SingleDecodeType IATA_2_OF_5 +``` + + +Spécifie que les données doivent être décodées selon la spécification de code-barres **IATA 2 of 5**. IATA (International Air Transport Association) utilise ce code-barres pour la gestion du fret aérien. + +### INTERLEAVED_2_OF_5 {#INTERLEAVED-2-OF-5} +``` +public static final SingleDecodeType INTERLEAVED_2_OF_5 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **INTERLEAVED 2 of 5** + +### ISBN {#ISBN} +``` +public static final SingleDecodeType ISBN +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **ISBN** + +### ISMN {#ISMN} +``` +public static final SingleDecodeType ISMN +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **ISMN** + +### ISSN {#ISSN} +``` +public static final SingleDecodeType ISSN +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **ISSN** + +### ITALIAN_POST_25 {#ITALIAN-POST-25} +``` +public static final SingleDecodeType ITALIAN_POST_25 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **Italian Post 25** + +### ITF_14 {#ITF-14} +``` +public static final SingleDecodeType ITF_14 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **ITF14** + +### ITF_6 {#ITF-6} +``` +public static final SingleDecodeType ITF_6 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **ITF6** + +### MACRO_PDF_417 {#MACRO-PDF-417} +``` +public static final SingleDecodeType MACRO_PDF_417 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code-barres **MacroPdf417** + +### MAILMARK {#MAILMARK} +``` +public static final SingleDecodeType MAILMARK +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **Royal Mail Mailmark**. + +### MATRIX_2_OF_5 {#MATRIX-2-OF-5} +``` +public static final SingleDecodeType MATRIX_2_OF_5 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **Matrix 2 of 5** + +### MAXI_CODE {#MAXI-CODE} +``` +public static final SingleDecodeType MAXI_CODE +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **MaxiCode** + +### MICRO_PDF_417 {#MICRO-PDF-417} +``` +public static final SingleDecodeType MICRO_PDF_417 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **MicroPdf417** + +### MICRO_QR {#MICRO-QR} +``` +public static final SingleDecodeType MICRO_QR +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **MicroQR Code** + +### MICR_E_13_B {#MICR-E-13-B} +``` +public static final SingleDecodeType MICR_E_13_B +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **MICR E-13B** + +### MOST_COMMON_TYPES {#MOST-COMMON-TYPES} +``` +public static final MultiDecodeType MOST_COMMON_TYPES +``` + + +Spécifie que les données seront vérifiées avec les symbologies les plus couramment utilisées + +### MSI {#MSI} +``` +public static final SingleDecodeType MSI +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **MSI Plessey** + +### NONE {#NONE} +``` +public static final SingleDecodeType NONE +``` + + +Type de décodage non spécifié. + +### ONE_CODE {#ONE-CODE} +``` +public static final SingleDecodeType ONE_CODE +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres USPS **OneCode** + +### OPC {#OPC} +``` +public static final SingleDecodeType OPC +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **OPC** + +### PATCH_CODE {#PATCH-CODE} +``` +public static final SingleDecodeType PATCH_CODE +``` + + +Spécifie que les données doivent être décodées selon la spécification de code-barres **Patch code**. La symbologie de code-barres est utilisée pour le scan automatisé + +### PDF_417 {#PDF-417} +``` +public static final SingleDecodeType PDF_417 +``` + + +Spécifie que les données doivent être décodées avec la symbologie de code‑barres **Pdf417** + +### PHARMACODE {#PHARMACODE} +``` +public static final SingleDecodeType PHARMACODE +``` + + +Spécifie que les données doivent être décodées avec le code-barres **Pharmacode**. Cette symbologie est également connue sous le nom de Pharmaceutical BINARY Code + +### PLANET {#PLANET} +``` +public static final SingleDecodeType PLANET +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **Planet** + +### POSTAL_TYPES {#POSTAL-TYPES} +``` +public static final MultiDecodeType POSTAL_TYPES +``` + + +Spécifie que les données seront vérifiées avec toutes les symbologies de code‑barres **1.5D POSTAL**, comme **Planet, Postnet, AustraliaPost, OneCode, RM4SCC, DutchKIX** + +### POSTNET {#POSTNET} +``` +public static final SingleDecodeType POSTNET +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **Postnet** + +### PZN {#PZN} +``` +public static final SingleDecodeType PZN +``` + + +Spécifie que les données doivent être décodées selon la spécification de code-barres **PZN**. Cette symbologie est également connue sous le nom de Pharma Zentral Nummer. Les PZN7 et PZN8 sont pris en charge. + +### QR {#QR} +``` +public static final SingleDecodeType QR +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **QR Code** + +### RECT_MICRO_QR {#RECT-MICRO-QR} +``` +public static final SingleDecodeType RECT_MICRO_QR +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **RectMicroQR (rMQR) Code** + +### RM_4_SCC {#RM-4-SCC} +``` +public static final SingleDecodeType RM_4_SCC +``` + + +Spécifie que les données doivent être décodées selon la spécification de code-barres **RM4SCC**. RM4SCC (Royal Mail 4-state Customer Code) est utilisé pour le processus automatisé de tri du courrier au Royaume-Uni. + +### SCC_14 {#SCC-14} +``` +public static final SingleDecodeType SCC_14 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **SCC14** + +### SSCC_18 {#SSCC-18} +``` +public static final SingleDecodeType SSCC_18 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **SSCC18** + +### STANDARD_2_OF_5 {#STANDARD-2-OF-5} +``` +public static final SingleDecodeType STANDARD_2_OF_5 +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **Standard 2 of 5** + +### SUPPLEMENT {#SUPPLEMENT} +``` +public static final SingleDecodeType SUPPLEMENT +``` + + +Spécifie que les données doivent être décodées avec la spécification de code‑barres **Supplement(EAN2, EAN5)** + +### SWISS_POST_PARCEL {#SWISS-POST-PARCEL} +``` +public static final SingleDecodeType SWISS_POST_PARCEL +``` + + +Spécifie que les données doivent être décodées selon la spécification de code-barres **Swiss Post Parcel Barcode** + +### TYPES_1D {#TYPES-1D} +``` +public static final MultiDecodeType TYPES_1D +``` + + +Spécifie que les données seront vérifiées avec toutes les symbologies de code-barres **1D** + +### TYPES_2D {#TYPES-2D} +``` +public static final MultiDecodeType TYPES_2D +``` + + +Spécifie que les données seront vérifiées avec toutes les symbologies de code-barres **2D** + +### UPCA {#UPCA} +``` +public static final SingleDecodeType UPCA +``` + + +Spécifie que les données doivent être décodées selon la spécification de code-barres **UPC-A** + +### UPCE {#UPCE} +``` +public static final SingleDecodeType UPCE +``` + + +Spécifie que les données doivent être décodées selon la spécification de code-barres **UPC-E** + +### VIN {#VIN} +``` +public static final SingleDecodeType VIN +``` + + +Spécifie que les données doivent être décodées selon la spécification de code-barres **VIN** (numéro d'identification du véhicule) + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllSupportedTypesArray() {#getAllSupportedTypesArray--} +``` +public static SingleDecodeType[] getAllSupportedTypesArray() +``` + + +Obtient un tableau qui représente AllSupportedTypes + +**Returns:** +com.aspose.barcode.barcoderecognition.SingleDecodeType[] +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getNames() {#getNames--} +``` +public static String[] getNames() +``` + + +Récupère un tableau des noms des types de décodage. + +**Returns:** +java.lang.String[] - Un tableau de chaînes contenant les noms des types de décodage. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### is1D(BaseDecodeType symbology) {#is1D-com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public static boolean is1D(BaseDecodeType symbology) +``` + + +Détermine si le BaseDecodeType spécifié contient une quelconque symbologie de code-barres 1D + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| symbology | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le BaseDecodeType à tester. | + +**Returns:** +boolean - Retourne **true** si BaseDecodeType contient une quelconque symbologie de code-barres 1D ; sinon, retourne **false**. +### is2D(BaseDecodeType symbology) {#is2D-com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public static boolean is2D(BaseDecodeType symbology) +``` + + +Détermine si le BaseDecodeType spécifié contient une quelconque symbologie de code-barres 2D + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| symbology | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le BaseDecodeType à tester. | + +**Returns:** +boolean - Retourne **true** si BaseDecodeTypeddddddddw contient une quelconque symbologie de code-barres 2D ; sinon, retourne **false**. +### isPostal(BaseDecodeType symbology) {#isPostal-com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public static boolean isPostal(BaseDecodeType symbology) +``` + + +Détermine si le BaseDecodeType spécifié contient une quelconque symbologie de code-barres Postal + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| symbology | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le BaseDecodeType à tester | + +**Returns:** +boolean - Retourne **true** si BaseDecodeType contient une quelconque symbologie de code-barres Postal ; sinon, retourne **false**. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parse(String parsingType) {#parse-java.lang.String-} +``` +public static SingleDecodeType parse(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un SingleDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant une représentation SingleDecodeType à convertir. | + +**Returns:** +[SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) - An actual SingleDecodeType returns, when conversion has completed successfully; + +sinon il renvoie un type indéfini. ou SingleDecodeType (-1, "NONE"). +### parse(String parsingType, SingleDecodeType[] result) {#parse-java.lang.String-com.aspose.barcode.barcoderecognition.SingleDecodeType---} +``` +public static boolean parse(String parsingType, SingleDecodeType[] result) +``` + + +Convertit la représentation sous forme de chaîne d'un SingleDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant un SingleDecodeType au format "EAN8" ou "EAN13" ou "CodaBar"... à convertir. | +| result | [SingleDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/singledecodetype) | | + +**Returns:** +booléen - **true** si s a été converti avec succès; sinon, **false**. +### scanSets(BaseDecodeType[] barcodeTypes) {#scanSets-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public static BaseDecodeType scanSets(BaseDecodeType[] barcodeTypes) +``` + + +Spécifiez les ensembles de numérisation par barcodeTypes + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Tableau de types de décodage simples et multiples | + +**Returns:** +[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - A multi decode type +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-} +``` +public static MultiDecodeType tryParseMultiDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un MultiDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne au format "AllSupportedTypes" ou "EAN8,EAN13,CodaBar" à convertir. | + +**Returns:** +com.aspose.barcode.barcoderecognition.MultiDecodeType - Un véritable MultiDecodeType est renvoyé lorsque la conversion s'est terminée avec succès; sinon il renvoie un type indéfini: new MultiDecodeType(DecodeType.None) +### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-} +``` +public static SingleDecodeType tryParseSingleDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un SingleDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant un SingleDecodeType au format "EAN8" ou "EAN13" ou "CodaBar"... à convertir. | + +**Returns:** +[SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) - An actual SingleDecodeType returns, when conversion has completed successfully; otherwise it returns indefinite type: DecodeType.None. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/deconvolutionmode/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/deconvolutionmode/_index.md new file mode 100644 index 000000000..9ff9a40b5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/deconvolutionmode/_index.md @@ -0,0 +1,297 @@ +--- +title: DeconvolutionMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 55 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/deconvolutionmode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum DeconvolutionMode extends Enum +``` + +Mode Deconvolution (image restorations) qui définit le niveau de dégradation de l'image. À l'origine, la Deconvolution est une fonction qui peut restaurer une image dégradée (convoluée) par n'importe quelle fonction naturelle comme le flou, lors de la capture de l'image par une caméra. Comme nous ne pouvons pas détecter la fonction d'image qui corrompt l'image, nous devons examiner les fonctions les mieux connues comme le sharp ou la morphologie mathématique. + +-------------------- + +> ``` +> This sample shows how to use Deconvolution mode +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> reader.getQualitySettings().setDeconvolution(DeconvolutionMode.SLOW); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [FAST](#FAST) | Active les méthodes de déconvolution rapides pour les images de haute qualité. | +| [NORMAL](#NORMAL) | Active les méthodes de déconvolution normales pour les images courantes. | +| [SLOW](#SLOW) | Active les méthodes de déconvolution lentes pour les images de faible qualité. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromValue(int value)](#fromValue-int-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FAST {#FAST} +``` +public static final DeconvolutionMode FAST +``` + + +Active les méthodes de déconvolution rapides pour les images de haute qualité. + +### NORMAL {#NORMAL} +``` +public static final DeconvolutionMode NORMAL +``` + + +Active les méthodes de déconvolution normales pour les images courantes. + +### SLOW {#SLOW} +``` +public static final DeconvolutionMode SLOW +``` + + +Active les méthodes de déconvolution lentes pour les images de faible qualité. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromValue(int value) {#fromValue-int-} +``` +public static DeconvolutionMode fromValue(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[DeconvolutionMode](../../com.aspose.barcode.barcoderecognition/deconvolutionmode) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static DeconvolutionMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[DeconvolutionMode](../../com.aspose.barcode.barcoderecognition/deconvolutionmode) +### values() {#values--} +``` +public static DeconvolutionMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.barcoderecognition.DeconvolutionMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/dotcodeextendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/dotcodeextendedparameters/_index.md new file mode 100644 index 000000000..76e9fe7e4 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/dotcodeextendedparameters/_index.md @@ -0,0 +1,263 @@ +--- +title: DotCodeExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke les données spéciales du code‑barres DotCode reconnu +type: docs +weight: 33 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/dotcodeextendedparameters/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) +``` +public final class DotCodeExtendedParameters extends BaseExtendedParameters +``` + +Stocke les données spéciales du code‑barres DotCode reconnu + +Cet exemple montre comment obtenir les valeurs brutes de DotCode + +``` + + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, "12345"); + generator.save("c:\\test.png"); + + BarCodeReader reader = new BarCodeReader(@"c:\\test.png", DecodeType.DOT_CODE); + for (BarCodeResult result : reader.readBarCodes() + { + System.out.println("BarCode type: " + result.getCodeTypeName()); + System.out.println("BarCode codetext: " + result.getCodeText()); + System.out.println("DotCode barcode ID: " + result.getExtended().getDotCode().getDotCodeStructuredAppendModeBarcodeId()); + System.out.println("DotCode barcodes count: " + result.getExtended().getDotCode().getDotCodeStructuredAppendModeBarcodesCount()); + } + +``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) spécifiée. | +| [getClass()](#getClass--) | | +| [getDotCodeIsReaderInitialization()](#getDotCodeIsReaderInitialization--) | Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. | +| [getDotCodeStructuredAppendModeBarcodeId()](#getDotCodeStructuredAppendModeBarcodeId--) | Obtient l'ID du code-barres DotCode en mode d'ajout structuré. | +| [getDotCodeStructuredAppendModeBarcodesCount()](#getDotCodeStructuredAppendModeBarcodesCount--) | Obtient le nombre de code-barres DotCode en mode d'ajout structuré. | +| [getStructuredAppendModeBarcodeId()](#getStructuredAppendModeBarcodeId--) | Obtient l'ID du code-barres DotCode en mode d'ajout structuré. | +| [getStructuredAppendModeBarcodesCount()](#getStructuredAppendModeBarcodesCount--) | Obtient le nombre de code-barres DotCode en mode d'ajout structuré. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [isReaderInitialization()](#isReaderInitialization--) | Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [op_Equality(DotCodeExtendedParameters first, DotCodeExtendedParameters second)](#op-Equality-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-) | Renvoie une valeur indiquant si la première valeur de [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) est égale à la seconde. | +| [op_Inequality(DotCodeExtendedParameters first, DotCodeExtendedParameters second)](#op-Inequality-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-) | Renvoie une valeur indiquant si la première valeur de [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) est différente de la seconde. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de cet [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDotCodeIsReaderInitialization() {#getDotCodeIsReaderInitialization--} +``` +public final boolean getDotCodeIsReaderInitialization() +``` + + +Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. La valeur par défaut est false. + +**Returns:** +boolean +### getDotCodeStructuredAppendModeBarcodeId() {#getDotCodeStructuredAppendModeBarcodeId--} +``` +public final int getDotCodeStructuredAppendModeBarcodeId() +``` + + +Obtient l'ID du code-barres DotCode en mode d'ajout structuré. L'ID commence à 1 et doit être inférieur ou égal au nombre de code-barres. La valeur par défaut est -1. + +Valeur : L'ID du code-barres DotCode en mode d'ajout structuré. + +**Returns:** +int - l'ID du code-barres DotCode en mode d'ajout structuré. +### getDotCodeStructuredAppendModeBarcodesCount() {#getDotCodeStructuredAppendModeBarcodesCount--} +``` +public final int getDotCodeStructuredAppendModeBarcodesCount() +``` + + +Obtient le nombre de code-barres DotCode en mode d'ajout structuré. La valeur par défaut est -1. Le nombre doit être compris entre 1 et 35. + +Valeur : Le nombre de code-barres DotCode en mode d'ajout structuré. + +**Returns:** +int - le nombre de code-barres DotCode en mode d'ajout structuré. +### getStructuredAppendModeBarcodeId() {#getStructuredAppendModeBarcodeId--} +``` +public final int getStructuredAppendModeBarcodeId() +``` + + +Obtient l'ID du code-barres DotCode en mode d'ajout structuré. L'ID commence à 1 et doit être inférieur ou égal au nombre de code-barres. La valeur par défaut est -1. + +Valeur : L'ID du code-barres DotCode en mode d'ajout structuré. + +**Returns:** +int - l'ID du code-barres DotCode en mode d'ajout structuré. +### getStructuredAppendModeBarcodesCount() {#getStructuredAppendModeBarcodesCount--} +``` +public final int getStructuredAppendModeBarcodesCount() +``` + + +Obtient le nombre de code-barres DotCode en mode d'ajout structuré. La valeur par défaut est -1. Le nombre doit être compris entre 1 et 35. + +Valeur : Le nombre de code-barres DotCode en mode d'ajout structuré. + +**Returns:** +int - le nombre de code-barres DotCode en mode d'ajout structuré. +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### isReaderInitialization() {#isReaderInitialization--} +``` +public final boolean isReaderInitialization() +``` + + +Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. La valeur par défaut est false. + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### op_Equality(DotCodeExtendedParameters first, DotCodeExtendedParameters second) {#op-Equality-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-} +``` +public static boolean op_Equality(DotCodeExtendedParameters first, DotCodeExtendedParameters second) +``` + + +Renvoie une valeur indiquant si la première valeur de [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) est égale à la seconde. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| first | [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) | Une première valeur comparée | +| second | [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) | Une seconde valeur comparée | + +**Returns:** +boolean - **true** si le premier a la même valeur que le second ; sinon, **false** . +### op_Inequality(DotCodeExtendedParameters first, DotCodeExtendedParameters second) {#op-Inequality-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-} +``` +public static boolean op_Inequality(DotCodeExtendedParameters first, DotCodeExtendedParameters second) +``` + + +Renvoie une valeur indiquant si la première valeur de [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) est différente de la seconde. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| first | [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) | Une première valeur comparée | +| second | [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) | Une seconde valeur comparée | + +**Returns:** +boolean - **true** si le premier a une valeur différente du second ; sinon, **false** . +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de cet [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente cet [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/gs1compositebarextendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/gs1compositebarextendedparameters/_index.md new file mode 100644 index 000000000..42504fe05 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/gs1compositebarextendedparameters/_index.md @@ -0,0 +1,189 @@ +--- +title: GS1CompositeBarExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke les données spéciales du code-barres GS1 Composite Bar reconnu +type: docs +weight: 34 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/gs1compositebarextendedparameters/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) +``` +public final class GS1CompositeBarExtendedParameters extends BaseExtendedParameters +``` + +Stocke les données spéciales du code‑barres **GS1 Composite Bar** reconnu +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de GS1CompositeBarExtendedParameters. | +| [getClass()](#getClass--) | | +| [getOneDCodeText()](#getOneDCodeText--) | Obtient la valeur du code-barres 1D (linéaire) de GS1 Composite | +| [getOneDType()](#getOneDType--) | Obtient le type du code-barres 1D (linéaire) de GS1 Composite | +| [getTwoDCodeText()](#getTwoDCodeText--) | Obtient la valeur du code-barres 2D de GS1 Composite | +| [getTwoDType()](#getTwoDType--) | Obtient le type du code-barres 2D de GS1 Composite | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce GS1CompositeBarExtendedParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de GS1CompositeBarExtendedParameters. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getOneDCodeText() {#getOneDCodeText--} +``` +public String getOneDCodeText() +``` + + +Obtient la valeur du code-barres 1D (linéaire) de GS1 Composite + +Valeur: valeur du code-barres 1D + +**Returns:** +java.lang.String +### getOneDType() {#getOneDType--} +``` +public SingleDecodeType getOneDType() +``` + + +Obtient le type du code-barres 1D (linéaire) de GS1 Composite + +Valeur: type du code-barres 2D + +**Returns:** +[SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) +### getTwoDCodeText() {#getTwoDCodeText--} +``` +public String getTwoDCodeText() +``` + + +Obtient la valeur du code-barres 2D de GS1 Composite + +Valeur: valeur du code-barres 2D + +**Returns:** +java.lang.String +### getTwoDType() {#getTwoDType--} +``` +public SingleDecodeType getTwoDType() +``` + + +Obtient le type du code-barres 2D de GS1 Composite + +Valeur: type du code-barres 2D + +**Returns:** +[SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce GS1CompositeBarExtendedParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ce GS1CompositeBarExtendedParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmode/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmode/_index.md new file mode 100644 index 000000000..49b21b8bc --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmode/_index.md @@ -0,0 +1,279 @@ +--- +title: ImageScalingMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifiez la taille de l'image mise à l'échelle +type: docs +weight: 56 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum ImageScalingMode extends Enum +``` + +Spécifiez la taille de l'image mise à l'échelle +## Champs + +| Champ | Description | +| --- | --- | +| [SCALE_1280x720](#SCALE-1280x720) | Redimensionner à la taille d'image 1280x720px | +| [SCALE_1920x1080](#SCALE-1920x1080) | Redimensionner à la taille d'image 1920x1080 | +| [SCALE_800x600](#SCALE-800x600) | Redimensionner à la taille d'image 800x600px | +| [WITHOUT_SCALE](#WITHOUT-SCALE) | Sans mise à l'échelle | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### SCALE_1280x720 {#SCALE-1280x720} +``` +public static final ImageScalingMode SCALE_1280x720 +``` + + +Redimensionner à la taille d'image 1280x720px + +### SCALE_1920x1080 {#SCALE-1920x1080} +``` +public static final ImageScalingMode SCALE_1920x1080 +``` + + +Redimensionner à la taille d'image 1920x1080 + +### SCALE_800x600 {#SCALE-800x600} +``` +public static final ImageScalingMode SCALE_800x600 +``` + + +Redimensionner à la taille d'image 800x600px + +### WITHOUT_SCALE {#WITHOUT-SCALE} +``` +public static final ImageScalingMode WITHOUT_SCALE +``` + + +Sans mise à l'échelle + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public Size getValue() +``` + + + + +**Returns:** +android.util.Size +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static ImageScalingMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +com.aspose.barcode.barcoderecognition.ImageScalingMode +### values() {#values--} +``` +public static ImageScalingMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.barcoderecognition.ImageScalingMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmodeinternal/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmodeinternal/_index.md new file mode 100644 index 000000000..1129431fa --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmodeinternal/_index.md @@ -0,0 +1,149 @@ +--- +title: ImageScalingModeInternal +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 35 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmodeinternal/ +--- +**Inheritance:** +java.lang.Object +``` +public class ImageScalingModeInternal +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [ImageScalingModeInternal()](#ImageScalingModeInternal--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromString(String parceledImageScalingMode)](#fromString-java.lang.String-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ImageScalingModeInternal() {#ImageScalingModeInternal--} +``` +public ImageScalingModeInternal() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromString(String parceledImageScalingMode) {#fromString-java.lang.String-} +``` +public static ImageScalingMode fromString(String parceledImageScalingMode) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parceledImageScalingMode | java.lang.String | | + +**Returns:** +com.aspose.barcode.barcoderecognition.ImageScalingMode +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/inverseimagemode/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/inverseimagemode/_index.md new file mode 100644 index 000000000..e543ba3af --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/inverseimagemode/_index.md @@ -0,0 +1,298 @@ +--- +title: InverseImageMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 57 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/inverseimagemode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum InverseImageMode extends Enum +``` + +Mode qui active ou désactive la reconnaissance supplémentaire des codes-barres sur des images à couleurs inversées (luminance). + +-------------------- + +> ``` +> This sample shows how to use InverseImage mode +> +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> reader.getQualitySettings().setInverseImage(InverseImageMode.ENABLED); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Désactive la reconnaissance supplémentaire des codes-barres sur les images inversées pour tous les types de codes-barres sauf QR Code | +| [DISABLED](#DISABLED) | Désactive la reconnaissance supplémentaire des codes-barres sur les images inversées. | +| [ENABLED](#ENABLED) | Active la reconnaissance supplémentaire des codes-barres sur les images inversées | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromValue(int value)](#fromValue-int-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final InverseImageMode AUTO +``` + + +Désactive la reconnaissance supplémentaire des codes-barres sur les images inversées pour tous les types de codes-barres sauf QR Code + +### DISABLED {#DISABLED} +``` +public static final InverseImageMode DISABLED +``` + + +Désactive la reconnaissance supplémentaire des codes-barres sur les images inversées. + +### ENABLED {#ENABLED} +``` +public static final InverseImageMode ENABLED +``` + + +Active la reconnaissance supplémentaire des codes-barres sur les images inversées + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromValue(int value) {#fromValue-int-} +``` +public static InverseImageMode fromValue(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[InverseImageMode](../../com.aspose.barcode.barcoderecognition/inverseimagemode) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static InverseImageMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[InverseImageMode](../../com.aspose.barcode.barcoderecognition/inverseimagemode) +### values() {#values--} +``` +public static InverseImageMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.barcoderecognition.InverseImageMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/maxicodeextendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/maxicodeextendedparameters/_index.md new file mode 100644 index 000000000..5d6daafe6 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/maxicodeextendedparameters/_index.md @@ -0,0 +1,237 @@ +--- +title: MaxiCodeExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke des informations supplémentaires MaxiCode du code‑barres reconnu +type: docs +weight: 36 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/maxicodeextendedparameters/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) +``` +public final class MaxiCodeExtendedParameters extends BaseExtendedParameters +``` + +Stocke des informations supplémentaires MaxiCode du code‑barres reconnu +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters). | +| [getClass()](#getClass--) | | +| [getMaxiCodeMode()](#getMaxiCodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMaxiCodeStructuredAppendModeBarcodeId()](#getMaxiCodeStructuredAppendModeBarcodeId--) | Obtient un identifiant de code-barres MaxiCode en mode d'ajout structuré. | +| [getMaxiCodeStructuredAppendModeBarcodesCount()](#getMaxiCodeStructuredAppendModeBarcodesCount--) | Obtient le nombre de codes-barres MaxiCode en mode d'ajout structuré. | +| [getMode()](#getMode--) | Obtient un mode d'encodage MaxiCode. | +| [getStructuredAppendModeBarcodeId()](#getStructuredAppendModeBarcodeId--) | Obtient un identifiant de code-barres MaxiCode en mode d'ajout structuré. | +| [getStructuredAppendModeBarcodesCount()](#getStructuredAppendModeBarcodesCount--) | Obtient le nombre de codes-barres MaxiCode en mode d'ajout structuré. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [op_Equality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second)](#op-Equality-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-) | Renvoie une valeur indiquant si la première valeur [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) est égale à la seconde. | +| [op_Inequality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second)](#op-Inequality-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-) | Renvoie une valeur indiquant si la première valeur [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) est différente de la seconde. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de cet [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getMaxiCodeMode() {#getMaxiCodeMode--} +``` +public final int getMaxiCodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Mode4 + +**Returns:** +int - un mode d'encodage MaxiCode. +### getMaxiCodeStructuredAppendModeBarcodeId() {#getMaxiCodeStructuredAppendModeBarcodeId--} +``` +public final int getMaxiCodeStructuredAppendModeBarcodeId() +``` + + +Obtient un identifiant de code-barres MaxiCode en mode d'ajout structuré. Valeur par défaut : 0 + +**Returns:** +int - un identifiant de code-barres MaxiCode en mode d'ajout structuré. +### getMaxiCodeStructuredAppendModeBarcodesCount() {#getMaxiCodeStructuredAppendModeBarcodesCount--} +``` +public final int getMaxiCodeStructuredAppendModeBarcodesCount() +``` + + +Obtient le nombre de codes-barres MaxiCode en mode d'ajout structuré. Valeur par défaut : -1 + +**Returns:** +int - un nombre de codes-barres MaxiCode en mode d'ajout structuré. +### getMode() {#getMode--} +``` +public final int getMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Mode4 + +**Returns:** +int - un mode d'encodage MaxiCode. +### getStructuredAppendModeBarcodeId() {#getStructuredAppendModeBarcodeId--} +``` +public final int getStructuredAppendModeBarcodeId() +``` + + +Obtient un identifiant de code-barres MaxiCode en mode d'ajout structuré. Valeur par défaut : 0 + +**Returns:** +int - un identifiant de code-barres MaxiCode en mode d'ajout structuré. +### getStructuredAppendModeBarcodesCount() {#getStructuredAppendModeBarcodesCount--} +``` +public final int getStructuredAppendModeBarcodesCount() +``` + + +Obtient le nombre de codes-barres MaxiCode en mode d'ajout structuré. Valeur par défaut : -1 + +**Returns:** +int - un nombre de codes-barres MaxiCode en mode d'ajout structuré. +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### op_Equality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second) {#op-Equality-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-} +``` +public static boolean op_Equality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second) +``` + + +Renvoie une valeur indiquant si la première valeur [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) est égale à la seconde. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| first | [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | Une première valeur comparée | +| second | [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | Une seconde valeur comparée | + +**Returns:** +boolean - **true** si le premier a la même valeur que le second ; sinon, **false** . +### op_Inequality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second) {#op-Inequality-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-} +``` +public static boolean op_Inequality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second) +``` + + +Renvoie une valeur indiquant si la première valeur [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) est différente de la seconde. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| first | [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | Une première valeur comparée | +| second | [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | Une seconde valeur comparée | + +**Returns:** +boolean - **true** si le premier a une valeur différente du second ; sinon, **false** . +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de cet [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente cet [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/multidecodetype/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/multidecodetype/_index.md new file mode 100644 index 000000000..1f2a32156 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/multidecodetype/_index.md @@ -0,0 +1,334 @@ +--- +title: MultiDecodeType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Type de décodage composite. +type: docs +weight: 37 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/multidecodetype/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) +``` +public class MultiDecodeType extends BaseDecodeType +``` + +Type de décodage composite. + +Cet exemple montre comment créer des types MultiDecode composés qui combinent les types SingleDecodeType et MultiDecode. + +``` + +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MultiDecodeType(SingleDecodeType[] barcodeTypes)](#MultiDecodeType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-) | Initialise une nouvelle instance de la classe MultiDecodeType. | +| [MultiDecodeType(BaseDecodeType[] barcodeTypes)](#MultiDecodeType-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Initialise une nouvelle instance de la classe MultiDecodeType. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [add(SingleDecodeType singleType)](#add-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Ajoute un autre [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) au MultiDecodeType. | +| [containsAll(BaseDecodeType[] barcodeTypes)](#containsAll-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Vérifiez si cela contient tous les types de codes-barres. | +| [containsAny(BaseDecodeType[] decodeTypes)](#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Contient-il l'un des types | +| [equals(MultiDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-) | Renvoie une valeur indiquant si cette instance est égale à une valeur MultiDecodeType spécifiée. | +| [equals(SingleDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Renvoie une valeur indiquant si cette collection de types de décodage ne contient que la valeur [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) spécifiée. | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur MultiDecodeType spécifiée. | +| [exclude(SingleDecodeType singleType)](#exclude-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Exclut [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) du MultiDecodeType et renvoie une nouvelle instance de MultiDecodeType. | +| [getClass()](#getClass--) | | +| [getSingleTypes()](#getSingleTypes--) | Représente une liste de types simples. | +| [getSingleTypesCount()](#getSingleTypesCount--) | Renvoie le nombre de types simples. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Méthode remplacée représentant le MultiDecodeType sous forme de chaîne. | +| [tryParseBaseDecodeType(String parsingType)](#tryParseBaseDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un BaseDecodeType en son instance, après avoir déterminé le type concret. | +| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un MultiDecodeType en son instance. | +| [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un SingleDecodeType en son instance. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MultiDecodeType(SingleDecodeType[] barcodeTypes) {#MultiDecodeType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-} +``` +public MultiDecodeType(SingleDecodeType[] barcodeTypes) +``` + + +Initialise une nouvelle instance de la classe MultiDecodeType. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeTypes | [SingleDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Tableau de types de décodage simples | + +### MultiDecodeType(BaseDecodeType[] barcodeTypes) {#MultiDecodeType-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public MultiDecodeType(BaseDecodeType[] barcodeTypes) +``` + + +Initialise une nouvelle instance de la classe MultiDecodeType. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Tableau de types de décodage multiples et simples. | + +### add(SingleDecodeType singleType) {#add-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public final void add(SingleDecodeType singleType) +``` + + +Ajoute un autre [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) au MultiDecodeType. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| singleType | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Un Single DecodeType à ajouter à la liste | + +### containsAll(BaseDecodeType[] barcodeTypes) {#containsAll-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public final boolean containsAll(BaseDecodeType[] barcodeTypes) +``` + + +Vérifiez si cela contient tous les types de codes-barres. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Entrée des types de codes-barres simples ou multiples. | + +**Returns:** +booléen - La valeur est vraie si tous les types sont inclus dans +### containsAny(BaseDecodeType[] decodeTypes) {#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public boolean containsAny(BaseDecodeType[] decodeTypes) +``` + + +Contient-il l'un des types + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| decodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Types de décodage | + +**Returns:** +booléen - La valeur est vraie si un ou plusieurs types sont inclus dans +### equals(MultiDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-} +``` +public boolean equals(MultiDecodeType other) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur MultiDecodeType spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| autre | com.aspose.barcode.barcoderecognition.MultiDecodeType | Une valeur MultiDecodeType à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### equals(SingleDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public boolean equals(SingleDecodeType other) +``` + + +Renvoie une valeur indiquant si cette collection de types de décodage ne contient que la valeur [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| other | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Une valeur [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) à comparer à cette collection de types de décodage. | + +**Returns:** +booléen - **true** si cette collection ne contient que le type de décodage spécifié ; sinon, **false**. +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur MultiDecodeType spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### exclude(SingleDecodeType singleType) {#exclude-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public final MultiDecodeType exclude(SingleDecodeType singleType) +``` + + +Exclut [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) du MultiDecodeType et renvoie une nouvelle instance de MultiDecodeType. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| singleType | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Un type de décodage unique à exclure. | + +**Returns:** +com.aspose.barcode.barcoderecognition.MultiDecodeType - Nouvelle instance de MultiDecodeType avec le SingleDecodeType exclu. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getSingleTypes() {#getSingleTypes--} +``` +public final List getSingleTypes() +``` + + +Représente une liste de types simples. + +**Returns:** +java.util.List - Liste des types uniques +### getSingleTypesCount() {#getSingleTypesCount--} +``` +public final int getSingleTypesCount() +``` + + +Renvoie le nombre de types simples. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Méthode remplacée représentant le MultiDecodeType sous forme de chaîne. + +**Returns:** +java.lang.String - Une chaîne représentant l'instance MultiDecodeType sous la forme "singleDecodeType1, singleDecodeType2, ..." + + **"AllSupportedTypes"** returns when all types are included. +### tryParseBaseDecodeType(String parsingType) {#tryParseBaseDecodeType-java.lang.String-} +``` +public static BaseDecodeType tryParseBaseDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un BaseDecodeType en son instance, après avoir déterminé le type concret. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant une représentation MultiDecodeType à convertir. | + +**Returns:** +[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultiDecodeType is returned, when conversion has completed successfully; + +sinon, elle renvoie un type indéfini. ou MultiDecodeType ("None"). +### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-} +``` +public static MultiDecodeType tryParseMultiDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un MultiDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant une représentation MultiDecodeType à convertir. | + +**Returns:** +com.aspose.barcode.barcoderecognition.MultiDecodeType - Un MultiDecodeType réel est renvoyé lorsque la conversion s'est terminée avec succès; + +sinon, elle renvoie un type indéfini. ou MultiDecodeType ("None"). +### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-} +``` +public static SingleDecodeType tryParseSingleDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un SingleDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant un SingleDecodeType au format "EAN8" ou "EAN13" ou "CodaBar"... à convertir. | + +**Returns:** +[SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) - An actual SingleDecodeType is returned, when conversion has completed successfully; + +sinon, elle renvoie un type indéfini. ou SingleDecodeType (-1, "None"). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/multydecodetype/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/multydecodetype/_index.md new file mode 100644 index 000000000..9f374d483 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/multydecodetype/_index.md @@ -0,0 +1,337 @@ +--- +title: MultyDecodeType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Type de décodage composite. +type: docs +weight: 38 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/multydecodetype/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype), com.aspose.barcode.barcoderecognition.MultiDecodeType +``` +public class MultyDecodeType extends MultiDecodeType +``` + +Type de décodage composite. + +-------------------- + +> ``` +> CreateThis sample shows how to create compound MultyDecode types that combine SingleDecodeType and MultiDecode types. +> +> MultyDecodeType types1 = new MultyDecodeType(DecodeType.QR, DecodeType.DATA_MATRIX); +> MultyDecodeType types2 = new MultyDecodeType(types1, DecodeType.CODE_128, DecodeType.CODE_39); +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MultyDecodeType(SingleDecodeType[] barcodeTypes)](#MultyDecodeType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-) | Initialise une nouvelle instance de la classe [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype). | +| [MultyDecodeType(BaseDecodeType[] barcodeTypes)](#MultyDecodeType-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Initialise une nouvelle instance de la classe [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype). | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [add(SingleDecodeType singleType)](#add-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Ajoute un autre [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) au MultiDecodeType. | +| [containsAll(BaseDecodeType[] barcodeTypes)](#containsAll-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Vérifiez si cela contient tous les types de codes-barres. | +| [containsAny(BaseDecodeType[] decodeTypes)](#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Contient-il l'un des types | +| [equals(MultiDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-) | Renvoie une valeur indiquant si cette instance est égale à une valeur MultiDecodeType spécifiée. | +| [equals(SingleDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Renvoie une valeur indiquant si cette collection de types de décodage ne contient que la valeur [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) spécifiée. | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur MultiDecodeType spécifiée. | +| [exclude(SingleDecodeType singleType)](#exclude-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Exclut [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) du MultiDecodeType et renvoie une nouvelle instance de MultiDecodeType. | +| [getClass()](#getClass--) | | +| [getSingleTypes()](#getSingleTypes--) | Représente une liste de types simples. | +| [getSingleTypesCount()](#getSingleTypesCount--) | Renvoie le nombre de types simples. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Méthode remplacée représentant le MultiDecodeType sous forme de chaîne. | +| [tryParseBaseDecodeType(String parsingType)](#tryParseBaseDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un BaseDecodeType en son instance, après avoir déterminé le type concret. | +| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un MultiDecodeType en son instance. | +| [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un SingleDecodeType en son instance. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MultyDecodeType(SingleDecodeType[] barcodeTypes) {#MultyDecodeType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-} +``` +public MultyDecodeType(SingleDecodeType[] barcodeTypes) +``` + + +Initialise une nouvelle instance de la classe [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeTypes | [SingleDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Tableau de types de décodage simples | + +### MultyDecodeType(BaseDecodeType[] barcodeTypes) {#MultyDecodeType-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public MultyDecodeType(BaseDecodeType[] barcodeTypes) +``` + + +Initialise une nouvelle instance de la classe [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Tableau de types de décodage multiples et simples. | + +### add(SingleDecodeType singleType) {#add-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public final void add(SingleDecodeType singleType) +``` + + +Ajoute un autre [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) au MultiDecodeType. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| singleType | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Un Single DecodeType à ajouter à la liste | + +### containsAll(BaseDecodeType[] barcodeTypes) {#containsAll-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public final boolean containsAll(BaseDecodeType[] barcodeTypes) +``` + + +Vérifiez si cela contient tous les types de codes-barres. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Entrée des types de codes-barres simples ou multiples. | + +**Returns:** +booléen - La valeur est vraie si tous les types sont inclus dans +### containsAny(BaseDecodeType[] decodeTypes) {#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public boolean containsAny(BaseDecodeType[] decodeTypes) +``` + + +Contient-il l'un des types + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| decodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Types de décodage | + +**Returns:** +booléen - La valeur est vraie si un ou plusieurs types sont inclus dans +### equals(MultiDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-} +``` +public boolean equals(MultiDecodeType other) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur MultiDecodeType spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| autre | com.aspose.barcode.barcoderecognition.MultiDecodeType | Une valeur MultiDecodeType à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### equals(SingleDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public boolean equals(SingleDecodeType other) +``` + + +Renvoie une valeur indiquant si cette collection de types de décodage ne contient que la valeur [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| other | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Une valeur [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) à comparer à cette collection de types de décodage. | + +**Returns:** +booléen - **true** si cette collection ne contient que le type de décodage spécifié ; sinon, **false**. +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur MultiDecodeType spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### exclude(SingleDecodeType singleType) {#exclude-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public final MultiDecodeType exclude(SingleDecodeType singleType) +``` + + +Exclut [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) du MultiDecodeType et renvoie une nouvelle instance de MultiDecodeType. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| singleType | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Un type de décodage unique à exclure. | + +**Returns:** +com.aspose.barcode.barcoderecognition.MultiDecodeType - Nouvelle instance de MultiDecodeType avec le SingleDecodeType exclu. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getSingleTypes() {#getSingleTypes--} +``` +public final List getSingleTypes() +``` + + +Représente une liste de types simples. + +**Returns:** +java.util.List - Liste des types uniques +### getSingleTypesCount() {#getSingleTypesCount--} +``` +public final int getSingleTypesCount() +``` + + +Renvoie le nombre de types simples. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Méthode remplacée représentant le MultiDecodeType sous forme de chaîne. + +**Returns:** +java.lang.String - Une chaîne représentant l'instance MultiDecodeType sous la forme "singleDecodeType1, singleDecodeType2, ..." + + **"AllSupportedTypes"** returns when all types are included. +### tryParseBaseDecodeType(String parsingType) {#tryParseBaseDecodeType-java.lang.String-} +``` +public static BaseDecodeType tryParseBaseDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un BaseDecodeType en son instance, après avoir déterminé le type concret. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant une représentation MultiDecodeType à convertir. | + +**Returns:** +[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultiDecodeType is returned, when conversion has completed successfully; + +sinon, elle renvoie un type indéfini. ou MultiDecodeType ("None"). +### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-} +``` +public static MultiDecodeType tryParseMultiDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un MultiDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant une représentation MultiDecodeType à convertir. | + +**Returns:** +com.aspose.barcode.barcoderecognition.MultiDecodeType - Un MultiDecodeType réel est renvoyé lorsque la conversion s'est terminée avec succès; + +sinon, elle renvoie un type indéfini. ou MultiDecodeType ("None"). +### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-} +``` +public static SingleDecodeType tryParseSingleDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un SingleDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant un SingleDecodeType au format "EAN8" ou "EAN13" ou "CodaBar"... à convertir. | + +**Returns:** +[SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) - An actual SingleDecodeType is returned, when conversion has completed successfully; + +sinon, elle renvoie un type indéfini. ou SingleDecodeType (-1, "None"). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/onedextendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/onedextendedparameters/_index.md new file mode 100644 index 000000000..96337e32b --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/onedextendedparameters/_index.md @@ -0,0 +1,180 @@ +--- +title: OneDExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke les données spéciales du code‑barres 1D reconnu, comme le texte du code séparé et la somme de contrôle +type: docs +weight: 39 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/onedextendedparameters/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) +``` +public final class OneDExtendedParameters extends BaseExtendedParameters +``` + +Stocke les données spéciales du code‑barres 1D reconnu, comme le texte du code séparé et la somme de contrôle + +-------------------- + +> ``` +> This sample shows how to get 1D barcode value and checksum +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.EAN_13, "1234567890128"); +> generator.save("c:\\test.png"); +> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.EAN_13); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> System.out.println("BarCode Value: " + result.getExtended().getOneD().getValue()); +> System.out.println("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); +> } +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur OneDExtendedParameters spécifiée. | +| [getCheckSum()](#getCheckSum--) | Obtient la somme de contrôle pour les codes-barres 1D. | +| [getClass()](#getClass--) | | +| [getValue()](#getValue--) | Obtient le texte du code des codes-barres 1D sans somme de contrôle. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de cet OneDExtendedParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur OneDExtendedParameters spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getCheckSum() {#getCheckSum--} +``` +public String getCheckSum() +``` + + +Obtient la somme de contrôle pour les codes-barres 1D. + +Valeur : La somme de contrôle pour le code-barres 1D. + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public String getValue() +``` + + +Obtient le texte du code des codes-barres 1D sans somme de contrôle. + +Valeur : Le texte du code des codes-barres 1D sans somme de contrôle. + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de cet OneDExtendedParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ce OneDExtendedParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/pdf417extendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/pdf417extendedparameters/_index.md new file mode 100644 index 000000000..61b5fe38c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/pdf417extendedparameters/_index.md @@ -0,0 +1,311 @@ +--- +title: Pdf417ExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke les informations de métadonnées MacroPdf417 du code‑barres reconnu +type: docs +weight: 40 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/pdf417extendedparameters/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) +``` +public final class Pdf417ExtendedParameters extends BaseExtendedParameters +``` + +Stocke les informations de métadonnées MacroPdf417 du code‑barres reconnu + +-------------------- + +> ``` +> This sample shows how to get Macro Pdf417 metadata +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MacroPdf417, "12345"); +> generator.getParameters().getBarcode().getPdf417().setPdf417MacroFileID(10); +> generator.getParameters().getBarcode().getPdf417().setPdf417MacroSegmentsCount(2); +> generator.getParameters().getBarcode().getPdf417().setPdf417MacroSegmentID(1); +> generator.save("c:\\test.png"); +> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.MACRO_PDF_417); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> System.out.println("BarCode Type: " + result.getCodeTypeName()); +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> System.out.println("Macro Pdf417 FileID: " + result.getExtended().getPdf417().getMacroPdf417FileID()); +> System.out.println("Macro Pdf417 Segments: " + result.getExtended().getPdf417().getMacroPdf417SegmentsCount()); +> System.out.println("Macro Pdf417 SegmentID: " + result.getExtended().getPdf417().getMacroPdf417SegmentID()); +> } +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de Pdf417ExtendedParameters. | +| [getClass()](#getClass--) | | +| [getMacroPdf417Addressee()](#getMacroPdf417Addressee--) | Nom du destinataire Macro PDF417 (facultatif). | +| [getMacroPdf417Checksum()](#getMacroPdf417Checksum--) | Somme de contrôle Macro PDF417 (facultatif). | +| [getMacroPdf417FileID()](#getMacroPdf417FileID--) | Obtient l'ID du fichier du code-barres, disponible uniquement avec MacroPdf417. | +| [getMacroPdf417FileName()](#getMacroPdf417FileName--) | Nom de fichier Macro PDF417 (facultatif). | +| [getMacroPdf417FileSize()](#getMacroPdf417FileSize--) | Taille du fichier Macro PDF417 (facultatif). | +| [getMacroPdf417SegmentID()](#getMacroPdf417SegmentID--) | Obtient l'ID du segment du code-barres, disponible uniquement avec MacroPdf417. | +| [getMacroPdf417SegmentsCount()](#getMacroPdf417SegmentsCount--) | Obtient le nombre de segments du code-barres macro pdf417. | +| [getMacroPdf417Sender()](#getMacroPdf417Sender--) | Nom de l'expéditeur Macro PDF417 (facultatif). | +| [getMacroPdf417Terminator()](#getMacroPdf417Terminator--) | Indique si le segment est le dernier segment d'un fichier Macro PDF417. | +| [getMacroPdf417TimeStamp()](#getMacroPdf417TimeStamp--) | Horodatage Macro PDF417 (facultatif). | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [isCode128Emulation()](#isCode128Emulation--) | Indicateur qui indique que le code-barres MicroPdf417 est encodé avec les mots de code d'émulation Code 128 908, 909, 910 ou 911. | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [isLinked()](#isLinked--) | Indicateur qui indique que le code-barres doit être lié à un code-barres 1D. | +| [isReaderInitialization()](#isReaderInitialization--) | Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce Pdf417ExtendedParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de Pdf417ExtendedParameters. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getMacroPdf417Addressee() {#getMacroPdf417Addressee--} +``` +public String getMacroPdf417Addressee() +``` + + +Nom du destinataire Macro PDF417 (facultatif). + +**Returns:** +java.lang.String - Nom du destinataire. +### getMacroPdf417Checksum() {#getMacroPdf417Checksum--} +``` +public int getMacroPdf417Checksum() +``` + + +Somme de contrôle Macro PDF417 (facultatif). + +**Returns:** +int - Somme de contrôle. +### getMacroPdf417FileID() {#getMacroPdf417FileID--} +``` +public String getMacroPdf417FileID() +``` + + +Obtient l'ID du fichier du code-barres, disponible uniquement avec MacroPdf417. + +Valeur : L'ID du fichier pour MacroPdf417 + +**Returns:** +java.lang.String +### getMacroPdf417FileName() {#getMacroPdf417FileName--} +``` +public String getMacroPdf417FileName() +``` + + +Nom de fichier Macro PDF417 (facultatif). + +**Returns:** +java.lang.String - Nom de fichier. +### getMacroPdf417FileSize() {#getMacroPdf417FileSize--} +``` +public int getMacroPdf417FileSize() +``` + + +Taille du fichier Macro PDF417 (facultatif). + +**Returns:** +int - Taille du fichier. +### getMacroPdf417SegmentID() {#getMacroPdf417SegmentID--} +``` +public int getMacroPdf417SegmentID() +``` + + +Obtient l'ID du segment du code-barres, disponible uniquement avec MacroPdf417. + +Valeur : L'ID du segment du code-barres. + +**Returns:** +int +### getMacroPdf417SegmentsCount() {#getMacroPdf417SegmentsCount--} +``` +public int getMacroPdf417SegmentsCount() +``` + + +Obtient le nombre de segments du code-barres macro pdf417. La valeur par défaut est -1. + +Valeur : Nombre de segments. + +**Returns:** +int +### getMacroPdf417Sender() {#getMacroPdf417Sender--} +``` +public String getMacroPdf417Sender() +``` + + +Nom de l'expéditeur Macro PDF417 (facultatif). + +**Returns:** +java.lang.String - Nom de l'expéditeur +### getMacroPdf417Terminator() {#getMacroPdf417Terminator--} +``` +public boolean getMacroPdf417Terminator() +``` + + +Indique si le segment est le dernier segment d'un fichier Macro PDF417. + +**Returns:** +boolean - Terminateur. +### getMacroPdf417TimeStamp() {#getMacroPdf417TimeStamp--} +``` +public LocalDateTime getMacroPdf417TimeStamp() +``` + + +Horodatage Macro PDF417 (facultatif). + +**Returns:** +java.time.LocalDateTime - Time stamp. +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### isCode128Emulation() {#isCode128Emulation--} +``` +public boolean isCode128Emulation() +``` + + +Indicateur qui indique que le code-barres MicroPdf417 est encodé avec les mots de code d'émulation Code 128 908, 909, 910 ou 911. + +**Returns:** +boolean - Code 128 emulation flag +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### isLinked() {#isLinked--} +``` +public boolean isLinked() +``` + + +Indicateur qui indique que le code-barres doit être lié à un code-barres 1D. + +Value: Linkage flag + +**Returns:** +boolean +### isReaderInitialization() {#isReaderInitialization--} +``` +public boolean isReaderInitialization() +``` + + +Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. + +Value: Reader initialization flag + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce Pdf417ExtendedParameters. + +**Returns:** +java.lang.String - A string that represents this Pdf417ExtendedParameters . +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/processorsettings/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/processorsettings/_index.md new file mode 100644 index 000000000..7d3d17f4c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/processorsettings/_index.md @@ -0,0 +1,250 @@ +--- +title: ProcessorSettings +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: ProcessorSettings permet de reconnaître les codes‑barres avec une augmentation des performances grâce au multithreading +type: docs +weight: 41 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/processorsettings/ +--- +**Inheritance:** +java.lang.Object +``` +public class ProcessorSettings +``` + +ProcessorSettings permet de reconnaître les codes‑barres avec une augmentation des performances grâce au multithreading + +-------------------- + +> ``` +> This sample shows how to use ProcessorSettings to add maximum multi-threaded performnce +> +> BarCodeReader.getProcessorSettings().setMaxAdditionalAllowedThreads(Environment.getProcessorCount()* 2); +> //this allows to use all cores for single BarCodeReader call +> BarCodeReader.getProcessorSettings().setUseAllCores(true); +> //this allows to use current count of cores +> BarCodeReader.getProcessorSettings().setUseAllCores(false); +> BarCodeReader.getProcessorSettings().setUseOnlyThisCoresCount(Math.max(1, Environment.getProcessorCount() / 2)); +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getMaxAdditionalAllowedThreads()](#getMaxAdditionalAllowedThreads--) | Spécifiez le nombre maximal de threads supplémentaires pour exécuter le code en parallèle | +| [getUseAllCores()](#getUseAllCores--) | Est nécessaire pour utiliser tous les cœurs. | +| [getUseOnlyThisCoresCount()](#getUseOnlyThisCoresCount--) | Spécifiez le nombre de cœurs à utiliser. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setMaxAdditionalAllowedThreads(int value)](#setMaxAdditionalAllowedThreads-int-) | Spécifiez le nombre maximal de threads supplémentaires pour exécuter le code en parallèle | +| [setUseAllCores(boolean value)](#setUseAllCores-boolean-) | Est nécessaire pour utiliser tous les cœurs. | +| [setUseOnlyThisCoresCount(int value)](#setUseOnlyThisCoresCount-int-) | Spécifiez le nombre de cœurs à utiliser. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getMaxAdditionalAllowedThreads() {#getMaxAdditionalAllowedThreads--} +``` +public int getMaxAdditionalAllowedThreads() +``` + + +Spécifiez le nombre maximal de threads supplémentaires pour exécuter le code en parallèle + +-------------------- + +> ``` +> BarCodeReader.getProcessorSettings().setMaxAdditionalAllowedThreads(Environment.getProcessorCount() * 2); +> ``` + +**Returns:** +int +### getUseAllCores() {#getUseAllCores--} +``` +public boolean getUseAllCores() +``` + + +Est nécessaire pour utiliser tous les cœurs. + +-------------------- + +> ``` +> BarCodeReader.getProcessorSettings().setUseAllCores(true); +> ``` + +**Returns:** +boolean +### getUseOnlyThisCoresCount() {#getUseOnlyThisCoresCount--} +``` +public int getUseOnlyThisCoresCount() +``` + + +Spécifiez le nombre de cœurs à utiliser. Vous devez modifier la propriété "UseAllCores" en "false". + +-------------------- + +> ``` +> BarCodeReader.getProcessorSettings().setUseAllCores(false); +> BarCodeReader.getProcessorSettings().setUseOnlyThisCoresCount(Math.max(1, Environment.getProcessorCount() / 2)); +> ``` + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setMaxAdditionalAllowedThreads(int value) {#setMaxAdditionalAllowedThreads-int-} +``` +public void setMaxAdditionalAllowedThreads(int value) +``` + + +Spécifiez le nombre maximal de threads supplémentaires pour exécuter le code en parallèle + +-------------------- + +> ``` +> BarCodeReader.getProcessorSettings().setMaxAdditionalAllowedThreads(Environment.getProcessorCount() * 2); +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setUseAllCores(boolean value) {#setUseAllCores-boolean-} +``` +public void setUseAllCores(boolean value) +``` + + +Est nécessaire pour utiliser tous les cœurs. + +-------------------- + +> ``` +> BarCodeReader.getProcessorSettings().setUseAllCores(true); +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setUseOnlyThisCoresCount(int value) {#setUseOnlyThisCoresCount-int-} +``` +public void setUseOnlyThisCoresCount(int value) +``` + + +Spécifiez le nombre de cœurs à utiliser. Vous devez modifier la propriété "UseAllCores" en "false". + +-------------------- + +> ``` +> BarCodeReader.getProcessorSettings().setUseAllCores(false); +> BarCodeReader.getProcessorSettings().setUseOnlyThisCoresCount(Math.max(1, Environment.getProcessorCount() / 2)); +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/qrextendedparameters/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/qrextendedparameters/_index.md new file mode 100644 index 000000000..e31d1823e --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/qrextendedparameters/_index.md @@ -0,0 +1,321 @@ +--- +title: QRExtendedParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke les informations QR Structured Append du code‑barres reconnu +type: docs +weight: 42 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/qrextendedparameters/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) +``` +public final class QRExtendedParameters extends BaseExtendedParameters +``` + +Stocke les informations QR Structured Append du code‑barres reconnu + +Cet exemple montre comment obtenir les données QR Structured Append + +``` +{ +``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters). | +| [getClass()](#getClass--) | | +| [getErrorLevel()](#getErrorLevel--) | Niveau de correction d'erreur Reed-Solomon du code-barres reconnu. | +| [getMicroQRVersion()](#getMicroQRVersion--) | Version du MicroQR Code reconnu. | +| [getQRErrorLevel()](#getQRErrorLevel--) | Niveau de correction d'erreur Reed-Solomon du code-barres reconnu. | +| [getQRStructuredAppendModeBarCodeIndex()](#getQRStructuredAppendModeBarCodeIndex--) | Obtient l'index du code-barres en mode QR structured append. | +| [getQRStructuredAppendModeBarCodesQuantity()](#getQRStructuredAppendModeBarCodesQuantity--) | Obtient la quantité de codes-barres en mode QR structured append. | +| [getQRStructuredAppendModeParityData()](#getQRStructuredAppendModeParityData--) | Obtient les données de parité du mode d'ajout structuré QR. | +| [getQRVersion()](#getQRVersion--) | Version du code QR reconnu. | +| [getRectMicroQRVersion()](#getRectMicroQRVersion--) | Version du code RectMicroQR reconnu. | +| [getStructuredAppendModeBarCodeIndex()](#getStructuredAppendModeBarCodeIndex--) | Obtient l'index du code-barres en mode QR structured append. | +| [getStructuredAppendModeBarCodesQuantity()](#getStructuredAppendModeBarCodesQuantity--) | Obtient la quantité de codes-barres en mode QR structured append. | +| [getStructuredAppendModeParityData()](#getStructuredAppendModeParityData--) | Obtient les données de parité du mode d'ajout structuré QR. | +| [getVersion()](#getVersion--) | Version du code QR reconnu. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [isEmpty()](#isEmpty--) | Teste si tous les paramètres n'ont que des valeurs par défaut | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [op_Equality(QRExtendedParameters first, QRExtendedParameters second)](#op-Equality-com.aspose.barcode.barcoderecognition.QRExtendedParameters-com.aspose.barcode.barcoderecognition.QRExtendedParameters-) | Renvoie une valeur indiquant si la première valeur de [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) est égale à la seconde. | +| [op_Inequality(QRExtendedParameters first, QRExtendedParameters second)](#op-Inequality-com.aspose.barcode.barcoderecognition.QRExtendedParameters-com.aspose.barcode.barcoderecognition.QRExtendedParameters-) | Renvoie une valeur indiquant si la première valeur de [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) est différente de la seconde. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getErrorLevel() {#getErrorLevel--} +``` +public final QRErrorLevel getErrorLevel() +``` + + +Niveau de correction d'erreurs Reed-Solomon du code-barres reconnu. Du plus bas au plus élevé : LevelL, LevelM, LevelQ, LevelH. + +**Returns:** +[QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) +### getMicroQRVersion() {#getMicroQRVersion--} +``` +public final MicroQRVersion getMicroQRVersion() +``` + + +Version du code MicroQR reconnu. De M1 à M4. + +**Returns:** +[MicroQRVersion](../../com.aspose.barcode.generation/microqrversion) +### getQRErrorLevel() {#getQRErrorLevel--} +``` +public final QRErrorLevel getQRErrorLevel() +``` + + +Niveau de correction d'erreurs Reed-Solomon du code-barres reconnu. Du plus bas au plus élevé : LevelL, LevelM, LevelQ, LevelH. + +**Returns:** +[QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) +### getQRStructuredAppendModeBarCodeIndex() {#getQRStructuredAppendModeBarCodeIndex--} +``` +public final int getQRStructuredAppendModeBarCodeIndex() +``` + + +Obtient l'index du code-barres en mode d'ajout structuré QR. L'index commence à 0. La valeur par défaut est -1. + +Valeur : la quantité de codes-barres en mode d'ajout structuré QR. + +**Returns:** +int - l'index du code-barres en mode d'ajout structuré QR. +### getQRStructuredAppendModeBarCodesQuantity() {#getQRStructuredAppendModeBarCodesQuantity--} +``` +public final int getQRStructuredAppendModeBarCodesQuantity() +``` + + +Obtient la quantité de codes-barres en mode d'ajout structuré QR. La valeur par défaut est -1. + +Valeur : la quantité de codes-barres en mode d'ajout structuré QR. + +**Returns:** +int - la quantité de codes-barres en mode d'ajout structuré QR. +### getQRStructuredAppendModeParityData() {#getQRStructuredAppendModeParityData--} +``` +public final int getQRStructuredAppendModeParityData() +``` + + +Obtient les données de parité du mode d'ajout structuré QR. La valeur par défaut est -1. + +Valeur : l'index du code-barres en mode d'ajout structuré QR. + +**Returns:** +int - les données de parité du mode d'ajout structuré QR. +### getQRVersion() {#getQRVersion--} +``` +public final QRVersion getQRVersion() +``` + + +Version du code QR reconnu. De Version1 à Version40. + +**Returns:** +[QRVersion](../../com.aspose.barcode.generation/qrversion) +### getRectMicroQRVersion() {#getRectMicroQRVersion--} +``` +public final RectMicroQRVersion getRectMicroQRVersion() +``` + + +Version du code RectMicroQR reconnu. De R7x43 à R17x139. + +**Returns:** +[RectMicroQRVersion](../../com.aspose.barcode.generation/rectmicroqrversion) +### getStructuredAppendModeBarCodeIndex() {#getStructuredAppendModeBarCodeIndex--} +``` +public final int getStructuredAppendModeBarCodeIndex() +``` + + +Obtient l'index du code-barres en mode d'ajout structuré QR. L'index commence à 0. La valeur par défaut est -1. + +Valeur : la quantité de codes-barres en mode d'ajout structuré QR. + +**Returns:** +int - l'index du code-barres en mode d'ajout structuré QR. +### getStructuredAppendModeBarCodesQuantity() {#getStructuredAppendModeBarCodesQuantity--} +``` +public final int getStructuredAppendModeBarCodesQuantity() +``` + + +Obtient la quantité de codes-barres en mode d'ajout structuré QR. La valeur par défaut est -1. + +Valeur : la quantité de codes-barres en mode d'ajout structuré QR. + +**Returns:** +int - la quantité de codes-barres en mode d'ajout structuré QR. +### getStructuredAppendModeParityData() {#getStructuredAppendModeParityData--} +``` +public final int getStructuredAppendModeParityData() +``` + + +Obtient les données de parité du mode d'ajout structuré QR. La valeur par défaut est -1. + +Valeur : l'index du code-barres en mode d'ajout structuré QR. + +**Returns:** +int - les données de parité du mode d'ajout structuré QR. +### getVersion() {#getVersion--} +``` +public final QRVersion getVersion() +``` + + +Version du code QR reconnu. De Version1 à Version40. + +**Returns:** +[QRVersion](../../com.aspose.barcode.generation/qrversion) +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les paramètres n'ont que des valeurs par défaut + +Valeur : Renvoie **true** si tous les paramètres n'ont que des valeurs par défaut ; sinon, **false** . + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### op_Equality(QRExtendedParameters first, QRExtendedParameters second) {#op-Equality-com.aspose.barcode.barcoderecognition.QRExtendedParameters-com.aspose.barcode.barcoderecognition.QRExtendedParameters-} +``` +public static boolean op_Equality(QRExtendedParameters first, QRExtendedParameters second) +``` + + +Renvoie une valeur indiquant si la première valeur de [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) est égale à la seconde. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| first | [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) | Une première valeur comparée | +| second | [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) | Une seconde valeur comparée | + +**Returns:** +boolean - **true** si le premier a la même valeur que le second ; sinon, **false** . +### op_Inequality(QRExtendedParameters first, QRExtendedParameters second) {#op-Inequality-com.aspose.barcode.barcoderecognition.QRExtendedParameters-com.aspose.barcode.barcoderecognition.QRExtendedParameters-} +``` +public static boolean op_Inequality(QRExtendedParameters first, QRExtendedParameters second) +``` + + +Renvoie une valeur indiquant si la première valeur de [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) est différente de la seconde. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| first | [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) | Une première valeur comparée | +| second | [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) | Une seconde valeur comparée | + +**Returns:** +boolean - **true** si le premier a une valeur différente du second ; sinon, **false** . +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente ce [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/quadrangle/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/quadrangle/_index.md new file mode 100644 index 000000000..ee70bdff3 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/quadrangle/_index.md @@ -0,0 +1,383 @@ +--- +title: Quadrangle +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Stocke un ensemble de quatre Points qui représentent une région Quadrangle. +type: docs +weight: 43 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/quadrangle/ +--- +**Inheritance:** +java.lang.Object +``` +public class Quadrangle +``` + +Stocke un ensemble de quatre Points qui représentent une région Quadrangle +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [Quadrangle()](#Quadrangle--) | | +| [Quadrangle(Point leftTop, Point rightTop, Point rightBottom, Point leftBottom)](#Quadrangle-android.graphics.Point-android.graphics.Point-android.graphics.Point-android.graphics.Point-) | Initialise une nouvelle instance de la structure Quadrangle avec les points décrivant. | +## Champs + +| Champ | Description | +| --- | --- | +| [EMPTY](#EMPTY) | Représente une classe Quadrangle avec ses propriétés laissées non initialisées. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clone()](#clone--) | | +| [contains(Point pt)](#contains-android.graphics.Point-) | Détermine si le Point spécifié est contenu dans cette classe Quadrangle . | +| [contains(Rect rect)](#contains-android.graphics.Rect-) | Détermine si le Rectangle spécifié est contenu ou intersecte cette classe Quadrangle . | +| [contains(Quadrangle quad)](#contains-com.aspose.barcode.barcoderecognition.Quadrangle-) | Détermine si le Quadrangle spécifié est contenu ou intersecte cette classe Quadrangle . | +| [contains(int x, int y)](#contains-int-int-) | Détermine si le point spécifié est contenu dans cette classe Quadrangle . | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur Quadrangle spécifiée. | +| [getBoundingRectangle()](#getBoundingRectangle--) | Crée un Rectangle englobant ce Quadrangle | +| [getClass()](#getClass--) | | +| [getLeftBottom()](#getLeftBottom--) | Obtient le point du coin inférieur gauche de la région Quadrangle | +| [getLeftTop()](#getLeftTop--) | Obtient le coin supérieur gauche du Point de la région Quadrangle | +| [getRightBottom()](#getRightBottom--) | Obtient le coin inférieur droit du Point de la région Quadrangle | +| [getRightTop()](#getRightTop--) | Obtient le coin supérieur droit du Point de la région Quadrangle | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [isEmpty()](#isEmpty--) | Teste si tous les Points de ce Quadrangle ont des valeurs zéro. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setLeftBottom(Point value)](#setLeftBottom-android.graphics.Point-) | Obtient le point du coin inférieur gauche de la région Quadrangle | +| [setLeftTop(Point value)](#setLeftTop-android.graphics.Point-) | Obtient le coin supérieur gauche du Point de la région Quadrangle | +| [setRightBottom(Point value)](#setRightBottom-android.graphics.Point-) | Obtient le coin inférieur droit du Point de la région Quadrangle | +| [setRightTop(Point value)](#setRightTop-android.graphics.Point-) | Obtient le coin supérieur droit du Point de la région Quadrangle | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible de ce Quadrangle. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Quadrangle() {#Quadrangle--} +``` +public Quadrangle() +``` + + +### Quadrangle(Point leftTop, Point rightTop, Point rightBottom, Point leftBottom) {#Quadrangle-android.graphics.Point-android.graphics.Point-android.graphics.Point-android.graphics.Point-} +``` +public Quadrangle(Point leftTop, Point rightTop, Point rightBottom, Point leftBottom) +``` + + +Initialise une nouvelle instance de la structure Quadrangle avec les points décrivant. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| leftTop | android.graphics.Point | Un Point qui représente le coin supérieur gauche du Quadrangle. | +| rightTop | android.graphics.Point | Un Point qui représente le coin supérieur droit du Quadrangle. | +| rightBottom | android.graphics.Point | Un Point qui représente le coin inférieur droit du Quadrangle. | +| leftBottom | android.graphics.Point | Un Point qui représente le coin inférieur gauche du Quadrangle. | + +### EMPTY {#EMPTY} +``` +public static final Quadrangle EMPTY +``` + + +Représente une classe Quadrangle avec ses propriétés laissées non initialisées. + +Valeur : Quadrangle + +### clone() {#clone--} +``` +public Quadrangle clone() +``` + + + + +**Returns:** +[Quadrangle](../../com.aspose.barcode.barcoderecognition/quadrangle) +### contains(Point pt) {#contains-android.graphics.Point-} +``` +public boolean contains(Point pt) +``` + + +Détermine si le Point spécifié est contenu dans cette classe Quadrangle . + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| pt | android.graphics.Point | Le Point à tester. | + +**Returns:** +boolean - Renvoie **true** si le Point est contenu dans cette classe Quadrangle ; sinon, **false**. +### contains(Rect rect) {#contains-android.graphics.Rect-} +``` +public boolean contains(Rect rect) +``` + + +Détermine si le Rectangle spécifié est contenu ou intersecte cette classe Quadrangle . + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| rect | android.graphics.Rect | Le Rectangle à tester. | + +**Returns:** +boolean - Renvoie **true** si le Rectangle est contenu ou intersecte cette classe Quadrangle ; sinon, **false**. +### contains(Quadrangle quad) {#contains-com.aspose.barcode.barcoderecognition.Quadrangle-} +``` +public boolean contains(Quadrangle quad) +``` + + +Détermine si le Quadrangle spécifié est contenu ou intersecte cette classe Quadrangle . + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| quad | [Quadrangle](../../com.aspose.barcode.barcoderecognition/quadrangle) | Le Quadrangle à tester. | + +**Returns:** +boolean - Renvoie **true** si le Quadrangle est contenu ou intersecte cette classe Quadrangle ; sinon, **false**. +### contains(int x, int y) {#contains-int-int-} +``` +public boolean contains(int x, int y) +``` + + +Détermine si le point spécifié est contenu dans cette classe Quadrangle . + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| x | int | Le point x coordonnée. | +| y | int | Le point y coordonnée. | + +**Returns:** +booléen - Retourne **true** si le point est contenu dans cette classe Quadrangle ; sinon, **false** . +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur Quadrangle spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur Quadrangle à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getBoundingRectangle() {#getBoundingRectangle--} +``` +public Rect getBoundingRectangle() +``` + + +Crée un Rectangle englobant ce Quadrangle + +**Returns:** +android.graphics.Rect - renvoie Rectangle englobant ce Quadrangle +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLeftBottom() {#getLeftBottom--} +``` +public Point getLeftBottom() +``` + + +Obtient le point du coin inférieur gauche de la région Quadrangle + +Valeur : Un coin inférieur gauche Point de la région Quadrangle + +**Returns:** +android.graphics.Point +### getLeftTop() {#getLeftTop--} +``` +public Point getLeftTop() +``` + + +Obtient le coin supérieur gauche du Point de la région Quadrangle + +Valeur : Un coin supérieur gauche Point de la région Quadrangle + +**Returns:** +android.graphics.Point +### getRightBottom() {#getRightBottom--} +``` +public Point getRightBottom() +``` + + +Obtient le coin inférieur droit du Point de la région Quadrangle + +Valeur : Un coin inférieur droit Point de la région Quadrangle + +**Returns:** +android.graphics.Point +### getRightTop() {#getRightTop--} +``` +public Point getRightTop() +``` + + +Obtient le coin supérieur droit du Point de la région Quadrangle + +Valeur : Un coin supérieur droit Point de la région Quadrangle + +**Returns:** +android.graphics.Point +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Teste si tous les Points de ce Quadrangle ont des valeurs zéro. + +Valeur : Retourne **true** si tous les Point s de ce Quadrangle ont des valeurs zéro ; sinon, **false** . + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setLeftBottom(Point value) {#setLeftBottom-android.graphics.Point-} +``` +public void setLeftBottom(Point value) +``` + + +Obtient le point du coin inférieur gauche de la région Quadrangle + +Valeur : Un coin inférieur gauche Point de la région Quadrangle + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | android.graphics.Point | | + +### setLeftTop(Point value) {#setLeftTop-android.graphics.Point-} +``` +public void setLeftTop(Point value) +``` + + +Obtient le coin supérieur gauche du Point de la région Quadrangle + +Valeur : Un coin supérieur gauche Point de la région Quadrangle + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | android.graphics.Point | | + +### setRightBottom(Point value) {#setRightBottom-android.graphics.Point-} +``` +public void setRightBottom(Point value) +``` + + +Obtient le coin inférieur droit du Point de la région Quadrangle + +Valeur : Un coin inférieur droit Point de la région Quadrangle + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | android.graphics.Point | | + +### setRightTop(Point value) {#setRightTop-android.graphics.Point-} +``` +public void setRightTop(Point value) +``` + + +Obtient le coin supérieur droit du Point de la région Quadrangle + +Valeur : Un coin supérieur droit Point de la région Quadrangle + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | android.graphics.Point | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible de ce Quadrangle. + +**Returns:** +java.lang.String - Une chaîne qui représente ce Quadrangle . +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/qualitysettings/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/qualitysettings/_index.md new file mode 100644 index 000000000..ef14b649e --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/qualitysettings/_index.md @@ -0,0 +1,548 @@ +--- +title: QualitySettings +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: QualitySettings permet de configurer manuellement la qualité et la vitesse de reconnaissance. +type: docs +weight: 44 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/qualitysettings/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +android.os.Parcelable +``` +public final class QualitySettings implements Parcelable +``` + +QualitySettings permet de configurer manuellement la qualité et la vitesse de reconnaissance. Vous pouvez rapidement configurer QualitySettings avec des préréglages intégrés : HighPerformance, NormalQuality, HighQuality, MaxQuality ou vous pouvez configurer manuellement des options séparées. La valeur par défaut de QualitySettings est NormalQuality. + +-------------------- + +> ``` +> This sample shows how to use QualitySettings with BarCodeReader +> +> //set HighPerformance recogition mode +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> { +> reader.setQualitySettings(QualitySettings.getHighPerformance()); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> } +> //set HighQuality recognition mode +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> { +> reader.setQualitySettings(QualitySettings.getHighQuality()); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> } +> //set HighPerformance recogition mode for low sized barcodes +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> { +> reader.setQualitySettings(QualitySettings.getHighPerformance()); +> reader.getQualitySettings().setXDimension(XDimensionMode.SMALL); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> } +> //set HighPerformance recogition mode for low quality barcodes +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> { +> reader.setQualitySettings(QualitySettings.getHighPerformance()); +> reader.getQualitySettings().setBarcodeQuality(BarcodeQualityMode.LOW); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> } +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [QualitySettings()](#QualitySettings--) | Constructeur QualitySettings | +## Champs + +| Champ | Description | +| --- | --- | +| [CREATOR](#CREATOR) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [describeContents()](#describeContents--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllowIncorrectBarcodes()](#getAllowIncorrectBarcodes--) | Permet au moteur de reconnaître les codes-barres qui ont un checksumm incorrect ou des valeurs incorrectes. | +| [getBarcodeQuality()](#getBarcodeQuality--) | Mode qui permet aux méthodes de reconnaître les éléments de code-barres avec la qualité sélectionnée. | +| [getClass()](#getClass--) | | +| [getComplexBackground()](#getComplexBackground--) | Mode qui active ou désactive la reconnaissance supplémentaire des codes-barres couleur sur des images couleur. | +| [getDeconvolution()](#getDeconvolution--) | Mode Deconvolution (image restorations) qui définit le niveau de dégradation de l'image. | +| [getHighPerformance()](#getHighPerformance--) | Préréglage de qualité de reconnaissance HighPerformance. | +| [getHighQuality()](#getHighQuality--) | Préréglage de qualité de reconnaissance HighQuality. | +| [getImageScalingMode()](#getImageScalingMode--) | Permet de mettre à l'échelle l'image avec le ImageScaleMode spécifique. | +| [getInverseImage()](#getInverseImage--) | Mode qui active ou désactive la reconnaissance supplémentaire des codes-barres sur des images à couleurs inversées (luminance). | +| [getMaxQuality()](#getMaxQuality--) | Préréglage de qualité de reconnaissance MaxQuality. | +| [getMinimalXDimension()](#getMinimalXDimension--) | Taille minimale de XDimension en pixels utilisée avec UseMinimalXDimension. | +| [getNormalQuality()](#getNormalQuality--) | Préréglage de qualité de reconnaissance NormalQuality. | +| [getXDimension()](#getXDimension--) | Mode de reconnaissance qui définit la taille (de 1 à l'infini) de l'élément minimal du code-barres : cellule de matrice ou barre. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAllowIncorrectBarcodes(boolean value)](#setAllowIncorrectBarcodes-boolean-) | Permet au moteur de reconnaître les codes-barres qui ont un checksumm incorrect ou des valeurs incorrectes. | +| [setBarcodeQuality(BarcodeQualityMode value)](#setBarcodeQuality-com.aspose.barcode.barcoderecognition.BarcodeQualityMode-) | Mode qui permet aux méthodes de reconnaître les éléments de code-barres avec la qualité sélectionnée. | +| [setComplexBackground(ComplexBackgroundMode value)](#setComplexBackground-com.aspose.barcode.barcoderecognition.ComplexBackgroundMode-) | Mode qui active ou désactive la reconnaissance supplémentaire des codes-barres couleur sur des images couleur. | +| [setDeconvolution(DeconvolutionMode value)](#setDeconvolution-com.aspose.barcode.barcoderecognition.DeconvolutionMode-) | Mode Deconvolution (image restorations) qui définit le niveau de dégradation de l'image. | +| [setImageScalingMode(ImageScalingMode value)](#setImageScalingMode-com.aspose.barcode.barcoderecognition.ImageScalingMode-) | Permet de mettre à l'échelle l'image avec le ImageScaleMode spécifique Valeur : | +| [setInverseImage(InverseImageMode value)](#setInverseImage-com.aspose.barcode.barcoderecognition.InverseImageMode-) | Mode qui active ou désactive la reconnaissance supplémentaire des codes-barres sur des images à couleurs inversées (luminance). | +| [setMinimalXDimension(float value)](#setMinimalXDimension-float-) | Taille minimale de XDimension en pixels utilisée avec UseMinimalXDimension. | +| [setXDimension(XDimensionMode value)](#setXDimension-com.aspose.barcode.barcoderecognition.XDimensionMode-) | Mode de reconnaissance qui définit la taille (de 1 à l'infini) de l'élément minimal du code-barres : cellule de matrice ou barre. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [writeToParcel(Parcel dest, int flags)](#writeToParcel-android.os.Parcel-int-) | | +### QualitySettings() {#QualitySettings--} +``` +public QualitySettings() +``` + + +Constructeur QualitySettings + +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### describeContents() {#describeContents--} +``` +public int describeContents() +``` + + + + +**Returns:** +int +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllowIncorrectBarcodes() {#getAllowIncorrectBarcodes--} +``` +public boolean getAllowIncorrectBarcodes() +``` + + +Permet au moteur de reconnaître les codes-barres qui ont un checksumm incorrect ou des valeurs incorrectes. Le mode peut être utilisé pour reconnaître les codes-barres endommagés avec un texte incorrect. + +Valeur : Permet au moteur de reconnaître les codes-barres incorrects. + +**Returns:** +boolean +### getBarcodeQuality() {#getBarcodeQuality--} +``` +public BarcodeQualityMode getBarcodeQuality() +``` + + +Mode qui permet aux méthodes de reconnaître les éléments de code-barres avec la qualité sélectionnée. Un élément de code-barres de qualité inférieure nécessite des méthodes plus complexes, ce qui ralentit la reconnaissance. + +Valeur : Mode qui permet aux méthodes de reconnaître les éléments de code-barres avec la qualité sélectionnée. + +**Returns:** +[BarcodeQualityMode](../../com.aspose.barcode.barcoderecognition/barcodequalitymode) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getComplexBackground() {#getComplexBackground--} +``` +public ComplexBackgroundMode getComplexBackground() +``` + + +Mode qui active ou désactive la reconnaissance supplémentaire des codes-barres couleur sur des images couleur. + +Valeur : Reconnaissance supplémentaire des codes-barres couleur sur des images couleur. + +**Returns:** +[ComplexBackgroundMode](../../com.aspose.barcode.barcoderecognition/complexbackgroundmode) +### getDeconvolution() {#getDeconvolution--} +``` +public DeconvolutionMode getDeconvolution() +``` + + +Mode Deconvolution (image restorations) qui définit le niveau de dégradation de l'image. À l'origine, la Deconvolution est une fonction qui peut restaurer une image dégradée (convoluée) par n'importe quelle fonction naturelle comme le flou, lors de la capture de l'image par une caméra. Comme nous ne pouvons pas détecter la fonction d'image qui corrompt l'image, nous devons examiner les fonctions les mieux connues comme le sharp ou la morphologie mathématique. + +Valeur : Mode Deconvolution qui définit le niveau de dégradation de l'image. + +**Returns:** +[DeconvolutionMode](../../com.aspose.barcode.barcoderecognition/deconvolutionmode) +### getHighPerformance() {#getHighPerformance--} +``` +public static QualitySettings getHighPerformance() +``` + + +Préréglage de qualité de reconnaissance HighPerformance. Les codes-barres de haute qualité sont bien reconnus dans ce mode. + +-------------------- + +> ``` +> This sample shows how to use HighPerformance mode +> +> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> { +> reader.setQualitySettings(QualitySettings.getHighPerformance()); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> } +> ``` + +Valeur : Préréglage de qualité de reconnaissance HighPerformance. + +**Returns:** +[QualitySettings](../../com.aspose.barcode.barcoderecognition/qualitysettings) +### getHighQuality() {#getHighQuality--} +``` +public static QualitySettings getHighQuality() +``` + + +Préréglage de qualité de reconnaissance HighQuality. Ce préréglage est développé pour les codes-barres de faible qualité. Permet de détecter les codes-barres fortement endommagés. + +-------------------- + +> ``` +> This sample shows how to use HighQuality mode +> +> +> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> { +> reader.setQualitySettings(QualitySettings.getHighQuality()); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> } +> ``` + +Valeur : préréglage de qualité de reconnaissance HighQuality. + +**Returns:** +[QualitySettings](../../com.aspose.barcode.barcoderecognition/qualitysettings) +### getImageScalingMode() {#getImageScalingMode--} +``` +public ImageScalingMode getImageScalingMode() +``` + + +Permet de mettre à l'échelle l'image avec le ImageScaleMode spécifique. + +**Returns:** +com.aspose.barcode.barcoderecognition.ImageScalingMode +### getInverseImage() {#getInverseImage--} +``` +public InverseImageMode getInverseImage() +``` + + +Mode qui active ou désactive la reconnaissance supplémentaire des codes-barres sur des images à couleurs inversées (luminance). + +Valeur : reconnaissance supplémentaire des codes-barres sur des images avec des couleurs inversées + +**Returns:** +[InverseImageMode](../../com.aspose.barcode.barcoderecognition/inverseimagemode) +### getMaxQuality() {#getMaxQuality--} +``` +public static QualitySettings getMaxQuality() +``` + + +Préréglage de qualité de reconnaissance MaxQuality. Ce préréglage est développé pour reconnaître tous les codes-barres possibles, même les codes-barres incorrects. + +-------------------- + +> ``` +> This sample shows how to use MaxQuality mode +> +> +> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> { +> reader.setQualitySettings(QualitySettings.getMaxQuality()); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> } +> ``` + +Valeur : préréglage de qualité de reconnaissance MaxQuality. + +**Returns:** +[QualitySettings](../../com.aspose.barcode.barcoderecognition/qualitysettings) +### getMinimalXDimension() {#getMinimalXDimension--} +``` +public float getMinimalXDimension() +``` + + +Taille minimale de XDimension en pixels utilisée avec UseMinimalXDimension. + +Valeur : taille minimale de XDimension en pixels qui est utilisée avec UseMinimalXDimension. + +**Returns:** +float +### getNormalQuality() {#getNormalQuality--} +``` +public static QualitySettings getNormalQuality() +``` + + +Préréglage de qualité de reconnaissance NormalQuality. Convient à la plupart des codes-barres + +-------------------- + +> ``` +> This sample shows how to use NormalQuality mode +> +> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> { +> reader.setQualitySettings(QualitySettings.getNormalQuality()); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> } +> ``` + +Valeur : préréglage de qualité de reconnaissance NormalQuality. + +**Returns:** +[QualitySettings](../../com.aspose.barcode.barcoderecognition/qualitysettings) +### getXDimension() {#getXDimension--} +``` +public XDimensionMode getXDimension() +``` + + +Mode de reconnaissance qui définit la taille (de 1 à l'infini) de l'élément minimal du code-barres : cellule de matrice ou barre. + +Valeur : taille (de 1 à l'infini) de l'élément minimal du code-barres : cellule de matrice ou barre. + +**Returns:** +[XDimensionMode](../../com.aspose.barcode.barcoderecognition/xdimensionmode) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAllowIncorrectBarcodes(boolean value) {#setAllowIncorrectBarcodes-boolean-} +``` +public void setAllowIncorrectBarcodes(boolean value) +``` + + +Permet au moteur de reconnaître les codes-barres qui ont un checksumm incorrect ou des valeurs incorrectes. Le mode peut être utilisé pour reconnaître les codes-barres endommagés avec un texte incorrect. + +Valeur : Permet au moteur de reconnaître les codes-barres incorrects. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setBarcodeQuality(BarcodeQualityMode value) {#setBarcodeQuality-com.aspose.barcode.barcoderecognition.BarcodeQualityMode-} +``` +public void setBarcodeQuality(BarcodeQualityMode value) +``` + + +Mode qui permet aux méthodes de reconnaître les éléments de code-barres avec la qualité sélectionnée. Un élément de code-barres de qualité inférieure nécessite des méthodes plus complexes, ce qui ralentit la reconnaissance. + +Valeur : Mode qui permet aux méthodes de reconnaître les éléments de code-barres avec la qualité sélectionnée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [BarcodeQualityMode](../../com.aspose.barcode.barcoderecognition/barcodequalitymode) | | + +### setComplexBackground(ComplexBackgroundMode value) {#setComplexBackground-com.aspose.barcode.barcoderecognition.ComplexBackgroundMode-} +``` +public void setComplexBackground(ComplexBackgroundMode value) +``` + + +Mode qui active ou désactive la reconnaissance supplémentaire des codes-barres couleur sur des images couleur. + +Valeur : Reconnaissance supplémentaire des codes-barres couleur sur des images couleur. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [ComplexBackgroundMode](../../com.aspose.barcode.barcoderecognition/complexbackgroundmode) | | + +### setDeconvolution(DeconvolutionMode value) {#setDeconvolution-com.aspose.barcode.barcoderecognition.DeconvolutionMode-} +``` +public void setDeconvolution(DeconvolutionMode value) +``` + + +Mode Deconvolution (image restorations) qui définit le niveau de dégradation de l'image. À l'origine, la Deconvolution est une fonction qui peut restaurer une image dégradée (convoluée) par n'importe quelle fonction naturelle comme le flou, lors de la capture de l'image par une caméra. Comme nous ne pouvons pas détecter la fonction d'image qui corrompt l'image, nous devons examiner les fonctions les mieux connues comme le sharp ou la morphologie mathématique. + +Valeur : Mode Deconvolution qui définit le niveau de dégradation de l'image. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [DeconvolutionMode](../../com.aspose.barcode.barcoderecognition/deconvolutionmode) | | + +### setImageScalingMode(ImageScalingMode value) {#setImageScalingMode-com.aspose.barcode.barcoderecognition.ImageScalingMode-} +``` +public void setImageScalingMode(ImageScalingMode value) +``` + + +Permet de mettre à l'échelle l'image avec le ImageScaleMode spécifique Valeur : + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | com.aspose.barcode.barcoderecognition.ImageScalingMode | valeur ImageScalingMode | + +### setInverseImage(InverseImageMode value) {#setInverseImage-com.aspose.barcode.barcoderecognition.InverseImageMode-} +``` +public void setInverseImage(InverseImageMode value) +``` + + +Mode qui active ou désactive la reconnaissance supplémentaire des codes-barres sur des images à couleurs inversées (luminance). + +Valeur : reconnaissance supplémentaire des codes-barres sur des images avec des couleurs inversées + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [InverseImageMode](../../com.aspose.barcode.barcoderecognition/inverseimagemode) | | + +### setMinimalXDimension(float value) {#setMinimalXDimension-float-} +``` +public void setMinimalXDimension(float value) +``` + + +Taille minimale de XDimension en pixels utilisée avec UseMinimalXDimension. + +Valeur : taille minimale de XDimension en pixels qui est utilisée avec UseMinimalXDimension. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setXDimension(XDimensionMode value) {#setXDimension-com.aspose.barcode.barcoderecognition.XDimensionMode-} +``` +public void setXDimension(XDimensionMode value) +``` + + +Mode de reconnaissance qui définit la taille (de 1 à l'infini) de l'élément minimal du code-barres : cellule de matrice ou barre. + +Valeur : taille (de 1 à l'infini) de l'élément minimal du code-barres : cellule de matrice ou barre. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [XDimensionMode](../../com.aspose.barcode.barcoderecognition/xdimensionmode) | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### writeToParcel(Parcel dest, int flags) {#writeToParcel-android.os.Parcel-int-} +``` +public void writeToParcel(Parcel dest, int flags) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dest | android.os.Parcel | | +| flags | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/qualitysettingsinternal/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/qualitysettingsinternal/_index.md new file mode 100644 index 000000000..fd9951f96 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/qualitysettingsinternal/_index.md @@ -0,0 +1,148 @@ +--- +title: QualitySettingsInternal +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 45 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/qualitysettingsinternal/ +--- +**Inheritance:** +java.lang.Object +``` +public class QualitySettingsInternal +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [QualitySettingsInternal()](#QualitySettingsInternal--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [applyAll(QualitySettings Src, QualitySettings Dst)](#applyAll-com.aspose.barcode.barcoderecognition.QualitySettings-com.aspose.barcode.barcoderecognition.QualitySettings-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### QualitySettingsInternal() {#QualitySettingsInternal--} +``` +public QualitySettingsInternal() +``` + + +### applyAll(QualitySettings Src, QualitySettings Dst) {#applyAll-com.aspose.barcode.barcoderecognition.QualitySettings-com.aspose.barcode.barcoderecognition.QualitySettings-} +``` +public static void applyAll(QualitySettings Src, QualitySettings Dst) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| Src | [QualitySettings](../../com.aspose.barcode.barcoderecognition/qualitysettings) | | +| Dst | [QualitySettings](../../com.aspose.barcode.barcoderecognition/qualitysettings) | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/recognitionabortedexception/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/recognitionabortedexception/_index.md new file mode 100644 index 000000000..0c3ee7cb5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/recognitionabortedexception/_index.md @@ -0,0 +1,341 @@ +--- +title: RecognitionAbortedException +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Représente l'exception d'annulation de reconnaissance qui est levée lorsqu'un délai d'attente est dépassé pendant la reconnaissance avec BarCodeReader. +type: docs +weight: 46 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/recognitionabortedexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, [com.aspose.barcode.barcoderecognition.BarCodeRecognitionException](../../com.aspose.barcode.barcoderecognition/barcoderecognitionexception) + +**All Implemented Interfaces:** +java.io.Serializable +``` +public class RecognitionAbortedException extends BarCodeRecognitionException implements Serializable +``` + +Représente l'exception d'annulation de reconnaissance qui est levée lorsqu'un délai d'attente est dépassé pendant la reconnaissance avec BarCodeReader. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [RecognitionAbortedException()](#RecognitionAbortedException--) | Initialise une nouvelle instance de la classe avec le message d'annulation de reconnaissance spécifié. | +| [RecognitionAbortedException(int executionTime)](#RecognitionAbortedException-int-) | Initialise une nouvelle instance de la classe avec le message d'annulation de reconnaissance spécifié. | +| [RecognitionAbortedException(String message, int executionTime)](#RecognitionAbortedException-java.lang.String-int-) | Initialise une nouvelle instance de la classe avec le message d'annulation de reconnaissance spécifié. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getExecutionTime()](#getExecutionTime--) | Obtient le temps d'exécution de la session de reconnaissance actuelle | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setExecutionTime(int value)](#setExecutionTime-int-) | Définit le temps d'exécution de la session de reconnaissance actuelle | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### RecognitionAbortedException() {#RecognitionAbortedException--} +``` +public RecognitionAbortedException() +``` + + +Initialise une nouvelle instance de la classe avec le message d'annulation de reconnaissance spécifié. + +### RecognitionAbortedException(int executionTime) {#RecognitionAbortedException-int-} +``` +public RecognitionAbortedException(int executionTime) +``` + + +Initialise une nouvelle instance de la classe avec le message d'annulation de reconnaissance spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| executionTime | int | Le temps d'exécution de la session de reconnaissance actuelle. | + +### RecognitionAbortedException(String message, int executionTime) {#RecognitionAbortedException-java.lang.String-int-} +``` +public RecognitionAbortedException(String message, int executionTime) +``` + + +Initialise une nouvelle instance de la classe avec le message d'annulation de reconnaissance spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Le message d'erreur de l'exception. | +| executionTime | int | Le temps d'exécution de la session de reconnaissance actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getExecutionTime() {#getExecutionTime--} +``` +public int getExecutionTime() +``` + + +Obtient le temps d'exécution de la session de reconnaissance actuelle + +**Returns:** +int - Le temps d'exécution de la session de reconnaissance actuelle +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setExecutionTime(int value) {#setExecutionTime-int-} +``` +public void setExecutionTime(int value) +``` + + +Définit le temps d'exécution de la session de reconnaissance actuelle + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Le temps d'exécution de la session de reconnaissance actuelle | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/recognitionoptions/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/recognitionoptions/_index.md new file mode 100644 index 000000000..4d08c9a6a --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/recognitionoptions/_index.md @@ -0,0 +1,182 @@ +--- +title: RecognitionOptions +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 47 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/recognitionoptions/ +--- +**Inheritance:** +java.lang.Object +``` +public class RecognitionOptions +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [RecognitionOptions()](#RecognitionOptions--) | | +| [RecognitionOptions(RecognitionOptions aOptions)](#RecognitionOptions-com.aspose.barcode.barcoderecognition.RecognitionOptions-) | | +| [RecognitionOptions(BarCodeReaderImplementation ReaderImplementation)](#RecognitionOptions-com.aspose.barcode.barcoderecognition.internal.BarCodeReaderImplementation-) | | +## Champs + +| Champ | Description | +| --- | --- | +| [BarcodeReadType](#BarcodeReadType) | | +| [BarcodeSettings](#BarcodeSettings) | | +| [QualitySettings](#QualitySettings) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### RecognitionOptions() {#RecognitionOptions--} +``` +public RecognitionOptions() +``` + + +### RecognitionOptions(RecognitionOptions aOptions) {#RecognitionOptions-com.aspose.barcode.barcoderecognition.RecognitionOptions-} +``` +public RecognitionOptions(RecognitionOptions aOptions) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| aOptions | com.aspose.barcode.barcoderecognition.RecognitionOptions | | + +### RecognitionOptions(BarCodeReaderImplementation ReaderImplementation) {#RecognitionOptions-com.aspose.barcode.barcoderecognition.internal.BarCodeReaderImplementation-} +``` +public RecognitionOptions(BarCodeReaderImplementation ReaderImplementation) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| ReaderImplementation | com.aspose.barcode.barcoderecognition.internal.BarCodeReaderImplementation | | + +### BarcodeReadType {#BarcodeReadType} +``` +public BaseDecodeType BarcodeReadType +``` + + +### BarcodeSettings {#BarcodeSettings} +``` +public BarcodeSettings BarcodeSettings +``` + + +### QualitySettings {#QualitySettings} +``` +public QualitySettings QualitySettings +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/singledecodetype/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/singledecodetype/_index.md new file mode 100644 index 000000000..4bcf534b1 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/singledecodetype/_index.md @@ -0,0 +1,299 @@ +--- +title: SingleDecodeType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Type de décodage unique. +type: docs +weight: 48 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/singledecodetype/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) +``` +public final class SingleDecodeType extends BaseDecodeType +``` + +Type de décodage unique. Voir le type de décodage pour obtenir une instance. + +-------------------- + +> ``` +> This sample shows how to get instance of single decode type. +> +> SingleDecodeType singleType = DecodeType.QR +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [containsAny(BaseDecodeType[] types)](#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Renvoie une valeur indiquant si cette instance est incluse dans la liste spécifiée. | +| [equals(MultiDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-) | | +| [equals(SingleDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) spécifiée. | +| [getClass()](#getClass--) | | +| [getString()](#getString--) | Convertit l'instance de SingleDecodeType en sa représentation chaîne équivalente, en utilisant le format suivant : "Index:-1; Name:None". | +| [getString(SingleDecodeType instance)](#getString-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Convertit l'instance de SingleDecodeType en sa représentation chaîne équivalente, en utilisant le format suivant : "Index:-1; Name:None". | +| [getTypeIndex()](#getTypeIndex--) | Obtient l'index du type de décodage | +| [getTypeName()](#getTypeName--) | Obtient le nom du type de décodage | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parseSingleDecodeType(String stringDecodeType)](#parseSingleDecodeType-java.lang.String-) | Convertit la représentation chaîne du nom d'un SingleDecodeType en son instance. | +| [toString()](#toString--) | Méthode remplacée représentant SingleDecodeType sous forme de chaîne Name. | +| [tryParseBaseDecodeType(String parsingType)](#tryParseBaseDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un BaseDecodeType en son instance, après avoir déterminé le type concret. | +| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un MultiDecodeType en son instance. | +| [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Convertit la représentation chaîne d'un SingleDecodeType en son instance. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### containsAny(BaseDecodeType[] types) {#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public boolean containsAny(BaseDecodeType[] types) +``` + + +Renvoie une valeur indiquant si cette instance est incluse dans la liste spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| types | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Tableau de types de décodage simples et multiples | + +**Returns:** +booléen - La valeur est vraie si un ou plusieurs types sont inclus dans +### equals(MultiDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-} +``` +public boolean equals(MultiDecodeType other) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| autre | com.aspose.barcode.barcoderecognition.MultiDecodeType | | + +**Returns:** +boolean +### equals(SingleDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public boolean equals(SingleDecodeType other) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| other | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | | + +**Returns:** +boolean +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur System.Object à comparer à cette instance. | + +**Returns:** +booléen - Vrai si l'objet a la même valeur que cette instance ; sinon, faux. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getString() {#getString--} +``` +public String getString() +``` + + +Convertit l'instance de SingleDecodeType en sa représentation chaîne équivalente, en utilisant le format suivant : "Index:-1; Name:None". + +**Returns:** +java.lang.String - Une chaîne représentant la valeur complète du type de décodage unique +### getString(SingleDecodeType instance) {#getString-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public static String getString(SingleDecodeType instance) +``` + + +Convertit l'instance de SingleDecodeType en sa représentation chaîne équivalente, en utilisant le format suivant : "Index:-1; Name:None". + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| instance | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | L'instance SingleDecodeType à convertir | + +**Returns:** +java.lang.String - Une chaîne représentant la valeur complète du type de décodage unique donné +### getTypeIndex() {#getTypeIndex--} +``` +public short getTypeIndex() +``` + + +Obtient l'index du type de décodage + +**Returns:** +short - L'index du type de décodage +### getTypeName() {#getTypeName--} +``` +public String getTypeName() +``` + + +Obtient le nom du type de décodage + +**Returns:** +java.lang.String - Le nom du type de décodage +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parseSingleDecodeType(String stringDecodeType) {#parseSingleDecodeType-java.lang.String-} +``` +public static SingleDecodeType parseSingleDecodeType(String stringDecodeType) +``` + + +Convertit la représentation chaîne du nom d'un SingleDecodeType en son instance. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| stringDecodeType | java.lang.String | Une chaîne contenant le nom d'un SingleDecodeType à convertir. | + +**Returns:** +[SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) - the instance of , if conversion was successful; otherwise, it returns \{@link \}. +### toString() {#toString--} +``` +public String toString() +``` + + +Méthode remplacée représentant SingleDecodeType sous forme de chaîne Name. + +**Returns:** +java.lang.String - Une chaîne représentant le nom du type de décodage unique +### tryParseBaseDecodeType(String parsingType) {#tryParseBaseDecodeType-java.lang.String-} +``` +public static BaseDecodeType tryParseBaseDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un BaseDecodeType en son instance, après avoir déterminé le type concret. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant une représentation MultiDecodeType à convertir. | + +**Returns:** +[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultiDecodeType is returned, when conversion has completed successfully; + +sinon, elle renvoie un type indéfini. ou MultiDecodeType ("None"). +### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-} +``` +public static MultiDecodeType tryParseMultiDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un MultiDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant une représentation MultiDecodeType à convertir. | + +**Returns:** +com.aspose.barcode.barcoderecognition.MultiDecodeType - Un MultiDecodeType réel est renvoyé lorsque la conversion s'est terminée avec succès; + +sinon, elle renvoie un type indéfini. ou MultiDecodeType ("None"). +### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-} +``` +public static SingleDecodeType tryParseSingleDecodeType(String parsingType) +``` + + +Convertit la représentation sous forme de chaîne d'un SingleDecodeType en son instance. Une valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant un SingleDecodeType au format "EAN8" ou "EAN13" ou "CodaBar"... à convertir. | + +**Returns:** +[SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) - An actual SingleDecodeType is returned, when conversion has completed successfully; + +sinon, elle renvoie un type indéfini. ou SingleDecodeType (-1, "None"). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/textencodingdetection/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/textencodingdetection/_index.md new file mode 100644 index 000000000..3c0fccc7c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/textencodingdetection/_index.md @@ -0,0 +1,149 @@ +--- +title: TextEncodingDetection +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 49 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/textencodingdetection/ +--- +**Inheritance:** +java.lang.Object +``` +public class TextEncodingDetection +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [TextEncodingDetection()](#TextEncodingDetection--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [tryToDetectAndEncodeText(String str)](#tryToDetectAndEncodeText-java.lang.String-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### TextEncodingDetection() {#TextEncodingDetection--} +``` +public TextEncodingDetection() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### tryToDetectAndEncodeText(String str) {#tryToDetectAndEncodeText-java.lang.String-} +``` +public static String tryToDetectAndEncodeText(String str) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| str | java.lang.String | | + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.barcoderecognition/xdimensionmode/_index.md b/french/androidjava/com.aspose.barcode.barcoderecognition/xdimensionmode/_index.md new file mode 100644 index 000000000..6454fffc0 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.barcoderecognition/xdimensionmode/_index.md @@ -0,0 +1,315 @@ +--- +title: XDimensionMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 58 +url: /fr/androidjava/com.aspose.barcode.barcoderecognition/xdimensionmode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum XDimensionMode extends Enum +``` + +Mode de reconnaissance qui définit la taille (de 1 à l'infini) de l'élément minimal du code-barres : cellule de matrice ou barre. + +-------------------- + +> ``` +> This sample shows how to use XDimension mode +> +> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39_EXTENDED, DecodeType.CODE_128); +> reader.getQualitySettings().setXDimension(XDimensionMode.SMALL); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println(result.getCodeText()); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | La valeur de XDimension est détectée par IA (SVM). | +| [LARGE](#LARGE) | Détecte les codes-barres avec une grande XDimension avec une qualité provenant de BarcodeQuality capturée par des caméras haute résolution. | +| [NORMAL](#NORMAL) | Détecte les codes-barres avec une XDimension classique de 2 pixels ou plus avec une qualité provenant de BarcodeQuality ou des codes-barres de haute qualité. | +| [SMALL](#SMALL) | Détecte les codes-barres avec une petite XDimension d'au moins 1 pixel avec une qualité provenant de BarcodeQuality. | +| [USE_MINIMAL_X_DIMENSION](#USE-MINIMAL-X-DIMENSION) | Détecte les codes-barres dont la taille est définie dans MinimalXDimension avec une qualité provenant de BarcodeQuality. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromValue(int value)](#fromValue-int-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final XDimensionMode AUTO +``` + + +La valeur de XDimension est détectée par IA (SVM). Pour le moment, elle est identique à Normal. + +### LARGE {#LARGE} +``` +public static final XDimensionMode LARGE +``` + + +Détecte les codes-barres avec une grande XDimension avec une qualité provenant de BarcodeQuality capturée par des caméras haute résolution. + +### NORMAL {#NORMAL} +``` +public static final XDimensionMode NORMAL +``` + + +Détecte les codes-barres avec une XDimension classique de 2 pixels ou plus avec une qualité provenant de BarcodeQuality ou des codes-barres de haute qualité. + +### SMALL {#SMALL} +``` +public static final XDimensionMode SMALL +``` + + +Détecte les codes-barres avec une petite XDimension d'au moins 1 pixel avec une qualité provenant de BarcodeQuality. + +### USE_MINIMAL_X_DIMENSION {#USE-MINIMAL-X-DIMENSION} +``` +public static final XDimensionMode USE_MINIMAL_X_DIMENSION +``` + + +Détecte les codes-barres dont la taille est définie dans MinimalXDimension avec une qualité provenant de BarcodeQuality. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromValue(int value) {#fromValue-int-} +``` +public static XDimensionMode fromValue(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[XDimensionMode](../../com.aspose.barcode.barcoderecognition/xdimensionmode) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static XDimensionMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[XDimensionMode](../../com.aspose.barcode.barcoderecognition/xdimensionmode) +### values() {#values--} +``` +public static XDimensionMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.barcoderecognition.XDimensionMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/_index.md new file mode 100644 index 000000000..7862e4d12 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/_index.md @@ -0,0 +1,69 @@ +--- +title: com.aspose.barcode.complexbarcode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Ce package contient des outils pour le traitement des codes-barres complexes. +type: docs +weight: 12 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/ +--- + +Ce package contient des outils pour le traitement des codes-barres complexes. + + +## Classes + +| Classe | Description | +| --- | --- | +| [Address](../com.aspose.barcode.complexbarcode/address) | Adresse du créancier ou du débiteur. | +| [AlternativeScheme](../com.aspose.barcode.complexbarcode/alternativescheme) | Instructions du schéma de paiement alternatif | +| [ComplexBarcodeGenerator](../com.aspose.barcode.complexbarcode/complexbarcodegenerator) | ComplexBarcodeGenerator pour le code‑barres complexe backend (p. ex. | +| [ComplexCodetextReader](../com.aspose.barcode.complexbarcode/complexcodetextreader) | ComplexCodetextReader décode le texte du code vers le type de code‑barres complexe spécifié. | +| [HIBCLICCombinedCodetext](../com.aspose.barcode.complexbarcode/hibcliccombinedcodetext) | Classe pour encoder et décoder le texte intégré dans le code HIBC LIC qui stocke les données primaires et secondaires. | +| [HIBCLICComplexCodetext](../com.aspose.barcode.complexbarcode/hibcliccomplexcodetext) | Classe de base pour encoder et décoder le texte intégré dans le code HIBC LIC. | +| [HIBCLICPrimaryDataCodetext](../com.aspose.barcode.complexbarcode/hibclicprimarydatacodetext) | Classe pour encoder et décoder le texte intégré dans le code HIBC LIC qui stocke les données primaires. | +| [HIBCLICSecondaryAndAdditionalDataCodetext](../com.aspose.barcode.complexbarcode/hibclicsecondaryandadditionaldatacodetext) | Classe pour encoder et décoder le texte intégré dans le code HIBC LIC qui stocke les données secondaires. | +| [HIBCPASCodetext](../com.aspose.barcode.complexbarcode/hibcpascodetext) | Classe pour encoder et décoder le texte intégré dans le code HIBC PAS. | +| [HIBCPASDataLocation](../com.aspose.barcode.complexbarcode/hibcpasdatalocation) | Types d'emplacement des données HIBC PAS. | +| [HIBCPASDataType](../com.aspose.barcode.complexbarcode/hibcpasdatatype) | Types de données de l'enregistrement HIBC PAS. | +| [HIBCPASRecord](../com.aspose.barcode.complexbarcode/hibcpasrecord) | Classe pour stocker l'enregistrement HIBC PAS. | +| [Mailmark1DType](../com.aspose.barcode.complexbarcode/mailmark1dtype) | Types de code-barres Mailmark à 4 états | +| [Mailmark2DCodetext](../com.aspose.barcode.complexbarcode/mailmark2dcodetext) | Classe pour encoder et décoder le texte intégré dans le code Royal Mail 2D Mailmark. | +| [MailmarkCodetext](../com.aspose.barcode.complexbarcode/mailmarkcodetext) | Classe pour encoder et décoder le texte intégré dans le code Royal Mailmark à 4 états. | +| [MaxiCodeCodetext](../com.aspose.barcode.complexbarcode/maxicodecodetext) | Classe de base pour encoder et décoder le texte intégré dans le code MaxiCode. | +| [MaxiCodeCodetextMode2](../com.aspose.barcode.complexbarcode/maxicodecodetextmode2) | Classe pour encoder et décoder le texte intégré dans le code MaxiCode pour le mode 2. | +| [MaxiCodeCodetextMode3](../com.aspose.barcode.complexbarcode/maxicodecodetextmode3) | Classe pour encoder et décoder le texte intégré dans le code MaxiCode pour le mode 3. | +| [MaxiCodeSecondMessage](../com.aspose.barcode.complexbarcode/maxicodesecondmessage) | Classe de base pour encoder et décoder le second message du code-barres MaxiCode. | +| [MaxiCodeStandardCodetext](../com.aspose.barcode.complexbarcode/maxicodestandardcodetext) | Classe pour encoder et décoder le texte du code MaxiCode pour les modes 4, 5 et 6. | +| [MaxiCodeStandardSecondMessage](../com.aspose.barcode.complexbarcode/maxicodestandardsecondmessage) | Classe pour encoder et décoder le message secondaire standard du code-barres MaxiCode. | +| [MaxiCodeStandartSecondMessage](../com.aspose.barcode.complexbarcode/maxicodestandartsecondmessage) | Classe pour encoder et décoder le message secondaire standard du code-barres MaxiCode. | +| [MaxiCodeStructuredCodetext](../com.aspose.barcode.complexbarcode/maxicodestructuredcodetext) | Classe de base pour encoder et décoder le texte intégré dans le code MaxiCode pour les modes 2 et 3. | +| [MaxiCodeStructuredSecondMessage](../com.aspose.barcode.complexbarcode/maxicodestructuredsecondmessage) | Classe pour encoder et décoder le second message structuré du code-barres MaxiCode. | +| [PrimaryData](../com.aspose.barcode.complexbarcode/primarydata) | Classe pour stocker les données primaires HIBC LIC. | +| [SecondaryAndAdditionalData](../com.aspose.barcode.complexbarcode/secondaryandadditionaldata) | Classe pour stocker les données secondaires et supplémentaires HIBC LIC. | +| [SwissQRBill](../com.aspose.barcode.complexbarcode/swissqrbill) | Données de facture SwissQR | +| [SwissQRCodetext](../com.aspose.barcode.complexbarcode/swissqrcodetext) | Classe pour encoder et décoder le texte intégré dans le code SwissQR. | +| [USADriveIdCodetext](../com.aspose.barcode.complexbarcode/usadriveidcodetext) | Classe pour encoder et décoder le texte intégré dans le code PDF417 du permis de conduire américain. | +| [USADriveIdCodetext.MandatoryFields](../com.aspose.barcode.complexbarcode/usadriveidcodetext.mandatoryfields) | Éléments obligatoires (champs) de la carte | +| [USADriveIdCodetext.OptionalFields](../com.aspose.barcode.complexbarcode/usadriveidcodetext.optionalfields) | Éléments optionnels (champs) de la carte | +| [USADriveIdCodetext.SubfileProperties](../com.aspose.barcode.complexbarcode/usadriveidcodetext.subfileproperties) | Les propriétés du sous-fichier USA DL, le décalage et la longueur sont définis automatiquement. | +| [USADriveIdJurisdSubfile](../com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile) | Classe pour les champs spécifiques à la juridiction pour USA DL | +| [USADriveIdJurisdSubfile.DataElement](../com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile.dataelement) | Représente un champ de données spécifique à la juridiction utilisé dans les documents, par exemple ElementID = \"ZVA\" avec Value = \"01\". | + +## Interfaces + +| Interface | Description | +| --- | --- | +| [IComplexCodetext](../com.aspose.barcode.complexbarcode/icomplexcodetext) | Interface pour le texte de code complexe utilisé avec ComplexBarcodeGenerator. | + +## Énumérations + +| Énum | Description | +| --- | --- | +| [AddressType](../com.aspose.barcode.complexbarcode/addresstype) | Type d'adresse | +| [HIBCLICDateFormat](../com.aspose.barcode.complexbarcode/hibclicdateformat) | Spécifie les différents types de formats de date pour HIBC LIC. | +| [Mailmark2DType](../com.aspose.barcode.complexbarcode/mailmark2dtype) | Le type de Mailmark 2D définit la taille du code-barres Data Matrix | +| [QrBillStandardVersion](../com.aspose.barcode.complexbarcode/qrbillstandardversion) | Version standard de la facture SwissQR | +| [USADriveIdCountry](../com.aspose.barcode.complexbarcode/usadriveidcountry) | Énumération pour l'identification du pays dans le permis de conduire américain (US Driver's License) | +| [USADriveIdEyeColor](../com.aspose.barcode.complexbarcode/usadriveideyecolor) | Énumération pour la couleur des yeux dans le permis de conduire américain (US Driver's License) | +| [USADriveIdHairColor](../com.aspose.barcode.complexbarcode/usadriveidhaircolor) | Énumération pour la couleur des cheveux dans le permis de conduire américain (US Driver's License) | +| [USADriveIdSex](../com.aspose.barcode.complexbarcode/usadriveidsex) | Énumération pour le champ sexe dans le permis de conduire américain (US Driver's License) | diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/address/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/address/_index.md new file mode 100644 index 000000000..628e67737 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/address/_index.md @@ -0,0 +1,459 @@ +--- +title: Adresse +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Adresse du créancier ou du débiteur. +type: docs +weight: 10 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/address/ +--- +**Inheritance:** +java.lang.Object +``` +public final class Address +``` + +Adresse du créancier ou du débiteur. + +Vous pouvez soit définir la rue, le numéro de maison, le code postal et la ville (type *adresse structurée* ) ou la ligne d'adresse 1 et 2 (type *éléments d'adresse combinés* ). Le type est automatiquement défini dès qu'un de ces champs est renseigné. Avant de renseigner les champs, le type d'adresse est *indéterminé* . Si des champs des deux types sont renseignés, le type d'adresse devient *conflictuel* . Le nom et le code pays doivent toujours être renseignés sauf si tous les champs sont vides. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [Address()](#Address--) | Crée une instance de Adresse | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clear()](#clear--) | Efface tous les champs et définit le type sur AddressType.Undetermined . | +| [equals(Object obj)](#equals-java.lang.Object-) | Détermine si l'objet spécifié est égal à l'objet actuel. | +| [getAddressLine1()](#getAddressLine1--) | Obtient la ligne d'adresse 1. | +| [getAddressLine2()](#getAddressLine2--) | Obtient la ligne d'adresse 2. | +| [getClass()](#getClass--) | | +| [getCountryCode()](#getCountryCode--) | Obtient le code pays ISO à deux lettres. | +| [getHouseNo()](#getHouseNo--) | Obtient le numéro de maison. | +| [getName()](#getName--) | Obtient le nom, soit le prénom et le nom de famille d'une personne physique, soit le nom de l'entreprise d'une personne morale. | +| [getPostalCode()](#getPostalCode--) | Obtient le code postal. | +| [getStreet()](#getStreet--) | Obtient la rue. | +| [getTown()](#getTown--) | Obtient la ville ou la municipalité. | +| [getType()](#getType--) | Obtient le type d'adresse. | +| [hashCode()](#hashCode--) | Gets the hash code for this instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAddressLine1(String value)](#setAddressLine1-java.lang.String-) | Définit la ligne d'adresse 1. | +| [setAddressLine2(String value)](#setAddressLine2-java.lang.String-) | Définit la ligne d'adresse 2. | +| [setCountryCode(String value)](#setCountryCode-java.lang.String-) | Définit le code pays ISO à deux lettres. | +| [setHouseNo(String value)](#setHouseNo-java.lang.String-) | Définit le numéro de maison. | +| [setName(String value)](#setName-java.lang.String-) | Définit le nom, soit le prénom et le nom de famille d'une personne physique, soit le nom de l'entreprise d'une personne morale. | +| [setPostalCode(String value)](#setPostalCode-java.lang.String-) | Définit le code postal. | +| [setStreet(String value)](#setStreet-java.lang.String-) | Définit la rue. | +| [setTown(String value)](#setTown-java.lang.String-) | Définit la ville ou la municipalité. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Address() {#Address--} +``` +public Address() +``` + + +Crée une instance de Adresse + +### clear() {#clear--} +``` +public void clear() +``` + + +Efface tous les champs et définit le type sur AddressType.Undetermined . + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Détermine si l'objet spécifié est égal à l'objet actuel. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | The object to compare with the current object. | + +**Returns:** +boolean - true if the specified object is equal to the current object; otherwise, false . +### getAddressLine1() {#getAddressLine1--} +``` +public String getAddressLine1() +``` + + +Obtient la ligne d'adresse 1. + +La ligne d'adresse 1 contient le nom de la rue, le numéro de maison ou la boîte postale. + +Définir ce champ définit le type d'adresse sur AddressType.CombinedElements sauf s'il est déjà AddressType.Structured , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses à éléments combinés et est facultatif. + +Valeur : la ligne d'adresse 1. + +**Returns:** +java.lang.String +### getAddressLine2() {#getAddressLine2--} +``` +public String getAddressLine2() +``` + + +Obtient la ligne d'adresse 2. + +La ligne d'adresse 2 contient le code postal et la ville. + +Définir ce champ définit le type d'adresse sur AddressType.CombinedElements sauf s'il est déjà AddressType.Structured , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses à éléments combinés. Pour ce type, il est obligatoire. + +Valeur : la ligne d'adresse 2. + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCountryCode() {#getCountryCode--} +``` +public String getCountryCode() +``` + + +Obtient le code pays ISO à deux lettres. + +Le code pays est obligatoire sauf si l'ensemble de l'adresse contient des valeurs null ou vides. + +Valeur : le code pays ISO. + +**Returns:** +java.lang.String +### getHouseNo() {#getHouseNo--} +``` +public String getHouseNo() +``` + + +Obtient le numéro de maison. + +Définir ce champ définit le type d'adresse sur AddressType.Structured sauf s'il est déjà AddressType.CombinedElements , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses structurées et est facultatif. + +Valeur : le numéro de maison. + +**Returns:** +java.lang.String +### getName() {#getName--} +``` +public String getName() +``` + + +Obtient le nom, soit le prénom et le nom de famille d'une personne physique, soit le nom de l'entreprise d'une personne morale. + +Valeur : le nom. + +**Returns:** +java.lang.String +### getPostalCode() {#getPostalCode--} +``` +public String getPostalCode() +``` + + +Obtient le code postal. + +Définir ce champ définit le type d'adresse sur AddressType.Structured sauf s'il est déjà AddressType.CombinedElements , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses structurées. Pour ce type, il est obligatoire. + +Valeur : le code postal. + +**Returns:** +java.lang.String +### getStreet() {#getStreet--} +``` +public String getStreet() +``` + + +Obtient la rue. + +La rue doit être spécifiée sans numéro de maison. + +Définir ce champ définit le type d'adresse sur AddressType.Structured sauf s'il est déjà AddressType.CombinedElements , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses structurées et est facultatif. + +Valeur : la rue. + +**Returns:** +java.lang.String +### getTown() {#getTown--} +``` +public String getTown() +``` + + +Obtient la ville ou la municipalité. + +Définir ce champ définit le type d'adresse sur AddressType.Structured sauf s'il est déjà AddressType.CombinedElements , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses structurées. Pour ce type, il est obligatoire. + +Valeur : la ville ou la commune. + +**Returns:** +java.lang.String +### getType() {#getType--} +``` +public AddressType getType() +``` + + +Obtient le type d'adresse. + +Le type d'adresse est automatiquement défini en renseignant soit la rue / le numéro de maison, soit les lignes d'adresse 1 et 2. Avant de définir les champs, le type d'adresse est *Undetermined* . Si les champs des deux types sont renseignés, le type d'adresse devient *Conflicting* . + +Valeur : le type d'adresse. + +**Returns:** +[AddressType](../../com.aspose.barcode.complexbarcode/addresstype) +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Gets the hash code for this instance. + +**Returns:** +int - A hash code for the current object. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAddressLine1(String value) {#setAddressLine1-java.lang.String-} +``` +public void setAddressLine1(String value) +``` + + +Définit la ligne d'adresse 1. + +La ligne d'adresse 1 contient le nom de la rue, le numéro de maison ou la boîte postale. + +Définir ce champ définit le type d'adresse sur AddressType.CombinedElements sauf s'il est déjà AddressType.Structured , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses à éléments combinés et est facultatif. + +Valeur : la ligne d'adresse 1. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setAddressLine2(String value) {#setAddressLine2-java.lang.String-} +``` +public void setAddressLine2(String value) +``` + + +Définit la ligne d'adresse 2. + +La ligne d'adresse 2 contient le code postal et la ville. + +Définir ce champ définit le type d'adresse sur AddressType.CombinedElements sauf s'il est déjà AddressType.Structured , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses à éléments combinés. Pour ce type, il est obligatoire. + +Valeur : la ligne d'adresse 2. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setCountryCode(String value) {#setCountryCode-java.lang.String-} +``` +public void setCountryCode(String value) +``` + + +Définit le code pays ISO à deux lettres. + +Le code pays est obligatoire sauf si l'ensemble de l'adresse contient des valeurs null ou vides. + +Valeur : le code pays ISO. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setHouseNo(String value) {#setHouseNo-java.lang.String-} +``` +public void setHouseNo(String value) +``` + + +Définit le numéro de maison. + +Définir ce champ définit le type d'adresse sur AddressType.Structured sauf s'il est déjà AddressType.CombinedElements , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses structurées et est facultatif. + +Valeur : le numéro de maison. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setName(String value) {#setName-java.lang.String-} +``` +public void setName(String value) +``` + + +Définit le nom, soit le prénom et le nom de famille d'une personne physique, soit le nom de l'entreprise d'une personne morale. + +Valeur : le nom. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setPostalCode(String value) {#setPostalCode-java.lang.String-} +``` +public void setPostalCode(String value) +``` + + +Définit le code postal. + +Définir ce champ définit le type d'adresse sur AddressType.Structured sauf s'il est déjà AddressType.CombinedElements , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses structurées. Pour ce type, il est obligatoire. + +Valeur : le code postal. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setStreet(String value) {#setStreet-java.lang.String-} +``` +public void setStreet(String value) +``` + + +Définit la rue. + +La rue doit être spécifiée sans numéro de maison. + +Définir ce champ définit le type d'adresse sur AddressType.Structured sauf s'il est déjà AddressType.CombinedElements , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses structurées et est facultatif. + +Valeur : la rue. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setTown(String value) {#setTown-java.lang.String-} +``` +public void setTown(String value) +``` + + +Définit la ville ou la municipalité. + +Définir ce champ définit le type d'adresse sur AddressType.Structured sauf s'il est déjà AddressType.CombinedElements , auquel cas il devient AddressType.Conflicting . + +Ce champ n'est utilisé que pour les adresses structurées. Pour ce type, il est obligatoire. + +Valeur : la ville ou la commune. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/addresstype/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/addresstype/_index.md new file mode 100644 index 000000000..9d1bbb38b --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/addresstype/_index.md @@ -0,0 +1,279 @@ +--- +title: AddressType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Type d'adresse +type: docs +weight: 41 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/addresstype/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum AddressType extends Enum +``` + +Type d'adresse +## Champs + +| Champ | Description | +| --- | --- | +| [COMBINED_ELEMENTS](#COMBINED-ELEMENTS) | Éléments d'adresse combinés | +| [CONFLICTING](#CONFLICTING) | En conflit | +| [STRUCTURED](#STRUCTURED) | Adresse structurée | +| [UNDETERMINED](#UNDETERMINED) | Indéterminé | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### COMBINED_ELEMENTS {#COMBINED-ELEMENTS} +``` +public static final AddressType COMBINED_ELEMENTS +``` + + +Éléments d'adresse combinés + +### CONFLICTING {#CONFLICTING} +``` +public static final AddressType CONFLICTING +``` + + +En conflit + +### STRUCTURED {#STRUCTURED} +``` +public static final AddressType STRUCTURED +``` + + +Adresse structurée + +### UNDETERMINED {#UNDETERMINED} +``` +public static final AddressType UNDETERMINED +``` + + +Indéterminé + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static AddressType valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[AddressType](../../com.aspose.barcode.complexbarcode/addresstype) +### values() {#values--} +``` +public static AddressType[] values() +``` + + + + +**Returns:** +com.aspose.barcode.complexbarcode.AddressType[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/alternativescheme/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/alternativescheme/_index.md new file mode 100644 index 000000000..005636476 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/alternativescheme/_index.md @@ -0,0 +1,180 @@ +--- +title: AlternativeScheme +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Instructions du schéma de paiement alternatif +type: docs +weight: 11 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/alternativescheme/ +--- +**Inheritance:** +java.lang.Object +``` +public final class AlternativeScheme +``` + +Instructions du schéma de paiement alternatif +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [AlternativeScheme()](#AlternativeScheme--) | | +| [AlternativeScheme(String instruction)](#AlternativeScheme-java.lang.String-) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Détermine si l'objet spécifié est égal à l'objet actuel. | +| [getClass()](#getClass--) | | +| [getInstruction()](#getInstruction--) | Gets the payment instruction for a given bill. | +| [hashCode()](#hashCode--) | Gets the hash code for this instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setInstruction(String value)](#setInstruction-java.lang.String-) | Gets the payment instruction for a given bill. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AlternativeScheme() {#AlternativeScheme--} +``` +public AlternativeScheme() +``` + + +### AlternativeScheme(String instruction) {#AlternativeScheme-java.lang.String-} +``` +public AlternativeScheme(String instruction) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| instruction | java.lang.String | | + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Détermine si l'objet spécifié est égal à l'objet actuel. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | The object to compare with the current object. | + +**Returns:** +boolean - true if the specified object is equal to the current object; otherwise, false . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getInstruction() {#getInstruction--} +``` +public String getInstruction() +``` + + +Gets the payment instruction for a given bill. + +The instruction consists of a two letter abbreviation for the scheme, a separator characters and a sequence of parameters(separated by the character at index 2). + +Value: The payment instruction. + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Gets the hash code for this instance. + +**Returns:** +int - A hash code for the current object. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setInstruction(String value) {#setInstruction-java.lang.String-} +``` +public void setInstruction(String value) +``` + + +Gets the payment instruction for a given bill. + +The instruction consists of a two letter abbreviation for the scheme, a separator characters and a sequence of parameters(separated by the character at index 2). + +Value: The payment instruction. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/complexbarcodegenerator/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/complexbarcodegenerator/_index.md new file mode 100644 index 000000000..8c46467e6 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/complexbarcodegenerator/_index.md @@ -0,0 +1,230 @@ +--- +title: ComplexBarcodeGenerator +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: ComplexBarcodeGenerator pour le code-barres complexe du backend, ex. +type: docs +weight: 12 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/complexbarcodegenerator/ +--- +**Inheritance:** +java.lang.Object +``` +public final class ComplexBarcodeGenerator +``` + +ComplexBarcodeGenerator pour la génération d'images de code-barres complexes du backend (ex. SwissQR). + +-------------------- + +> ``` +> This sample shows how to create and save a SwissQR image. +> +> SwissQRCodetext swissQRCodetext = new SwissQRCodetext(); +> swissQRCodetext.getBill().setAccount("Account"); +> swissQRCodetext.getBill().setBillInformation("BillInformation"); +> // init rest of the fields +> ComplexBarcodeGenerator cg = new ComplexBarcodeGenerator(swissQRCodetext); +> BufferedImage res = cg.generateBarCodeImage(); +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [ComplexBarcodeGenerator(IComplexCodetext complexCodetext)](#ComplexBarcodeGenerator-com.aspose.barcode.complexbarcode.IComplexCodetext-) | Crée une instance de ComplexBarcodeGenerator. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [dispose()](#dispose--) | Nettoie toutes les ressources utilisées. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [generateBarCodeImage()](#generateBarCodeImage--) | Génère une image de code-barres complexe selon les paramètres actuels. | +| [getClass()](#getClass--) | | +| [getParameters()](#getParameters--) | Paramètres de génération. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [save(OutputStream stream, BarCodeImageFormat format)](#save-java.io.OutputStream-com.aspose.barcode.generation.BarCodeImageFormat-) | Génère et enregistre une image de code-barres complexe selon les paramètres actuels. | +| [save(String filename)](#save-java.lang.String-) | Génère et enregistre une image de code-barres complexe selon les paramètres actuels. | +| [save(String filename, BarCodeImageFormat format)](#save-java.lang.String-com.aspose.barcode.generation.BarCodeImageFormat-) | Génère et enregistre une image de code-barres complexe selon les paramètres actuels. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ComplexBarcodeGenerator(IComplexCodetext complexCodetext) {#ComplexBarcodeGenerator-com.aspose.barcode.complexbarcode.IComplexCodetext-} +``` +public ComplexBarcodeGenerator(IComplexCodetext complexCodetext) +``` + + +Crée une instance de ComplexBarcodeGenerator. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| complexCodetext | [IComplexCodetext](../../com.aspose.barcode.complexbarcode/icomplexcodetext) | Texte de code complexe | + +### dispose() {#dispose--} +``` +public void dispose() +``` + + +Nettoie toutes les ressources utilisées. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### generateBarCodeImage() {#generateBarCodeImage--} +``` +public Bitmap generateBarCodeImage() +``` + + +Génère une image de code-barres complexe selon les paramètres actuels. + +**Returns:** +android.graphics.Bitmap - Image du code-barres. Voir Bitmap . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getParameters() {#getParameters--} +``` +public BaseGenerationParameters getParameters() +``` + + +Paramètres de génération. + +**Returns:** +[BaseGenerationParameters](../../com.aspose.barcode.generation/basegenerationparameters) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### save(OutputStream stream, BarCodeImageFormat format) {#save-java.io.OutputStream-com.aspose.barcode.generation.BarCodeImageFormat-} +``` +public void save(OutputStream stream, BarCodeImageFormat format) +``` + + +Génère et enregistre une image de code-barres complexe selon les paramètres actuels. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | Sortie System.IO.Stream. | +| format | [BarCodeImageFormat](../../com.aspose.barcode.generation/barcodeimageformat) | Spécifie le format de fichier de l'image de sortie. | + +### save(String filename) {#save-java.lang.String-} +``` +public void save(String filename) +``` + + +Génère et enregistre une image de code-barres complexe selon les paramètres actuels. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom de fichier | java.lang.String | Chemin où enregistrer. | + +### save(String filename, BarCodeImageFormat format) {#save-java.lang.String-com.aspose.barcode.generation.BarCodeImageFormat-} +``` +public void save(String filename, BarCodeImageFormat format) +``` + + +Génère et enregistre une image de code-barres complexe selon les paramètres actuels. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom de fichier | java.lang.String | Chemin où enregistrer. | +| format | [BarCodeImageFormat](../../com.aspose.barcode.generation/barcodeimageformat) | Spécifie le format de fichier de l'image de sortie. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/complexcodetextreader/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/complexcodetextreader/_index.md new file mode 100644 index 000000000..27fb6bfdf --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/complexcodetextreader/_index.md @@ -0,0 +1,247 @@ +--- +title: ComplexCodetextReader +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: ComplexCodetextReader décode le texte du code vers le type de code‑barres complexe spécifié. +type: docs +weight: 13 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/complexcodetextreader/ +--- +**Inheritance:** +java.lang.Object +``` +public final class ComplexCodetextReader +``` + +ComplexCodetextReader décode le texte du code vers le type de code‑barres complexe spécifié. + +-------------------- + +> ``` +> This sample shows how to recognize and decode SwissQR image. +> +> BarCodeReader cr = new BarCodeReader("SwissQRCodetext.png", DecodeType.QR); +> cr.read(); +> SwissQRCodetext result = ComplexCodetextReader.tryDecodeSwissQR(cr.getCodeText()); +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [tryDecodeHIBCLIC(String encodedCodetext)](#tryDecodeHIBCLIC-java.lang.String-) | Décode le texte de code HIBC LIC. | +| [tryDecodeHIBCPAS(String encodedCodetext)](#tryDecodeHIBCPAS-java.lang.String-) | Décode le texte de code HIBC PAS. | +| [tryDecodeMailmark(String encodedCodetext)](#tryDecodeMailmark-java.lang.String-) | Décode le texte de code Mailmark Barcode C et L. | +| [tryDecodeMailmark2D(String encodedCodetext)](#tryDecodeMailmark2D-java.lang.String-) | Décode le texte de code Royal Mail Mailmark 2D. | +| [tryDecodeMaxiCode(int maxiCodeMode, String encodedCodetext)](#tryDecodeMaxiCode-int-java.lang.String-) | Décode le texte de code MaxiCode. | +| [tryDecodeSwissQR(String encodedCodetext)](#tryDecodeSwissQR-java.lang.String-) | Décode le texte de code SwissQR. | +| [tryDecodeUSADriveId(String encodedCodetext)](#tryDecodeUSADriveId-java.lang.String-) | Décode le texte de code USADriveId. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### tryDecodeHIBCLIC(String encodedCodetext) {#tryDecodeHIBCLIC-java.lang.String-} +``` +public static HIBCLICComplexCodetext tryDecodeHIBCLIC(String encodedCodetext) +``` + + +Décode le texte de code HIBC LIC. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| encodedCodetext | java.lang.String | texte de code encodé | + +**Returns:** +[HIBCLICComplexCodetext](../../com.aspose.barcode.complexbarcode/hibcliccomplexcodetext) - decoded HIBC LIC Complex Codetext or null. +### tryDecodeHIBCPAS(String encodedCodetext) {#tryDecodeHIBCPAS-java.lang.String-} +``` +public static HIBCPASCodetext tryDecodeHIBCPAS(String encodedCodetext) +``` + + +Décode le texte de code HIBC PAS. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| encodedCodetext | java.lang.String | texte de code encodé | + +**Returns:** +[HIBCPASCodetext](../../com.aspose.barcode.complexbarcode/hibcpascodetext) - decoded HIBC PAS Complex Codetext or null. +### tryDecodeMailmark(String encodedCodetext) {#tryDecodeMailmark-java.lang.String-} +``` +public static MailmarkCodetext tryDecodeMailmark(String encodedCodetext) +``` + + +Décode le texte de code Mailmark Barcode C et L. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| encodedCodetext | java.lang.String | texte de code encodé | + +**Returns:** +[MailmarkCodetext](../../com.aspose.barcode.complexbarcode/mailmarkcodetext) - Decoded Mailmark Barcode C and L or null. +### tryDecodeMailmark2D(String encodedCodetext) {#tryDecodeMailmark2D-java.lang.String-} +``` +public static Mailmark2DCodetext tryDecodeMailmark2D(String encodedCodetext) +``` + + +Décode le texte de code Royal Mail Mailmark 2D. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| encodedCodetext | java.lang.String | texte de code encodé | + +**Returns:** +[Mailmark2DCodetext](../../com.aspose.barcode.complexbarcode/mailmark2dcodetext) - decoded Royal Mail Mailmark 2D or null. +### tryDecodeMaxiCode(int maxiCodeMode, String encodedCodetext) {#tryDecodeMaxiCode-int-java.lang.String-} +``` +public static MaxiCodeCodetext tryDecodeMaxiCode(int maxiCodeMode, String encodedCodetext) +``` + + +Décode le texte de code MaxiCode. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| maxiCodeMode | int | Mode MaxiCode | +| encodedCodetext | java.lang.String | texte de code encodé | + +**Returns:** +[MaxiCodeCodetext](../../com.aspose.barcode.complexbarcode/maxicodecodetext) - Decoded MaxiCode codetext. +### tryDecodeSwissQR(String encodedCodetext) {#tryDecodeSwissQR-java.lang.String-} +``` +public static SwissQRCodetext tryDecodeSwissQR(String encodedCodetext) +``` + + +Décode le texte de code SwissQR. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| encodedCodetext | java.lang.String | texte de code encodé | + +**Returns:** +[SwissQRCodetext](../../com.aspose.barcode.complexbarcode/swissqrcodetext) - decoded SwissQRCodetext or null. +### tryDecodeUSADriveId(String encodedCodetext) {#tryDecodeUSADriveId-java.lang.String-} +``` +public static USADriveIdCodetext tryDecodeUSADriveId(String encodedCodetext) +``` + + +Décode le texte de code USADriveId. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| encodedCodetext | java.lang.String | Texte de code encodé | + +**Returns:** +com.aspose.barcode.complexbarcode.USADriveIdCodetext - USADriveId décodé ou null. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/dataelement/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/dataelement/_index.md new file mode 100644 index 000000000..c84d6b32d --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/dataelement/_index.md @@ -0,0 +1,185 @@ +--- +title: USADriveIdJurisdSubfile.DataElement +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Représente un champ de données spécifique à une juridiction utilisé dans les documents, par exemple ElementID ZVA avec la Valeur 01. +type: docs +weight: 10 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile.dataelement/ +--- +**Inheritance:** +java.lang.Object +``` +public static class USADriveIdJurisdSubfile.DataElement +``` + +Représente un champ de données spécifique à la juridiction utilisé dans les documents, par exemple ElementID = \"ZVA\" avec Value = \"01\". +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [DataElement()](#DataElement--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getElementID()](#getElementID--) | Un code à 3 caractères qui identifie le champ spécifique à la juridiction, par ex., "ZVA". | +| [getValue()](#getValue--) | La valeur texte associée au champ, généralement définie par les règles de la juridiction. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setElementID(String value)](#setElementID-java.lang.String-) | Un code à 3 caractères qui identifie le champ spécifique à la juridiction, par ex., "ZVA". | +| [setValue(String value)](#setValue-java.lang.String-) | La valeur texte associée au champ, généralement définie par les règles de la juridiction. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### DataElement() {#DataElement--} +``` +public DataElement() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getElementID() {#getElementID--} +``` +public final String getElementID() +``` + + +Un code à 3 caractères qui identifie le champ spécifique à la juridiction, par ex., "ZVA". + +**Returns:** +java.lang.String +### getValue() {#getValue--} +``` +public final String getValue() +``` + + +La valeur texte associée au champ, généralement définie par les règles de la juridiction. + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setElementID(String value) {#setElementID-java.lang.String-} +``` +public final void setElementID(String value) +``` + + +Un code à 3 caractères qui identifie le champ spécifique à la juridiction, par ex., "ZVA". + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setValue(String value) {#setValue-java.lang.String-} +``` +public final void setValue(String value) +``` + + +La valeur texte associée au champ, généralement définie par les règles de la juridiction. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/hibcliccombinedcodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/hibcliccombinedcodetext/_index.md new file mode 100644 index 000000000..27aa31c29 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/hibcliccombinedcodetext/_index.md @@ -0,0 +1,270 @@ +--- +title: HIBCLICCombinedCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le texte intégré dans le code HIBC LIC qui stocke les données primaires et secondaires. +type: docs +weight: 14 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/hibcliccombinedcodetext/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.complexbarcode.HIBCLICComplexCodetext](../../com.aspose.barcode.complexbarcode/hibcliccomplexcodetext) +``` +public class HIBCLICCombinedCodetext extends HIBCLICComplexCodetext +``` + +Classe pour encoder et décoder le texte intégré dans le code HIBC LIC qui stocke les données primaires et secondaires. + +-------------------- + +> ``` +> This sample shows how to encode and decode HIBC LIC using HIBCLICCombinedCodetext. +> +> +> HIBCLICCombinedCodetext combinedCodetext = new HIBCLICCombinedCodetext(); +> combinedCodetext.setBarcodeType(EncodeTypes.HIBCQRLIC); +> combinedCodetext.setPrimaryData(new PrimaryData()); +> combinedCodetext.getPrimaryData().setProductOrCatalogNumber("12345"); +> combinedCodetext.getPrimaryData().setLabelerIdentificationCode("A999"); +> combinedCodetext.getPrimaryData().setUnitOfMeasureID(1); +> combinedCodetext.setSecondaryAndAdditionalData(new SecondaryAndAdditionalData()); +> combinedCodetext.getSecondaryAndAdditionalData().setExpiryDate(new Date()); +> combinedCodetext.getSecondaryAndAdditionalData().setExpiryDateFormat(HIBCLICDateFormat.MMDDYY); +> combinedCodetext.getSecondaryAndAdditionalData().setQuantity(30); +> combinedCodetext.getSecondaryAndAdditionalData().setLotNumber("LOT123"); +> combinedCodetext.getSecondaryAndAdditionalData().setSerialNumber("SERIAL123"); +> combinedCodetext.getSecondaryAndAdditionalData().setDateOfManufacture(new Date()); +> ComplexBarcodeGenerator generator = new ComplexBarcodeGenerator(combinedCodetext); +> BufferedImage image = generator.generateBarCodeImage(); +> BarCodeReader reader = new BarCodeReader(image, DecodeType.HIBCQRLIC); +> reader.readBarCodes(); +> String codetext = reader.getFoundBarCodes()[0].getCodeText(); +> HIBCLICCombinedCodetext result = (HIBCLICCombinedCodetext)ComplexCodetextReader.tryDecodeHIBCLIC(codetext); +> System.out.println("Product or catalog number: " + result.getPrimaryData().getProductOrCatalogNumber()); +> System.out.println("Labeler identification code: " + result.getPrimaryData().getLabelerIdentificationCode()); +> System.out.println("Unit of measure ID: " + result.getPrimaryData().getUnitOfMeasureID()); +> System.out.println("Expiry date: " + result.getSecondaryAndAdditionalData().getExpiryDate()); +> System.out.println("Quantity: " + result.getSecondaryAndAdditionalData().getQuantity()); +> System.out.println("Lot number: " + result.getSecondaryAndAdditionalData().getLotNumber()); +> System.out.println("Serial number: " + result.getSecondaryAndAdditionalData().getSerialNumber()); +> System.out.println("Date of manufacture: " + result.getSecondaryAndAdditionalData().getDateOfManufacture()); +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [HIBCLICCombinedCodetext()](#HIBCLICCombinedCodetext--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de HIBCLICCombinedCodetext . | +| [getBarcodeType()](#getBarcodeType--) | Obtient ou définit le type de code-barres. | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construit le texte du code. | +| [getPrimaryData()](#getPrimaryData--) | Identifie les données principales. | +| [getSecondaryAndAdditionalData()](#getSecondaryAndAdditionalData--) | Identifie les données secondaires et supplémentaires additionnelles. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise l'instance à partir du texte du code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBarcodeType(BaseEncodeType value)](#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-) | Obtient ou définit le type de code-barres. | +| [setPrimaryData(PrimaryData value)](#setPrimaryData-com.aspose.barcode.complexbarcode.PrimaryData-) | Identifie les données principales. | +| [setSecondaryAndAdditionalData(SecondaryAndAdditionalData value)](#setSecondaryAndAdditionalData-com.aspose.barcode.complexbarcode.SecondaryAndAdditionalData-) | Identifie les données secondaires et supplémentaires additionnelles. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### HIBCLICCombinedCodetext() {#HIBCLICCombinedCodetext--} +``` +public HIBCLICCombinedCodetext() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de HIBCLICCombinedCodetext . + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur HIBCLICCombinedCodetext à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getBarcodeType() {#getBarcodeType--} +``` +public BaseEncodeType getBarcodeType() +``` + + +Obtient ou définit le type de code-barres. Le texte de code HIBC LIC peut être encodé en utilisant les types d'encodage HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC et HIBCQRLIC. Valeur par défaut : HIBCCode39LIC. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public String getConstructedCodetext() +``` + + +Construit le texte du code. + +**Returns:** +java.lang.String - Texte de code construit +### getPrimaryData() {#getPrimaryData--} +``` +public PrimaryData getPrimaryData() +``` + + +Identifie les données principales. + +**Returns:** +[PrimaryData](../../com.aspose.barcode.complexbarcode/primarydata) +### getSecondaryAndAdditionalData() {#getSecondaryAndAdditionalData--} +``` +public SecondaryAndAdditionalData getSecondaryAndAdditionalData() +``` + + +Identifie les données secondaires et supplémentaires additionnelles. + +**Returns:** +[SecondaryAndAdditionalData](../../com.aspose.barcode.complexbarcode/secondaryandadditionaldata) +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public void initFromString(String constructedCodetext) +``` + + +Initialise l'instance à partir du texte du code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBarcodeType(BaseEncodeType value) {#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-} +``` +public void setBarcodeType(BaseEncodeType value) +``` + + +Obtient ou définit le type de code-barres. Le texte de code HIBC LIC peut être encodé en utilisant les types d'encodage HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC et HIBCQRLIC. Valeur par défaut : HIBCCode39LIC. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | | + +### setPrimaryData(PrimaryData value) {#setPrimaryData-com.aspose.barcode.complexbarcode.PrimaryData-} +``` +public void setPrimaryData(PrimaryData value) +``` + + +Identifie les données principales. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [PrimaryData](../../com.aspose.barcode.complexbarcode/primarydata) | | + +### setSecondaryAndAdditionalData(SecondaryAndAdditionalData value) {#setSecondaryAndAdditionalData-com.aspose.barcode.complexbarcode.SecondaryAndAdditionalData-} +``` +public void setSecondaryAndAdditionalData(SecondaryAndAdditionalData value) +``` + + +Identifie les données secondaires et supplémentaires additionnelles. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [SecondaryAndAdditionalData](../../com.aspose.barcode.complexbarcode/secondaryandadditionaldata) | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/hibcliccomplexcodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/hibcliccomplexcodetext/_index.md new file mode 100644 index 000000000..5641956d7 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/hibcliccomplexcodetext/_index.md @@ -0,0 +1,202 @@ +--- +title: HIBCLICComplexCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe de base pour encoder et décoder le texte intégré dans le code HIBC LIC. +type: docs +weight: 15 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/hibcliccomplexcodetext/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.barcode.complexbarcode.IComplexCodetext](../../com.aspose.barcode.complexbarcode/icomplexcodetext) +``` +public abstract class HIBCLICComplexCodetext implements IComplexCodetext +``` + +Classe de base pour encoder et décoder le texte intégré dans le code HIBC LIC. + +-------------------- + +> ``` +> This sample shows how to decode raw HIBC LIC codetext to HIBCLICComplexCodetext instance. +> +> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.HIBC_AZTEC_LIC); +> for(BarCodeResult result : reader.readBarCodes()) +> { +> HIBCLICComplexCodetext resultHIBCLICComplexCodetext = ComplexCodetextReader.tryDecodeHIBCLIC(result.getCodeText()); +> System.out.println("BarCode Type: " + resultMaxiCodeCodetext.getBarcodeType()); +> System.out.println("BarCode CodeText: " + resultMaxiCodeCodetext.getConstructedCodetext()); +> } +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [HIBCLICComplexCodetext()](#HIBCLICComplexCodetext--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBarcodeType()](#getBarcodeType--) | Obtient ou définit le type de code-barres. | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construit le texte du code. | +| [hashCode()](#hashCode--) | | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise l'instance à partir du texte du code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBarcodeType(BaseEncodeType value)](#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-) | Obtient ou définit le type de code-barres. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### HIBCLICComplexCodetext() {#HIBCLICComplexCodetext--} +``` +public HIBCLICComplexCodetext() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBarcodeType() {#getBarcodeType--} +``` +public BaseEncodeType getBarcodeType() +``` + + +Obtient ou définit le type de code-barres. Le texte de code HIBC LIC peut être encodé en utilisant les types d'encodage HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC et HIBCQRLIC. Valeur par défaut : HIBCCode39LIC. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public abstract String getConstructedCodetext() +``` + + +Construit le texte du code. + +**Returns:** +java.lang.String - Texte de code construit +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public abstract void initFromString(String constructedCodetext) +``` + + +Initialise l'instance à partir du texte du code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBarcodeType(BaseEncodeType value) {#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-} +``` +public void setBarcodeType(BaseEncodeType value) +``` + + +Obtient ou définit le type de code-barres. Le texte de code HIBC LIC peut être encodé en utilisant les types d'encodage HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC et HIBCQRLIC. Valeur par défaut : HIBCCode39LIC. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/hibclicdateformat/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/hibclicdateformat/_index.md new file mode 100644 index 000000000..2789c59e5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/hibclicdateformat/_index.md @@ -0,0 +1,315 @@ +--- +title: HIBCLICDateFormat +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifie les différents types de formats de date pour HIBC LIC. +type: docs +weight: 42 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/hibclicdateformat/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum HIBCLICDateFormat extends Enum +``` + +Spécifie les différents types de formats de date pour HIBC LIC. +## Champs + +| Champ | Description | +| --- | --- | +| [MMDDYY](#MMDDYY) | format MMDDYY. | +| [MMYY](#MMYY) | format MMYY. | +| [NONE](#NONE) | Ne pas encoder la date d’expiration. | +| [YYJJJ](#YYJJJ) | format de date julienne. | +| [YYJJJHH](#YYJJJHH) | format de date julienne avec heures. | +| [YYMMDD](#YYMMDD) | format YYMMDD. | +| [YYMMDDHH](#YYMMDDHH) | format YYMMDDHH. | +| [YYYYMMDD](#YYYYMMDD) | format YYYYMMDD. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MMDDYY {#MMDDYY} +``` +public static final HIBCLICDateFormat MMDDYY +``` + + +format MMDDYY. + +### MMYY {#MMYY} +``` +public static final HIBCLICDateFormat MMYY +``` + + +format MMYY. + +### NONE {#NONE} +``` +public static final HIBCLICDateFormat NONE +``` + + +Ne pas encoder la date d’expiration. + +### YYJJJ {#YYJJJ} +``` +public static final HIBCLICDateFormat YYJJJ +``` + + +format de date julienne. + +### YYJJJHH {#YYJJJHH} +``` +public static final HIBCLICDateFormat YYJJJHH +``` + + +format de date julienne avec heures. + +### YYMMDD {#YYMMDD} +``` +public static final HIBCLICDateFormat YYMMDD +``` + + +format YYMMDD. + +### YYMMDDHH {#YYMMDDHH} +``` +public static final HIBCLICDateFormat YYMMDDHH +``` + + +format YYMMDDHH. + +### YYYYMMDD {#YYYYMMDD} +``` +public static final HIBCLICDateFormat YYYYMMDD +``` + + +format YYYYMMDD. Sera encodé dans les données supplémentaires complémentaires. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static HIBCLICDateFormat valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[HIBCLICDateFormat](../../com.aspose.barcode.complexbarcode/hibclicdateformat) +### values() {#values--} +``` +public static HIBCLICDateFormat[] values() +``` + + + + +**Returns:** +com.aspose.barcode.complexbarcode.HIBCLICDateFormat[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/hibclicprimarydatacodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/hibclicprimarydatacodetext/_index.md new file mode 100644 index 000000000..aa258dd24 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/hibclicprimarydatacodetext/_index.md @@ -0,0 +1,236 @@ +--- +title: HIBCLICPrimaryDataCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le texte intégré dans le code HIBC LIC qui stocke les données primaires. +type: docs +weight: 16 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/hibclicprimarydatacodetext/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.complexbarcode.HIBCLICComplexCodetext](../../com.aspose.barcode.complexbarcode/hibcliccomplexcodetext) +``` +public class HIBCLICPrimaryDataCodetext extends HIBCLICComplexCodetext +``` + +Classe pour encoder et décoder le texte intégré dans le code HIBC LIC qui stocke les données primaires. + +-------------------- + +> ``` +> This sample shows how to encode and decode HIBC LIC using HIBCLICPrimaryDataCodetext. +> +> HIBCLICPrimaryDataCodetext complexCodetext = new HIBCLICPrimaryDataCodetext(); +> complexCodetext.setBarcodeType(EncodeTypes.HIBCQRLIC); +> complexCodetext.setData(new PrimaryData()); +> complexCodetext.getData().setProductOrCatalogNumber("12345"); +> complexCodetext.getData().setLabelerIdentificationCode("A999"); +> complexCodetext.getData().setUnitOfMeasureID(1); +> ComplexBarcodeGenerator generator = new ComplexBarcodeGenerator(complexCodetext); +> { +> BufferedImage image = generator.generateBarCodeImage(); +> BarCodeReader reader = new BarCodeReader(image, DecodeType.HIBCQRLIC); +> { +> reader.readBarCodes(); +> HIBCLICPrimaryCodetext result = (HIBCLICPrimaryCodetext)ComplexCodetextReader.TryDecodeHIBCLIC(codetext); +> HIBCLICPrimaryCodetext result = (HIBCLICPrimaryCodetext)ComplexCodetextReader.tryDecodeHIBCLIC(codetext); +> System.out.println("Product or catalog number: " + result.getData().getProductOrCatalogNumber()); +> System.out.println("Labeler identification code: " + result.getData().getLabelerIdentificationCode()); +> System.out.println("Unit of measure ID: " + result.getData().getUnitOfMeasureID()); +> } +> } +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [HIBCLICPrimaryDataCodetext()](#HIBCLICPrimaryDataCodetext--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur HIBCLICPrimaryDataCodetext spécifiée. | +| [getBarcodeType()](#getBarcodeType--) | Obtient ou définit le type de code-barres. | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construit le texte du code. | +| [getData()](#getData--) | Identifie les données principales. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise l'instance à partir du texte du code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBarcodeType(BaseEncodeType value)](#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-) | Obtient ou définit le type de code-barres. | +| [setData(PrimaryData value)](#setData-com.aspose.barcode.complexbarcode.PrimaryData-) | Identifie les données principales. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### HIBCLICPrimaryDataCodetext() {#HIBCLICPrimaryDataCodetext--} +``` +public HIBCLICPrimaryDataCodetext() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur HIBCLICPrimaryDataCodetext spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur HIBCLICPrimaryDataCodetext à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getBarcodeType() {#getBarcodeType--} +``` +public BaseEncodeType getBarcodeType() +``` + + +Obtient ou définit le type de code-barres. Le texte de code HIBC LIC peut être encodé en utilisant les types d'encodage HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC et HIBCQRLIC. Valeur par défaut : HIBCCode39LIC. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public String getConstructedCodetext() +``` + + +Construit le texte du code. + +**Returns:** +java.lang.String - Texte de code construit +### getData() {#getData--} +``` +public PrimaryData getData() +``` + + +Identifie les données principales. + +**Returns:** +[PrimaryData](../../com.aspose.barcode.complexbarcode/primarydata) +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public void initFromString(String constructedCodetext) +``` + + +Initialise l'instance à partir du texte du code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBarcodeType(BaseEncodeType value) {#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-} +``` +public void setBarcodeType(BaseEncodeType value) +``` + + +Obtient ou définit le type de code-barres. Le texte de code HIBC LIC peut être encodé en utilisant les types d'encodage HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC et HIBCQRLIC. Valeur par défaut : HIBCCode39LIC. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | | + +### setData(PrimaryData value) {#setData-com.aspose.barcode.complexbarcode.PrimaryData-} +``` +public void setData(PrimaryData value) +``` + + +Identifie les données principales. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [PrimaryData](../../com.aspose.barcode.complexbarcode/primarydata) | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/hibclicsecondaryandadditionaldatacodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/hibclicsecondaryandadditionaldatacodetext/_index.md new file mode 100644 index 000000000..9dcafd1d1 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/hibclicsecondaryandadditionaldatacodetext/_index.md @@ -0,0 +1,235 @@ +--- +title: HIBCLICSecondaryAndAdditionalDataCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le texte intégré dans le code HIBC LIC qui stocke les données secondaires. +type: docs +weight: 17 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/hibclicsecondaryandadditionaldatacodetext/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.complexbarcode.HIBCLICComplexCodetext](../../com.aspose.barcode.complexbarcode/hibcliccomplexcodetext) +``` +public class HIBCLICSecondaryAndAdditionalDataCodetext extends HIBCLICComplexCodetext +``` + +Classe pour encoder et décoder le texte intégré dans le code HIBC LIC qui stocke les données secondaires. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [HIBCLICSecondaryAndAdditionalDataCodetext()](#HIBCLICSecondaryAndAdditionalDataCodetext--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée HIBCLICSecondaryAndAdditionalDataCodetext. | +| [getBarcodeType()](#getBarcodeType--) | Obtient ou définit le type de code-barres. | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construit le texte du code. | +| [getData()](#getData--) | Identifie les données secondaires et supplémentaires complémentaires. | +| [getLinkCharacter()](#getLinkCharacter--) | Identifie le caractère de liaison. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise l'instance à partir du texte du code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBarcodeType(BaseEncodeType value)](#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-) | Obtient ou définit le type de code-barres. | +| [setData(SecondaryAndAdditionalData value)](#setData-com.aspose.barcode.complexbarcode.SecondaryAndAdditionalData-) | Identifie les données secondaires et supplémentaires complémentaires. | +| [setLinkCharacter(char value)](#setLinkCharacter-char-) | Identifie le caractère de liaison. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### HIBCLICSecondaryAndAdditionalDataCodetext() {#HIBCLICSecondaryAndAdditionalDataCodetext--} +``` +public HIBCLICSecondaryAndAdditionalDataCodetext() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée HIBCLICSecondaryAndAdditionalDataCodetext. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur HIBCLICSecondaryAndAdditionalDataCodetext à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getBarcodeType() {#getBarcodeType--} +``` +public BaseEncodeType getBarcodeType() +``` + + +Obtient ou définit le type de code-barres. Le texte de code HIBC LIC peut être encodé en utilisant les types d'encodage HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC et HIBCQRLIC. Valeur par défaut : HIBCCode39LIC. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public String getConstructedCodetext() +``` + + +Construit le texte du code. + +**Returns:** +java.lang.String - Texte de code construit +### getData() {#getData--} +``` +public SecondaryAndAdditionalData getData() +``` + + +Identifie les données secondaires et supplémentaires complémentaires. + +**Returns:** +[SecondaryAndAdditionalData](../../com.aspose.barcode.complexbarcode/secondaryandadditionaldata) +### getLinkCharacter() {#getLinkCharacter--} +``` +public char getLinkCharacter() +``` + + +Identifie le caractère de liaison. + +**Returns:** +char +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public void initFromString(String constructedCodetext) +``` + + +Initialise l'instance à partir du texte du code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBarcodeType(BaseEncodeType value) {#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-} +``` +public void setBarcodeType(BaseEncodeType value) +``` + + +Obtient ou définit le type de code-barres. Le texte de code HIBC LIC peut être encodé en utilisant les types d'encodage HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC et HIBCQRLIC. Valeur par défaut : HIBCCode39LIC. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | | + +### setData(SecondaryAndAdditionalData value) {#setData-com.aspose.barcode.complexbarcode.SecondaryAndAdditionalData-} +``` +public void setData(SecondaryAndAdditionalData value) +``` + + +Identifie les données secondaires et supplémentaires complémentaires. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [SecondaryAndAdditionalData](../../com.aspose.barcode.complexbarcode/secondaryandadditionaldata) | | + +### setLinkCharacter(char value) {#setLinkCharacter-char-} +``` +public void setLinkCharacter(char value) +``` + + +Identifie le caractère de liaison. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | char | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/hibcpascodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/hibcpascodetext/_index.md new file mode 100644 index 000000000..096b1bc89 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/hibcpascodetext/_index.md @@ -0,0 +1,287 @@ +--- +title: HIBCPASCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le texte intégré dans le code HIBC PAS. +type: docs +weight: 18 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/hibcpascodetext/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.barcode.complexbarcode.IComplexCodetext](../../com.aspose.barcode.complexbarcode/icomplexcodetext) +``` +public class HIBCPASCodetext implements IComplexCodetext +``` + +Classe pour encoder et décoder le texte intégré dans le code HIBC PAS. + +-------------------- + +> ``` +> This sample shows how to encode and decode HIBC PAS using HIBCPASCodetext. +> +> +> HIBCPASComplexCodetext complexCodetext = new HIBCPASComplexCodetext(); +> complexCodetext.setDataLocation(HIBCPASDataLocation.PATIENT); +> complexCodetext.addRecord(HIBCPASDataType.LABELER_IDENTIFICATION_CODE, "A123"); +> complexCodetext.addRecord(HIBCPASDataType.MANUFACTURER_SERIAL_NUMBER, "SERIAL123"); +> complexCodetext.setBarcodeType(EncodeTypes.HIBC_DATA_MATRIX_PAS); +> ComplexBarcodeGenerator generator = new ComplexBarcodeGenerator(complexCodetext); +> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.HIBC_DATA_MATRIX_PAS); +> reader.readBarCodes(); +> String codetext = reader.getFoundBarCodes()[0].getCodeText(); +> HIBCPASComplexCodetext readCodetext = ComplexCodetextReader.tryDecodeHIBCPAS(codetext); +> System.out.println("Data location: {0}", readCodetext.getDataLocation()); +> System.out.print("Data type: {0}. ", readCodetext.getRecords()[0].getDataType()); +> System.out.println("Data: {0}", readCodetext.getRecords()[0].getData()); +> System.out.print("Data type: {0}. ", readCodetext.getRecords()[1].getDataType()); +> System.out.println("Data: {0}", readCodetext.getRecords()[1].getData()); +> } +> } +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [HIBCPASCodetext()](#HIBCPASCodetext--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addRecord(HIBCPASRecord record)](#addRecord-com.aspose.barcode.complexbarcode.HIBCPASRecord-) | Ajoute un nouvel enregistrement | +| [addRecord(int dataType, String data)](#addRecord-int-java.lang.String-) | Ajoute un nouvel enregistrement | +| [clear()](#clear--) | Efface la liste des enregistrements | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur HIBCPASCodetext spécifiée. | +| [getBarcodeType()](#getBarcodeType--) | Obtient le type de code-barres. | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construit le texte du code. | +| [getDataLocation()](#getDataLocation--) | Identifie l'emplacement des données. | +| [getRecords()](#getRecords--) | Obtient la liste des enregistrements | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise l'instance à partir du texte du code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBarcodeType(BaseEncodeType value)](#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-) | Obtient ou définit le type de code-barres. | +| [setDataLocation(int value)](#setDataLocation-int-) | Identifie l'emplacement des données. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### HIBCPASCodetext() {#HIBCPASCodetext--} +``` +public HIBCPASCodetext() +``` + + +### addRecord(HIBCPASRecord record) {#addRecord-com.aspose.barcode.complexbarcode.HIBCPASRecord-} +``` +public void addRecord(HIBCPASRecord record) +``` + + +Ajoute un nouvel enregistrement + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| record | [HIBCPASRecord](../../com.aspose.barcode.complexbarcode/hibcpasrecord) | Enregistrement à ajouter | + +### addRecord(int dataType, String data) {#addRecord-int-java.lang.String-} +``` +public void addRecord(int dataType, String data) +``` + + +Ajoute un nouvel enregistrement + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dataType | int | Type de données | +| data | java.lang.String | Chaîne de données | + +### clear() {#clear--} +``` +public void clear() +``` + + +Efface la liste des enregistrements + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur HIBCPASCodetext spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur HIBCPASCodetext à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getBarcodeType() {#getBarcodeType--} +``` +public BaseEncodeType getBarcodeType() +``` + + +Obtient le type de code-barres. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public String getConstructedCodetext() +``` + + +Construit le texte du code. + +**Returns:** +java.lang.String - Texte de code construit +### getDataLocation() {#getDataLocation--} +``` +public int getDataLocation() +``` + + +Identifie l'emplacement des données. + +**Returns:** +int +### getRecords() {#getRecords--} +``` +public List getRecords() +``` + + +Obtient la liste des enregistrements + +**Returns:** +java.util.List - Liste des enregistrements +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public void initFromString(String constructedCodetext) +``` + + +Initialise l'instance à partir du texte du code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBarcodeType(BaseEncodeType value) {#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-} +``` +public void setBarcodeType(BaseEncodeType value) +``` + + +Obtient ou définit le type de code-barres. Le codetext HIBC PAS peut être encodé en utilisant HIBCCode39PAS, HIBCCode128PAS, HIBCAztec:PAS, HIBCDataMatrixPAS et HIBCQRPAS. Valeur par défaut : HIBCCode39PAS. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | | + +### setDataLocation(int value) {#setDataLocation-int-} +``` +public void setDataLocation(int value) +``` + + +Identifie l'emplacement des données. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/hibcpasdatalocation/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/hibcpasdatalocation/_index.md new file mode 100644 index 000000000..5a047b924 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/hibcpasdatalocation/_index.md @@ -0,0 +1,666 @@ +--- +title: HIBCPASDataLocation +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Types d'emplacement des données HIBC PAS. +type: docs +weight: 19 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/hibcpasdatalocation/ +--- +**Inheritance:** +java.lang.Object, com.aspose.ms.System.ValueType, com.aspose.ms.System.Enum +``` +public final class HIBCPASDataLocation extends System.Enum +``` + +Types d'emplacement des données HIBC PAS. +## Champs + +| Champ | Description | +| --- | --- | +| [ASSET](#ASSET) | K - Asset data type | +| [BUSINESS_RECORD](#BUSINESS-RECORD) | E - Business Record | +| [DEVICES_AND_MATERIALS](#DEVICES-AND-MATERIALS) | H - Devices and Materials | +| [DIRECT_PATIENT_IMAGE_ITEM](#DIRECT-PATIENT-IMAGE-ITEM) | D - Direct Patient Image Item | +| [EnumSeparatorCharArray](#EnumSeparatorCharArray) | | +| [IDENTIFICATION_CARD](#IDENTIFICATION-CARD) | I - Identification Card | +| [LIBRARY_REFERENCE_MATERIAL](#LIBRARY-REFERENCE-MATERIAL) | G - Library Reference Material | +| [MEDICAL_ADMINISTRATION_RECORD](#MEDICAL-ADMINISTRATION-RECORD) | F - Medical Administration Record | +| [PATIENT](#PATIENT) | A - Patient | +| [PATIENT_CARE_RECORD](#PATIENT-CARE-RECORD) | B - Patient Care Record | +| [PRODUCT_CONTAINER](#PRODUCT-CONTAINER) | J - Product Container | +| [SPECIMEN_CONTAINER](#SPECIMEN-CONTAINER) | C - Specimen Container | +| [SURGICAL_INSTRUMENT](#SURGICAL-INSTRUMENT) | L - Surgical Instrument | +| [USER_DEFINED](#USER-DEFINED) | Z - User Defined | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [Clone()](#Clone--) | | +| [CloneTo(T that)](#CloneTo-T-) | | +| [CloneTo(System.Enum that)](#CloneTo-com.aspose.ms.System.Enum-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [format(System.Type enumType, Object value, String format)](#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-) | | +| [format(Class enumType, long value, String format)](#format-java.lang.Class----long-java.lang.String-) | | +| [getClass()](#getClass--) | | +| [getName(System.Type enumType, Object value)](#getName-com.aspose.ms.System.Type-java.lang.Object-) | | +| [getName(Class enumType, long value)](#getName-java.lang.Class----long-) | | +| [getNames(System.Type enumType)](#getNames-com.aspose.ms.System.Type-) | | +| [getNames(Class enumType)](#getNames-java.lang.Class----) | | +| [getUnderlyingType(System.Type enumType)](#getUnderlyingType-com.aspose.ms.System.Type-) | | +| [getUnderlyingType(Class enumType)](#getUnderlyingType-java.lang.Class----) | | +| [getValue(Class enumType, String name)](#getValue-java.lang.Class----java.lang.String-) | | +| [getValues(System.Type enumType)](#getValues-com.aspose.ms.System.Type-) | | +| [get_Caption()](#get-Caption--) | | +| [get_Value()](#get-Value--) | | +| [hashCode()](#hashCode--) | | +| [isDefined(System.Type enumType, Object value)](#isDefined-com.aspose.ms.System.Type-java.lang.Object-) | | +| [isDefined(System.Type enumType, String value)](#isDefined-com.aspose.ms.System.Type-java.lang.String-) | | +| [isDefined(System.Type enumType, long value)](#isDefined-com.aspose.ms.System.Type-long-) | | +| [isDefined(Class enumType, long value)](#isDefined-java.lang.Class----long-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parse(System.Type enumType, String value)](#parse-com.aspose.ms.System.Type-java.lang.String-) | | +| [parse(System.Type enumType, String value, Boolean ignoreCase)](#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-) | | +| [parse(Class enumType, String value)](#parse-java.lang.Class----java.lang.String-) | | +| [parse(Class enumType, String value, Boolean ignoreCase)](#parse-java.lang.Class----java.lang.String-java.lang.Boolean-) | | +| [register(System.Enum.AbstractEnum e)](#register-com.aspose.ms.System.Enum.AbstractEnum-) | | +| [toObject(System.Type enumType, Object value)](#toObject-com.aspose.ms.System.Type-java.lang.Object-) | | +| [toString()](#toString--) | | +| [toString(Class enumType, long value)](#toString-java.lang.Class----long-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ASSET {#ASSET} +``` +public static final int ASSET +``` + + +K - Asset data type + +### BUSINESS_RECORD {#BUSINESS-RECORD} +``` +public static final int BUSINESS_RECORD +``` + + +E - Business Record + +### DEVICES_AND_MATERIALS {#DEVICES-AND-MATERIALS} +``` +public static final int DEVICES_AND_MATERIALS +``` + + +H - Devices and Materials + +### DIRECT_PATIENT_IMAGE_ITEM {#DIRECT-PATIENT-IMAGE-ITEM} +``` +public static final int DIRECT_PATIENT_IMAGE_ITEM +``` + + +D - Direct Patient Image Item + +### EnumSeparatorCharArray {#EnumSeparatorCharArray} +``` +public static final char[] EnumSeparatorCharArray +``` + + +### IDENTIFICATION_CARD {#IDENTIFICATION-CARD} +``` +public static final int IDENTIFICATION_CARD +``` + + +I - Identification Card + +### LIBRARY_REFERENCE_MATERIAL {#LIBRARY-REFERENCE-MATERIAL} +``` +public static final int LIBRARY_REFERENCE_MATERIAL +``` + + +G - Library Reference Material + +### MEDICAL_ADMINISTRATION_RECORD {#MEDICAL-ADMINISTRATION-RECORD} +``` +public static final int MEDICAL_ADMINISTRATION_RECORD +``` + + +F - Medical Administration Record + +### PATIENT {#PATIENT} +``` +public static final int PATIENT +``` + + +A - Patient + +### PATIENT_CARE_RECORD {#PATIENT-CARE-RECORD} +``` +public static final int PATIENT_CARE_RECORD +``` + + +B - Patient Care Record + +### PRODUCT_CONTAINER {#PRODUCT-CONTAINER} +``` +public static final int PRODUCT_CONTAINER +``` + + +J - Product Container + +### SPECIMEN_CONTAINER {#SPECIMEN-CONTAINER} +``` +public static final int SPECIMEN_CONTAINER +``` + + +C - Specimen Container + +### SURGICAL_INSTRUMENT {#SURGICAL-INSTRUMENT} +``` +public static final int SURGICAL_INSTRUMENT +``` + + +L - Surgical Instrument + +### USER_DEFINED {#USER-DEFINED} +``` +public static final int USER_DEFINED +``` + + +Z - User Defined + +### Clone() {#Clone--} +``` +public System.Enum Clone() +``` + + + + +**Returns:** +com.aspose.ms.System.Enum +### CloneTo(T that) {#CloneTo-T-} +``` +public abstract void CloneTo(T that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | T | | + +### CloneTo(System.Enum that) {#CloneTo-com.aspose.ms.System.Enum-} +``` +public void CloneTo(System.Enum that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | com.aspose.ms.System.Enum | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### format(System.Type enumType, Object value, String format) {#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-} +``` +public static String format(System.Type enumType, Object value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### format(Class enumType, long value, String format) {#format-java.lang.Class----long-java.lang.String-} +``` +public static String format(Class enumType, long value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getName(System.Type enumType, Object value) {#getName-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static String getName(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.String +### getName(Class enumType, long value) {#getName-java.lang.Class----long-} +``` +public static String getName(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### getNames(System.Type enumType) {#getNames-com.aspose.ms.System.Type-} +``` +public static String[] getNames(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +java.lang.String[] +### getNames(Class enumType) {#getNames-java.lang.Class----} +``` +public static Collection getNames(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.util.Collection +### getUnderlyingType(System.Type enumType) {#getUnderlyingType-com.aspose.ms.System.Type-} +``` +public static System.Type getUnderlyingType(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Type +### getUnderlyingType(Class enumType) {#getUnderlyingType-java.lang.Class----} +``` +public static Class getUnderlyingType(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.lang.Class +### getValue(Class enumType, String name) {#getValue-java.lang.Class----java.lang.String-} +``` +public static long getValue(Class enumType, String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| nom | java.lang.String | | + +**Returns:** +long +### getValues(System.Type enumType) {#getValues-com.aspose.ms.System.Type-} +``` +public static System.Array getValues(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Array +### get_Caption() {#get-Caption--} +``` +public String get_Caption() +``` + + + + +**Returns:** +java.lang.String +### get_Value() {#get-Value--} +``` +public long get_Value() +``` + + + + +**Returns:** +long +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isDefined(System.Type enumType, Object value) {#isDefined-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static boolean isDefined(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +boolean +### isDefined(System.Type enumType, String value) {#isDefined-com.aspose.ms.System.Type-java.lang.String-} +``` +public static boolean isDefined(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +boolean +### isDefined(System.Type enumType, long value) {#isDefined-com.aspose.ms.System.Type-long-} +``` +public static boolean isDefined(System.Type enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | long | | + +**Returns:** +boolean +### isDefined(Class enumType, long value) {#isDefined-java.lang.Class----long-} +``` +public static boolean isDefined(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parse(System.Type enumType, String value) {#parse-com.aspose.ms.System.Type-java.lang.String-} +``` +public static long parse(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(System.Type enumType, String value, Boolean ignoreCase) {#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-} +``` +public static long parse(System.Type enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### parse(Class enumType, String value) {#parse-java.lang.Class----java.lang.String-} +``` +public static long parse(Class enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(Class enumType, String value, Boolean ignoreCase) {#parse-java.lang.Class----java.lang.String-java.lang.Boolean-} +``` +public static long parse(Class enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### register(System.Enum.AbstractEnum e) {#register-com.aspose.ms.System.Enum.AbstractEnum-} +``` +public static void register(System.Enum.AbstractEnum e) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| e | com.aspose.ms.System.Enum.AbstractEnum | | + +### toObject(System.Type enumType, Object value) {#toObject-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static Object toObject(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.Object +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### toString(Class enumType, long value) {#toString-java.lang.Class----long-} +``` +public static String toString(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/hibcpasdatatype/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/hibcpasdatatype/_index.md new file mode 100644 index 000000000..d6049673c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/hibcpasdatatype/_index.md @@ -0,0 +1,765 @@ +--- +title: HIBCPASDataType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Types de données des enregistrements HIBC PAS. +type: docs +weight: 20 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/hibcpasdatatype/ +--- +**Inheritance:** +java.lang.Object, com.aspose.ms.System.ValueType, com.aspose.ms.System.Enum +``` +public final class HIBCPASDataType extends System.Enum +``` + +Types de données de l'enregistrement HIBC PAS. +## Champs + +| Champ | Description | +| --- | --- | +| [ADMINISTRABLE_PRODUCT_IDENTIFICATION](#ADMINISTRABLE-PRODUCT-IDENTIFICATION) | F - Identification de produit administrable | +| [ASSET_IDENTIFICATION](#ASSET-IDENTIFICATION) | N - Identification d'actif | +| [BLOOD_PRODUCT_IDENTIFICATION](#BLOOD-PRODUCT-IDENTIFICATION) | K - Identification de produit sanguin | +| [BUSINESS_CONTROL_NUMBER](#BUSINESS-CONTROL-NUMBER) | S - Numéro de contrôle commercial | +| [DATE_TIME](#DATE-TIME) | M - DateHeure au format YYYDDDHHMMG | +| [DEMOGRAPHIC_DATA](#DEMOGRAPHIC-DATA) | L - Données démographiques | +| [DIETARY_ITEM_IDENTIFICATION](#DIETARY-ITEM-IDENTIFICATION) | P - Identification d'élément diététique | +| [EPISODE_OF_CARE_IDENTIFICATION](#EPISODE-OF-CARE-IDENTIFICATION) | T - Identification de l'épisode de soins | +| [EnumSeparatorCharArray](#EnumSeparatorCharArray) | | +| [HEALTH_INDUSTRY_NUMBER](#HEALTH-INDUSTRY-NUMBER) | U - Numéro de l'industrie de la santé | +| [HOSPITAL_ITEM_IDENTIFICATION](#HOSPITAL-ITEM-IDENTIFICATION) | H - Identification de l'article d'hôpital | +| [IMPLANTABLE_PRODUCT_INFORMATION](#IMPLANTABLE-PRODUCT-INFORMATION) | G - Informations sur le produit implantable | +| [LABELER_IDENTIFICATION_CODE](#LABELER-IDENTIFICATION-CODE) | A - Code d'identification de l'étiqueteur | +| [LIBRARY_MATERIALS_IDENTIFICATION](#LIBRARY-MATERIALS-IDENTIFICATION) | R - Identification des matériaux de bibliothèque | +| [MANUFACTURER_SERIAL_NUMBER](#MANUFACTURER-SERIAL-NUMBER) | Q - Numéro de série du fabricant | +| [MEDICAL_PROCEDURE_IDENTIFICATION](#MEDICAL-PROCEDURE-IDENTIFICATION) | I - Identification de la procédure médicale | +| [PATIENT_IDENTIFICATION](#PATIENT-IDENTIFICATION) | C - Identification du patient | +| [PATIENT_VISIT_ID](#PATIENT-VISIT-ID) | V - Identifiant de visite du patient | +| [PERSONNEL_IDENTIFICATION](#PERSONNEL-IDENTIFICATION) | E - Identification du personnel | +| [PURCHASE_ORDER_NUMBER](#PURCHASE-ORDER-NUMBER) | O - Numéro de bon de commande | +| [REIMBURSEMENT_CATEGORY](#REIMBURSEMENT-CATEGORY) | J - Catégorie de remboursement | +| [SERVICE_IDENTIFICATION](#SERVICE-IDENTIFICATION) | B - Identification du service | +| [SPECIMEN_IDENTIFICATION](#SPECIMEN-IDENTIFICATION) | D - Identification de l'échantillon | +| [USER_DEFINED](#USER-DEFINED) | Z - User Defined | +| [XML_DOCUMENT](#XML-DOCUMENT) | X - Document XML | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [Clone()](#Clone--) | | +| [CloneTo(T that)](#CloneTo-T-) | | +| [CloneTo(System.Enum that)](#CloneTo-com.aspose.ms.System.Enum-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [format(System.Type enumType, Object value, String format)](#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-) | | +| [format(Class enumType, long value, String format)](#format-java.lang.Class----long-java.lang.String-) | | +| [getClass()](#getClass--) | | +| [getName(System.Type enumType, Object value)](#getName-com.aspose.ms.System.Type-java.lang.Object-) | | +| [getName(Class enumType, long value)](#getName-java.lang.Class----long-) | | +| [getNames(System.Type enumType)](#getNames-com.aspose.ms.System.Type-) | | +| [getNames(Class enumType)](#getNames-java.lang.Class----) | | +| [getUnderlyingType(System.Type enumType)](#getUnderlyingType-com.aspose.ms.System.Type-) | | +| [getUnderlyingType(Class enumType)](#getUnderlyingType-java.lang.Class----) | | +| [getValue(Class enumType, String name)](#getValue-java.lang.Class----java.lang.String-) | | +| [getValues(System.Type enumType)](#getValues-com.aspose.ms.System.Type-) | | +| [get_Caption()](#get-Caption--) | | +| [get_Value()](#get-Value--) | | +| [hashCode()](#hashCode--) | | +| [isDefined(System.Type enumType, Object value)](#isDefined-com.aspose.ms.System.Type-java.lang.Object-) | | +| [isDefined(System.Type enumType, String value)](#isDefined-com.aspose.ms.System.Type-java.lang.String-) | | +| [isDefined(System.Type enumType, long value)](#isDefined-com.aspose.ms.System.Type-long-) | | +| [isDefined(Class enumType, long value)](#isDefined-java.lang.Class----long-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parse(System.Type enumType, String value)](#parse-com.aspose.ms.System.Type-java.lang.String-) | | +| [parse(System.Type enumType, String value, Boolean ignoreCase)](#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-) | | +| [parse(Class enumType, String value)](#parse-java.lang.Class----java.lang.String-) | | +| [parse(Class enumType, String value, Boolean ignoreCase)](#parse-java.lang.Class----java.lang.String-java.lang.Boolean-) | | +| [register(System.Enum.AbstractEnum e)](#register-com.aspose.ms.System.Enum.AbstractEnum-) | | +| [toObject(System.Type enumType, Object value)](#toObject-com.aspose.ms.System.Type-java.lang.Object-) | | +| [toString()](#toString--) | | +| [toString(Class enumType, long value)](#toString-java.lang.Class----long-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ADMINISTRABLE_PRODUCT_IDENTIFICATION {#ADMINISTRABLE-PRODUCT-IDENTIFICATION} +``` +public static final int ADMINISTRABLE_PRODUCT_IDENTIFICATION +``` + + +F - Identification de produit administrable + +### ASSET_IDENTIFICATION {#ASSET-IDENTIFICATION} +``` +public static final int ASSET_IDENTIFICATION +``` + + +N - Identification d'actif + +### BLOOD_PRODUCT_IDENTIFICATION {#BLOOD-PRODUCT-IDENTIFICATION} +``` +public static final int BLOOD_PRODUCT_IDENTIFICATION +``` + + +K - Identification de produit sanguin + +### BUSINESS_CONTROL_NUMBER {#BUSINESS-CONTROL-NUMBER} +``` +public static final int BUSINESS_CONTROL_NUMBER +``` + + +S - Numéro de contrôle commercial + +### DATE_TIME {#DATE-TIME} +``` +public static final int DATE_TIME +``` + + +M - DateHeure au format YYYDDDHHMMG + +### DEMOGRAPHIC_DATA {#DEMOGRAPHIC-DATA} +``` +public static final int DEMOGRAPHIC_DATA +``` + + +L - Données démographiques + +### DIETARY_ITEM_IDENTIFICATION {#DIETARY-ITEM-IDENTIFICATION} +``` +public static final int DIETARY_ITEM_IDENTIFICATION +``` + + +P - Identification d'élément diététique + +### EPISODE_OF_CARE_IDENTIFICATION {#EPISODE-OF-CARE-IDENTIFICATION} +``` +public static final int EPISODE_OF_CARE_IDENTIFICATION +``` + + +T - Identification de l'épisode de soins + +### EnumSeparatorCharArray {#EnumSeparatorCharArray} +``` +public static final char[] EnumSeparatorCharArray +``` + + +### HEALTH_INDUSTRY_NUMBER {#HEALTH-INDUSTRY-NUMBER} +``` +public static final int HEALTH_INDUSTRY_NUMBER +``` + + +U - Numéro de l'industrie de la santé + +### HOSPITAL_ITEM_IDENTIFICATION {#HOSPITAL-ITEM-IDENTIFICATION} +``` +public static final int HOSPITAL_ITEM_IDENTIFICATION +``` + + +H - Identification de l'article d'hôpital + +### IMPLANTABLE_PRODUCT_INFORMATION {#IMPLANTABLE-PRODUCT-INFORMATION} +``` +public static final int IMPLANTABLE_PRODUCT_INFORMATION +``` + + +G - Informations sur le produit implantable + +### LABELER_IDENTIFICATION_CODE {#LABELER-IDENTIFICATION-CODE} +``` +public static final int LABELER_IDENTIFICATION_CODE +``` + + +A - Code d'identification de l'étiqueteur + +### LIBRARY_MATERIALS_IDENTIFICATION {#LIBRARY-MATERIALS-IDENTIFICATION} +``` +public static final int LIBRARY_MATERIALS_IDENTIFICATION +``` + + +R - Identification des matériaux de bibliothèque + +### MANUFACTURER_SERIAL_NUMBER {#MANUFACTURER-SERIAL-NUMBER} +``` +public static final int MANUFACTURER_SERIAL_NUMBER +``` + + +Q - Numéro de série du fabricant + +### MEDICAL_PROCEDURE_IDENTIFICATION {#MEDICAL-PROCEDURE-IDENTIFICATION} +``` +public static final int MEDICAL_PROCEDURE_IDENTIFICATION +``` + + +I - Identification de la procédure médicale + +### PATIENT_IDENTIFICATION {#PATIENT-IDENTIFICATION} +``` +public static final int PATIENT_IDENTIFICATION +``` + + +C - Identification du patient + +### PATIENT_VISIT_ID {#PATIENT-VISIT-ID} +``` +public static final int PATIENT_VISIT_ID +``` + + +V - Identifiant de visite du patient + +### PERSONNEL_IDENTIFICATION {#PERSONNEL-IDENTIFICATION} +``` +public static final int PERSONNEL_IDENTIFICATION +``` + + +E - Identification du personnel + +### PURCHASE_ORDER_NUMBER {#PURCHASE-ORDER-NUMBER} +``` +public static final int PURCHASE_ORDER_NUMBER +``` + + +O - Numéro de bon de commande + +### REIMBURSEMENT_CATEGORY {#REIMBURSEMENT-CATEGORY} +``` +public static final int REIMBURSEMENT_CATEGORY +``` + + +J - Catégorie de remboursement + +### SERVICE_IDENTIFICATION {#SERVICE-IDENTIFICATION} +``` +public static final int SERVICE_IDENTIFICATION +``` + + +B - Identification du service + +### SPECIMEN_IDENTIFICATION {#SPECIMEN-IDENTIFICATION} +``` +public static final int SPECIMEN_IDENTIFICATION +``` + + +D - Identification de l'échantillon + +### USER_DEFINED {#USER-DEFINED} +``` +public static final int USER_DEFINED +``` + + +Z - User Defined + +### XML_DOCUMENT {#XML-DOCUMENT} +``` +public static final int XML_DOCUMENT +``` + + +X - Document XML + +### Clone() {#Clone--} +``` +public System.Enum Clone() +``` + + + + +**Returns:** +com.aspose.ms.System.Enum +### CloneTo(T that) {#CloneTo-T-} +``` +public abstract void CloneTo(T that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | T | | + +### CloneTo(System.Enum that) {#CloneTo-com.aspose.ms.System.Enum-} +``` +public void CloneTo(System.Enum that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | com.aspose.ms.System.Enum | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### format(System.Type enumType, Object value, String format) {#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-} +``` +public static String format(System.Type enumType, Object value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### format(Class enumType, long value, String format) {#format-java.lang.Class----long-java.lang.String-} +``` +public static String format(Class enumType, long value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getName(System.Type enumType, Object value) {#getName-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static String getName(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.String +### getName(Class enumType, long value) {#getName-java.lang.Class----long-} +``` +public static String getName(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### getNames(System.Type enumType) {#getNames-com.aspose.ms.System.Type-} +``` +public static String[] getNames(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +java.lang.String[] +### getNames(Class enumType) {#getNames-java.lang.Class----} +``` +public static Collection getNames(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.util.Collection +### getUnderlyingType(System.Type enumType) {#getUnderlyingType-com.aspose.ms.System.Type-} +``` +public static System.Type getUnderlyingType(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Type +### getUnderlyingType(Class enumType) {#getUnderlyingType-java.lang.Class----} +``` +public static Class getUnderlyingType(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.lang.Class +### getValue(Class enumType, String name) {#getValue-java.lang.Class----java.lang.String-} +``` +public static long getValue(Class enumType, String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| nom | java.lang.String | | + +**Returns:** +long +### getValues(System.Type enumType) {#getValues-com.aspose.ms.System.Type-} +``` +public static System.Array getValues(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Array +### get_Caption() {#get-Caption--} +``` +public String get_Caption() +``` + + + + +**Returns:** +java.lang.String +### get_Value() {#get-Value--} +``` +public long get_Value() +``` + + + + +**Returns:** +long +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isDefined(System.Type enumType, Object value) {#isDefined-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static boolean isDefined(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +boolean +### isDefined(System.Type enumType, String value) {#isDefined-com.aspose.ms.System.Type-java.lang.String-} +``` +public static boolean isDefined(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +boolean +### isDefined(System.Type enumType, long value) {#isDefined-com.aspose.ms.System.Type-long-} +``` +public static boolean isDefined(System.Type enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | long | | + +**Returns:** +boolean +### isDefined(Class enumType, long value) {#isDefined-java.lang.Class----long-} +``` +public static boolean isDefined(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parse(System.Type enumType, String value) {#parse-com.aspose.ms.System.Type-java.lang.String-} +``` +public static long parse(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(System.Type enumType, String value, Boolean ignoreCase) {#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-} +``` +public static long parse(System.Type enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### parse(Class enumType, String value) {#parse-java.lang.Class----java.lang.String-} +``` +public static long parse(Class enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(Class enumType, String value, Boolean ignoreCase) {#parse-java.lang.Class----java.lang.String-java.lang.Boolean-} +``` +public static long parse(Class enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### register(System.Enum.AbstractEnum e) {#register-com.aspose.ms.System.Enum.AbstractEnum-} +``` +public static void register(System.Enum.AbstractEnum e) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| e | com.aspose.ms.System.Enum.AbstractEnum | | + +### toObject(System.Type enumType, Object value) {#toObject-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static Object toObject(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.Object +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### toString(Class enumType, long value) {#toString-java.lang.Class----long-} +``` +public static String toString(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/hibcpasrecord/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/hibcpasrecord/_index.md new file mode 100644 index 000000000..3f9a438da --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/hibcpasrecord/_index.md @@ -0,0 +1,202 @@ +--- +title: HIBCPASRecord +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour stocker l'enregistrement HIBC PAS. +type: docs +weight: 21 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/hibcpasrecord/ +--- +**Inheritance:** +java.lang.Object +``` +public class HIBCPASRecord +``` + +Classe pour stocker l'enregistrement HIBC PAS. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [HIBCPASRecord(int dataType, String data)](#HIBCPASRecord-int-java.lang.String-) | Constructeur HIBCPASRecord | +| [HIBCPASRecord()](#HIBCPASRecord--) | Constructeur HIBCPASRecord | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur HIBCPASDataType spécifiée. | +| [getClass()](#getClass--) | | +| [getData()](#getData--) | Identifie les données. | +| [getDataType()](#getDataType--) | Identifie le type de données. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setData(String value)](#setData-java.lang.String-) | Identifie les données. | +| [setDataType(int value)](#setDataType-int-) | Identifie le type de données. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### HIBCPASRecord(int dataType, String data) {#HIBCPASRecord-int-java.lang.String-} +``` +public HIBCPASRecord(int dataType, String data) +``` + + +Constructeur HIBCPASRecord + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dataType | int | Type de données. | +| data | java.lang.String | Chaîne de données. | + +### HIBCPASRecord() {#HIBCPASRecord--} +``` +public HIBCPASRecord() +``` + + +Constructeur HIBCPASRecord + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur HIBCPASDataType spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur HIBCPASDataType à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getData() {#getData--} +``` +public String getData() +``` + + +Identifie les données. + +**Returns:** +java.lang.String +### getDataType() {#getDataType--} +``` +public int getDataType() +``` + + +Identifie le type de données. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setData(String value) {#setData-java.lang.String-} +``` +public void setData(String value) +``` + + +Identifie les données. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setDataType(int value) {#setDataType-int-} +``` +public void setDataType(int value) +``` + + +Identifie le type de données. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/icomplexcodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/icomplexcodetext/_index.md new file mode 100644 index 000000000..2e27e445f --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/icomplexcodetext/_index.md @@ -0,0 +1,52 @@ +--- +title: IComplexCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Interface pour le texte de code complexe utilisé avec ComplexBarcodeGenerator. +type: docs +weight: 40 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/icomplexcodetext/ +---``` +public interface IComplexCodetext +``` + +Interface for complex codetext used with ComplexBarcodeGenerator. +## Methods + +| Method | Description | +| --- | --- | +| [getBarcodeType()](#getBarcodeType--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | | +### getBarcodeType() {#getBarcodeType--} +``` +public abstract BaseEncodeType getBarcodeType() +``` + + + + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public abstract String getConstructedCodetext() +``` + + + + +**Returns:** +java.lang.String +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public abstract void initFromString(String constructedCodetext) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/mailmark1dtype/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/mailmark1dtype/_index.md new file mode 100644 index 000000000..ccec68b3a --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/mailmark1dtype/_index.md @@ -0,0 +1,567 @@ +--- +title: Mailmark1DType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Types de code-barres Mailmark à 4 états +type: docs +weight: 22 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/mailmark1dtype/ +--- +**Inheritance:** +java.lang.Object, com.aspose.ms.System.ValueType, com.aspose.ms.System.Enum +``` +public final class Mailmark1DType extends System.Enum +``` + +Types de code-barres Mailmark à 4 états +## Champs + +| Champ | Description | +| --- | --- | +| [EnumSeparatorCharArray](#EnumSeparatorCharArray) | | +| [Type_C](#Type-C) | Code-barres Mailmark à 4 états C | +| [Type_L](#Type-L) | Code-barres Mailmark à 4 états L | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [Clone()](#Clone--) | | +| [CloneTo(T that)](#CloneTo-T-) | | +| [CloneTo(System.Enum that)](#CloneTo-com.aspose.ms.System.Enum-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [format(System.Type enumType, Object value, String format)](#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-) | | +| [format(Class enumType, long value, String format)](#format-java.lang.Class----long-java.lang.String-) | | +| [getClass()](#getClass--) | | +| [getName(System.Type enumType, Object value)](#getName-com.aspose.ms.System.Type-java.lang.Object-) | | +| [getName(Class enumType, long value)](#getName-java.lang.Class----long-) | | +| [getNames(System.Type enumType)](#getNames-com.aspose.ms.System.Type-) | | +| [getNames(Class enumType)](#getNames-java.lang.Class----) | | +| [getUnderlyingType(System.Type enumType)](#getUnderlyingType-com.aspose.ms.System.Type-) | | +| [getUnderlyingType(Class enumType)](#getUnderlyingType-java.lang.Class----) | | +| [getValue(Class enumType, String name)](#getValue-java.lang.Class----java.lang.String-) | | +| [getValues(System.Type enumType)](#getValues-com.aspose.ms.System.Type-) | | +| [get_Caption()](#get-Caption--) | | +| [get_Value()](#get-Value--) | | +| [hashCode()](#hashCode--) | | +| [isDefined(System.Type enumType, Object value)](#isDefined-com.aspose.ms.System.Type-java.lang.Object-) | | +| [isDefined(System.Type enumType, String value)](#isDefined-com.aspose.ms.System.Type-java.lang.String-) | | +| [isDefined(System.Type enumType, long value)](#isDefined-com.aspose.ms.System.Type-long-) | | +| [isDefined(Class enumType, long value)](#isDefined-java.lang.Class----long-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parse(System.Type enumType, String value)](#parse-com.aspose.ms.System.Type-java.lang.String-) | | +| [parse(System.Type enumType, String value, Boolean ignoreCase)](#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-) | | +| [parse(Class enumType, String value)](#parse-java.lang.Class----java.lang.String-) | | +| [parse(Class enumType, String value, Boolean ignoreCase)](#parse-java.lang.Class----java.lang.String-java.lang.Boolean-) | | +| [register(System.Enum.AbstractEnum e)](#register-com.aspose.ms.System.Enum.AbstractEnum-) | | +| [toObject(System.Type enumType, Object value)](#toObject-com.aspose.ms.System.Type-java.lang.Object-) | | +| [toString()](#toString--) | | +| [toString(Class enumType, long value)](#toString-java.lang.Class----long-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### EnumSeparatorCharArray {#EnumSeparatorCharArray} +``` +public static final char[] EnumSeparatorCharArray +``` + + +### Type_C {#Type-C} +``` +public static final int Type_C +``` + + +Code-barres Mailmark à 4 états C + +### Type_L {#Type-L} +``` +public static final int Type_L +``` + + +Code-barres Mailmark à 4 états L + +### Clone() {#Clone--} +``` +public System.Enum Clone() +``` + + + + +**Returns:** +com.aspose.ms.System.Enum +### CloneTo(T that) {#CloneTo-T-} +``` +public abstract void CloneTo(T that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | T | | + +### CloneTo(System.Enum that) {#CloneTo-com.aspose.ms.System.Enum-} +``` +public void CloneTo(System.Enum that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | com.aspose.ms.System.Enum | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### format(System.Type enumType, Object value, String format) {#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-} +``` +public static String format(System.Type enumType, Object value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### format(Class enumType, long value, String format) {#format-java.lang.Class----long-java.lang.String-} +``` +public static String format(Class enumType, long value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getName(System.Type enumType, Object value) {#getName-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static String getName(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.String +### getName(Class enumType, long value) {#getName-java.lang.Class----long-} +``` +public static String getName(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### getNames(System.Type enumType) {#getNames-com.aspose.ms.System.Type-} +``` +public static String[] getNames(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +java.lang.String[] +### getNames(Class enumType) {#getNames-java.lang.Class----} +``` +public static Collection getNames(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.util.Collection +### getUnderlyingType(System.Type enumType) {#getUnderlyingType-com.aspose.ms.System.Type-} +``` +public static System.Type getUnderlyingType(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Type +### getUnderlyingType(Class enumType) {#getUnderlyingType-java.lang.Class----} +``` +public static Class getUnderlyingType(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.lang.Class +### getValue(Class enumType, String name) {#getValue-java.lang.Class----java.lang.String-} +``` +public static long getValue(Class enumType, String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| nom | java.lang.String | | + +**Returns:** +long +### getValues(System.Type enumType) {#getValues-com.aspose.ms.System.Type-} +``` +public static System.Array getValues(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Array +### get_Caption() {#get-Caption--} +``` +public String get_Caption() +``` + + + + +**Returns:** +java.lang.String +### get_Value() {#get-Value--} +``` +public long get_Value() +``` + + + + +**Returns:** +long +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isDefined(System.Type enumType, Object value) {#isDefined-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static boolean isDefined(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +boolean +### isDefined(System.Type enumType, String value) {#isDefined-com.aspose.ms.System.Type-java.lang.String-} +``` +public static boolean isDefined(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +boolean +### isDefined(System.Type enumType, long value) {#isDefined-com.aspose.ms.System.Type-long-} +``` +public static boolean isDefined(System.Type enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | long | | + +**Returns:** +boolean +### isDefined(Class enumType, long value) {#isDefined-java.lang.Class----long-} +``` +public static boolean isDefined(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parse(System.Type enumType, String value) {#parse-com.aspose.ms.System.Type-java.lang.String-} +``` +public static long parse(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(System.Type enumType, String value, Boolean ignoreCase) {#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-} +``` +public static long parse(System.Type enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### parse(Class enumType, String value) {#parse-java.lang.Class----java.lang.String-} +``` +public static long parse(Class enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(Class enumType, String value, Boolean ignoreCase) {#parse-java.lang.Class----java.lang.String-java.lang.Boolean-} +``` +public static long parse(Class enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### register(System.Enum.AbstractEnum e) {#register-com.aspose.ms.System.Enum.AbstractEnum-} +``` +public static void register(System.Enum.AbstractEnum e) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| e | com.aspose.ms.System.Enum.AbstractEnum | | + +### toObject(System.Type enumType, Object value) {#toObject-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static Object toObject(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.Object +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### toString(Class enumType, long value) {#toString-java.lang.Class----long-} +``` +public static String toString(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/mailmark2dcodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/mailmark2dcodetext/_index.md new file mode 100644 index 000000000..69a40b5d5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/mailmark2dcodetext/_index.md @@ -0,0 +1,476 @@ +--- +title: Mailmark2DCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le texte intégré dans le code Royal Mail 2D Mailmark. +type: docs +weight: 23 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/mailmark2dcodetext/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.barcode.complexbarcode.IComplexCodetext](../../com.aspose.barcode.complexbarcode/icomplexcodetext) +``` +public class Mailmark2DCodetext implements IComplexCodetext +``` + +Classe pour encoder et décoder le texte intégré dans le code Royal Mail 2D Mailmark. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [Mailmark2DCodetext()](#Mailmark2DCodetext--) | Créer une instance par défaut de la classe Mailmark2DCodetext. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBarcodeType()](#getBarcodeType--) | Obtient le type de code-barres. | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construire le texte de code à partir des données Mailmark. | +| [getCustomerContent()](#getCustomerContent--) | Espace optionnel à l’usage du client. | +| [getCustomerContentEncodeMode()](#getCustomerContentEncodeMode--) | Mode d’encodage du code-barres Datamatrix. | +| [getDataMatrixType()](#getDataMatrixType--) | Le type Mailmark 2D définit la taille du code-barres Data Matrix. | +| [getDestinationPostCodeAndDPS()](#getDestinationPostCodeAndDPS--) | Contient le code postal de l’adresse de livraison avec le DPS. Si intérieur, le code postal/DP contient le nombre de caractères suivant. | +| [getInformationTypeID()](#getInformationTypeID--) | Identifie la charge utile du code-barres Mailmark de Royal Mail pour chaque type de produit. | +| [getItemID()](#getItemID--) | Identifie l’élément unique au sein de l’ID de la chaîne d’approvisionnement. | +| [getRTSFlag()](#getRTSFlag--) | Indicateur qui indique le niveau de service Retour à l'expéditeur demandé. | +| [getReturnToSenderPostCode()](#getReturnToSenderPostCode--) | Contient le code postal Retour à l'expéditeur mais sans DPS. | +| [getSupplyChainID()](#getSupplyChainID--) | Identifie le groupe unique de clients impliqués dans l'envoi. | +| [getUPUCountryID()](#getUPUCountryID--) | Identifie l'ID pays UPU. Longueur maximale : 4 caractères. | +| [getVersionID()](#getVersionID--) | Identifie la version du code-barres pertinente pour chaque ID de type d'information. | +| [getclass()](#getclass--) | Identifie la classe de l'élément. | +| [hashCode()](#hashCode--) | | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise les données Mailmark à partir du texte de code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setCustomerContent(String value)](#setCustomerContent-java.lang.String-) | Espace optionnel à l’usage du client. | +| [setCustomerContentEncodeMode(DataMatrixEncodeMode value)](#setCustomerContentEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-) | Mode d’encodage du code-barres Datamatrix. | +| [setDataMatrixType(Mailmark2DType value)](#setDataMatrixType-com.aspose.barcode.complexbarcode.Mailmark2DType-) | Le type Mailmark 2D définit la taille du code-barres Data Matrix. | +| [setDestinationPostCodeAndDPS(String value)](#setDestinationPostCodeAndDPS-java.lang.String-) | Contient le code postal de l’adresse de livraison avec le DPS. Si intérieur, le code postal/DP contient le nombre de caractères suivant. | +| [setInformationTypeID(String value)](#setInformationTypeID-java.lang.String-) | Identifie la charge utile du code-barres Mailmark de Royal Mail pour chaque type de produit. | +| [setItemID(int value)](#setItemID-int-) | Identifie l’élément unique au sein de l’ID de la chaîne d’approvisionnement. | +| [setRTSFlag(String value)](#setRTSFlag-java.lang.String-) | Indicateur qui indique le niveau de service Retour à l'expéditeur demandé. | +| [setReturnToSenderPostCode(String value)](#setReturnToSenderPostCode-java.lang.String-) | Contient le code postal Retour à l'expéditeur mais sans DPS. | +| [setSupplyChainID(int value)](#setSupplyChainID-int-) | Identifie le groupe unique de clients impliqués dans l'envoi. | +| [setUPUCountryID(String value)](#setUPUCountryID-java.lang.String-) | Identifie l'ID pays UPU. Longueur maximale : 4 caractères. | +| [setVersionID(String value)](#setVersionID-java.lang.String-) | Identifie la version du code-barres pertinente pour chaque ID de type d'information. | +| [setclass(String value)](#setclass-java.lang.String-) | Identifie la classe de l'élément. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Mailmark2DCodetext() {#Mailmark2DCodetext--} +``` +public Mailmark2DCodetext() +``` + + +Créer une instance par défaut de la classe Mailmark2DCodetext. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBarcodeType() {#getBarcodeType--} +``` +public BaseEncodeType getBarcodeType() +``` + + +Obtient le type de code-barres. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public String getConstructedCodetext() +``` + + +Construire le texte de code à partir des données Mailmark. + +**Returns:** +java.lang.String - Texte de code construit +### getCustomerContent() {#getCustomerContent--} +``` +public String getCustomerContent() +``` + + +Espace optionnel à l'usage du client. Longueur maximale par type : Type 7 : 6 caractères Type 9 : 45 caractères Type 29 : 25 caractères + +**Returns:** +java.lang.String - Contenu client +### getCustomerContentEncodeMode() {#getCustomerContentEncodeMode--} +``` +public DataMatrixEncodeMode getCustomerContentEncodeMode() +``` + + +Mode d'encodage du code-barres Datamatrix. Valeur par défaut : DataMatrixEncodeMode.C40. + +**Returns:** +[DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) - Encode mode of Datamatrix barcode. +### getDataMatrixType() {#getDataMatrixType--} +``` +public Mailmark2DType getDataMatrixType() +``` + + +Le type Mailmark 2D définit la taille du code-barres Data Matrix. + +**Returns:** +[Mailmark2DType](../../com.aspose.barcode.complexbarcode/mailmark2dtype) - Size of Data Matrix barcode +### getDestinationPostCodeAndDPS() {#getDestinationPostCodeAndDPS--} +``` +public String getDestinationPostCodeAndDPS() +``` + + +Contient le code postal de l'adresse de livraison avec DPS. Si l'adresse est intérieure, le code postal/DP comporte le nombre de caractères suivant : Zone (1 ou 2 caractères) District (1 ou 2 caractères) Secteur (1 caractère) Unité (2 caractères) DPS (2 caractères). Le code postal et le DPS doivent être conformes à un format PAF® valide. + +**Returns:** +java.lang.String - le code postal de l'adresse de livraison avec DPS +### getInformationTypeID() {#getInformationTypeID--} +``` +public String getInformationTypeID() +``` + + +Identifie la charge utile du code-barres Royal Mail Mailmark pour chaque type de produit. Valeurs valides : '0' - Domestique trié et non trié 'A' - Affranchissement en ligne 'B' - Marquage 'C' - Consolidation + +**Returns:** +java.lang.String - ID du type d'information +### getItemID() {#getItemID--} +``` +public int getItemID() +``` + + +Identifie l'élément unique au sein de l'ID de la chaîne d'approvisionnement. Chaque code-barres Mailmark doit porter un ID afin d'être identifié de manière unique pendant au moins 90 jours. Valeur maximale : 99999999. + +**Returns:** +int - élément au sein de l'ID de la chaîne d'approvisionnement +### getRTSFlag() {#getRTSFlag--} +``` +public String getRTSFlag() +``` + + +Indicateur qui indique le niveau de service Retour à l'expéditeur demandé. + +**Returns:** +java.lang.String - Indicateur RTS +### getReturnToSenderPostCode() {#getReturnToSenderPostCode--} +``` +public String getReturnToSenderPostCode() +``` + + +Contient le code postal Retour à l'expéditeur mais sans DPS. Le code postal (sans DPS) doit être conforme à un format PAF®. + +**Returns:** +java.lang.String - Code postal Retour à l'expéditeur sans DPS +### getSupplyChainID() {#getSupplyChainID--} +``` +public int getSupplyChainID() +``` + + +Identifie le groupe unique de clients impliqués dans l'envoi. Valeur maximale : 9999999. + +**Returns:** +int - ID de la chaîne d'approvisionnement +### getUPUCountryID() {#getUPUCountryID--} +``` +public String getUPUCountryID() +``` + + +Identifie l'ID pays UPU. Longueur maximale : 4 caractères. + +**Returns:** +java.lang.String - ID du pays +### getVersionID() {#getVersionID--} +``` +public String getVersionID() +``` + + +Identifie la version du code-barres pertinente pour chaque ID de type d'information. Valeurs valides : actuellement '1'. '0' et '2' à '9' ainsi que 'A' à 'Z' sont réservés pour une utilisation future éventuelle. + +**Returns:** +java.lang.String - ID de version +### getclass() {#getclass--} +``` +public String getclass() +``` + + +Identifie la classe de l'élément. Valeurs valides : '1' - 1C (Vente au détail) '2' - 2C (Vente au détail) '3' - Économie (Vente au détail) '5' - Différé (Vente au détail) '8' - Premium (Accès réseau) '9' - Standard (Accès réseau) + +**Returns:** +java.lang.String - classe de l'élément +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public void initFromString(String constructedCodetext) +``` + + +Initialise les données Mailmark à partir du texte de code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setCustomerContent(String value) {#setCustomerContent-java.lang.String-} +``` +public void setCustomerContent(String value) +``` + + +Espace optionnel à l'usage du client. Longueur maximale par type : Type 7 : 6 caractères Type 9 : 45 caractères Type 29 : 25 caractères + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Customer content | + +### setCustomerContentEncodeMode(DataMatrixEncodeMode value) {#setCustomerContentEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-} +``` +public void setCustomerContentEncodeMode(DataMatrixEncodeMode value) +``` + + +Encode mode of Datamatrix barcode. Default value: EncodeMode.C40. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) | Mode d’encodage du code-barres Datamatrix. | + +### setDataMatrixType(Mailmark2DType value) {#setDataMatrixType-com.aspose.barcode.complexbarcode.Mailmark2DType-} +``` +public void setDataMatrixType(Mailmark2DType value) +``` + + +Le type Mailmark 2D définit la taille du code-barres Data Matrix. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Mailmark2DType](../../com.aspose.barcode.complexbarcode/mailmark2dtype) | Size of Data Matrix barcode | + +### setDestinationPostCodeAndDPS(String value) {#setDestinationPostCodeAndDPS-java.lang.String-} +``` +public void setDestinationPostCodeAndDPS(String value) +``` + + +Contient le code postal de l'adresse de livraison avec DPS. Si l'adresse est intérieure, le code postal/DP comporte le nombre de caractères suivant : Zone (1 ou 2 caractères) District (1 ou 2 caractères) Secteur (1 caractère) Unité (2 caractères) DPS (2 caractères). Le code postal et le DPS doivent être conformes à un format PAF® valide. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | the Postcode of the Delivery Address with DPS | + +### setInformationTypeID(String value) {#setInformationTypeID-java.lang.String-} +``` +public void setInformationTypeID(String value) +``` + + +Identifie la charge utile du code-barres Royal Mail Mailmark pour chaque type de produit. Valeurs valides : '0' - Domestique trié et non trié 'A' - Affranchissement en ligne 'B' - Marquage 'C' - Consolidation + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Information type ID | + +### setItemID(int value) {#setItemID-int-} +``` +public void setItemID(int value) +``` + + +Identifie l'élément unique au sein de l'ID de la chaîne d'approvisionnement. Chaque code-barres Mailmark doit porter un ID afin d'être identifié de manière unique pendant au moins 90 jours. Valeur maximale : 99999999. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | item within the Supply Chain ID | + +### setRTSFlag(String value) {#setRTSFlag-java.lang.String-} +``` +public void setRTSFlag(String value) +``` + + +Indicateur qui indique le niveau de service Retour à l'expéditeur demandé. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setReturnToSenderPostCode(String value) {#setReturnToSenderPostCode-java.lang.String-} +``` +public void setReturnToSenderPostCode(String value) +``` + + +Contient le code postal Retour à l'expéditeur mais sans DPS. Le code postal (sans DPS) doit être conforme à un format PAF®. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Return to Sender Post Code but no DPS | + +### setSupplyChainID(int value) {#setSupplyChainID-int-} +``` +public void setSupplyChainID(int value) +``` + + +Identifie le groupe unique de clients impliqués dans l'envoi. Valeur maximale : 9999999. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Supply chain ID | + +### setUPUCountryID(String value) {#setUPUCountryID-java.lang.String-} +``` +public void setUPUCountryID(String value) +``` + + +Identifie l'ID pays UPU. Longueur maximale : 4 caractères. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Country ID | + +### setVersionID(String value) {#setVersionID-java.lang.String-} +``` +public void setVersionID(String value) +``` + + +Identifie la version du code-barres pertinente pour chaque ID de type d'information. Valeurs valides : actuellement '1'. '0' et '2' à '9' ainsi que 'A' à 'Z' sont réservés pour une utilisation future éventuelle. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Version ID | + +### setclass(String value) {#setclass-java.lang.String-} +``` +public void setclass(String value) +``` + + +Identifie la classe de l'élément. Valeurs valides : '1' - 1C (Vente au détail) '2' - 2C (Vente au détail) '3' - Économie (Vente au détail) '5' - Différé (Vente au détail) '8' - Premium (Accès réseau) '9' - Standard (Accès réseau) + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | class of the item | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/mailmark2dtype/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/mailmark2dtype/_index.md new file mode 100644 index 000000000..577fd4056 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/mailmark2dtype/_index.md @@ -0,0 +1,268 @@ +--- +title: Mailmark2DType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Le type de Mailmark 2D définit la taille du code-barres Data Matrix +type: docs +weight: 43 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/mailmark2dtype/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum Mailmark2DType extends Enum +``` + +Le type de Mailmark 2D définit la taille du code-barres Data Matrix +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Détermination automatique | +| [TYPE_29](#TYPE-29) | 16 x 48 modules | +| [TYPE_7](#TYPE-7) | 24 x 24 modules | +| [TYPE_9](#TYPE-9) | 32 x 32 modules | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final Mailmark2DType AUTO +``` + + +Détermination automatique + +### TYPE_29 {#TYPE-29} +``` +public static final Mailmark2DType TYPE_29 +``` + + +16 x 48 modules + +### TYPE_7 {#TYPE-7} +``` +public static final Mailmark2DType TYPE_7 +``` + + +24 x 24 modules + +### TYPE_9 {#TYPE-9} +``` +public static final Mailmark2DType TYPE_9 +``` + + +32 x 32 modules + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static Mailmark2DType valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[Mailmark2DType](../../com.aspose.barcode.complexbarcode/mailmark2dtype) +### values() {#values--} +``` +public static Mailmark2DType[] values() +``` + + + + +**Returns:** +com.aspose.barcode.complexbarcode.Mailmark2DType[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/mailmarkcodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/mailmarkcodetext/_index.md new file mode 100644 index 000000000..9f74b3567 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/mailmarkcodetext/_index.md @@ -0,0 +1,326 @@ +--- +title: MailmarkCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le texte intégré dans le code Royal Mailmark à 4 états. +type: docs +weight: 24 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/mailmarkcodetext/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.barcode.complexbarcode.IComplexCodetext](../../com.aspose.barcode.complexbarcode/icomplexcodetext) +``` +public final class MailmarkCodetext implements IComplexCodetext +``` + +Classe pour encoder et décoder le texte intégré dans le code Royal Mailmark à 4 états. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MailmarkCodetext()](#MailmarkCodetext--) | Initialise une nouvelle instance de la classe MailmarkCodetext. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBarcodeType()](#getBarcodeType--) | Obtient le type de code-barres. | +| [getClass()](#getClass--) | | +| [getClass_()](#getClass---) | "0" - Null ou Test "1" - 1C (Vente au détail) "2" - 2C (Vente au détail) "3" - 3C (Vente au détail) "4" - Premium (Mail de Publication au détail) (pour une utilisation future éventuelle) "5" - Différé (Vente au détail) "6" - Air (Vente au détail) (pour une utilisation future éventuelle) "7" - Surface (Vente au détail) (pour une utilisation future éventuelle) "8" - Premium (Accès réseau) "9" - Standard (Accès réseau) | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construire le texte de code à partir des données Mailmark. | +| [getDestinationPostCodePlusDPS()](#getDestinationPostCodePlusDPS--) | Le PC et le DP doivent être conformes à un format PAF. | +| [getFormat()](#getFormat--) | "0" \\u2013 Null ou Test "1" \\u2013 Lettre "2" \\u2013 Grande Lettre | +| [getItemID()](#getItemID--) | La valeur maximale est 99999999. | +| [getSupplychainID()](#getSupplychainID--) | Les valeurs maximales sont 99 pour le code-barres C et 999999 pour le code-barres L. | +| [getVersionID()](#getVersionID--) | Actuellement "1" \\u2013 Pour le code-barres Mailmark (0 et 2 à 9 ainsi que A à Z réservés pour une utilisation future) | +| [hashCode()](#hashCode--) | | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise les données Mailmark à partir du texte de code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setClass(String value)](#setClass-java.lang.String-) | "0" - Null ou Test "1" - 1C (Vente au détail) "2" - 2C (Vente au détail) "3" - 3C (Vente au détail) "4" - Premium (Mail de Publication au détail) (pour une utilisation future éventuelle) "5" - Différé (Vente au détail) "6" - Air (Vente au détail) (pour une utilisation future éventuelle) "7" - Surface (Vente au détail) (pour une utilisation future éventuelle) "8" - Premium (Accès réseau) "9" - Standard (Accès réseau) | +| [setDestinationPostCodePlusDPS(String value)](#setDestinationPostCodePlusDPS-java.lang.String-) | Le PC et le DP doivent être conformes à un format PAF. | +| [setFormat(int value)](#setFormat-int-) | "0" \\u2013 Null ou Test "1" \\u2013 Lettre "2" \\u2013 Grande Lettre | +| [setItemID(int value)](#setItemID-int-) | La valeur maximale est 99999999. | +| [setSupplychainID(int value)](#setSupplychainID-int-) | Les valeurs maximales sont 99 pour le code-barres C et 999999 pour le code-barres L. | +| [setVersionID(int value)](#setVersionID-int-) | Actuellement "1" \\u2013 Pour le code-barres Mailmark (0 et 2 à 9 ainsi que A à Z réservés pour une utilisation future) | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MailmarkCodetext() {#MailmarkCodetext--} +``` +public MailmarkCodetext() +``` + + +Initialise une nouvelle instance de la classe MailmarkCodetext. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBarcodeType() {#getBarcodeType--} +``` +public BaseEncodeType getBarcodeType() +``` + + +Obtient le type de code-barres. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getClass_() {#getClass---} +``` +public String getClass_() +``` + + +"0" - Null ou Test "1" - 1C (Vente au détail) "2" - 2C (Vente au détail) "3" - 3C (Vente au détail) "4" - Premium (Mail de Publication au détail) (pour une utilisation future éventuelle) "5" - Différé (Vente au détail) "6" - Air (Vente au détail) (pour une utilisation future éventuelle) "7" - Surface (Vente au détail) (pour une utilisation future éventuelle) "8" - Premium (Accès réseau) "9" - Standard (Accès réseau) + +**Returns:** +java.lang.String +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public String getConstructedCodetext() +``` + + +Construire le texte de code à partir des données Mailmark. + +**Returns:** +java.lang.String - Texte de code construit +### getDestinationPostCodePlusDPS() {#getDestinationPostCodePlusDPS--} +``` +public String getDestinationPostCodePlusDPS() +``` + + +Le PC et le DP doivent être conformes à un format PAF. Chaîne de neuf caractères désignant l’international "XY11 " (notez les 5 espaces de fin) ou un motif de caractères désignant un code de tri domestique. Un code de tri domestique se compose d’un code postal extérieur, d’un code postal intérieur et d’un suffixe de point de livraison. + +**Returns:** +java.lang.String +### getFormat() {#getFormat--} +``` +public int getFormat() +``` + + +"0" \\u2013 Null ou Test "1" \\u2013 Lettre "2" \\u2013 Grande Lettre + +**Returns:** +int +### getItemID() {#getItemID--} +``` +public int getItemID() +``` + + +La valeur maximale est 99999999. + +**Returns:** +int +### getSupplychainID() {#getSupplychainID--} +``` +public int getSupplychainID() +``` + + +Les valeurs maximales sont 99 pour le code-barres C et 999999 pour le code-barres L. + +**Returns:** +int +### getVersionID() {#getVersionID--} +``` +public int getVersionID() +``` + + +Actuellement "1" \\u2013 Pour le code-barres Mailmark (0 et 2 à 9 ainsi que A à Z réservés pour une utilisation future) + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public void initFromString(String constructedCodetext) +``` + + +Initialise les données Mailmark à partir du texte de code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setClass(String value) {#setClass-java.lang.String-} +``` +public void setClass(String value) +``` + + +"0" - Null ou Test "1" - 1C (Vente au détail) "2" - 2C (Vente au détail) "3" - 3C (Vente au détail) "4" - Premium (Mail de Publication au détail) (pour une utilisation future éventuelle) "5" - Différé (Vente au détail) "6" - Air (Vente au détail) (pour une utilisation future éventuelle) "7" - Surface (Vente au détail) (pour une utilisation future éventuelle) "8" - Premium (Accès réseau) "9" - Standard (Accès réseau) + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setDestinationPostCodePlusDPS(String value) {#setDestinationPostCodePlusDPS-java.lang.String-} +``` +public void setDestinationPostCodePlusDPS(String value) +``` + + +Le PC et le DP doivent être conformes à un format PAF. Chaîne de neuf caractères désignant l’international "XY11 " (notez les 5 espaces de fin) ou un motif de caractères désignant un code de tri domestique. Un code de tri domestique se compose d’un code postal extérieur, d’un code postal intérieur et d’un suffixe de point de livraison. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setFormat(int value) {#setFormat-int-} +``` +public void setFormat(int value) +``` + + +"0" \\u2013 Null ou Test "1" \\u2013 Lettre "2" \\u2013 Grande Lettre + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setItemID(int value) {#setItemID-int-} +``` +public void setItemID(int value) +``` + + +La valeur maximale est 99999999. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setSupplychainID(int value) {#setSupplychainID-int-} +``` +public void setSupplychainID(int value) +``` + + +Les valeurs maximales sont 99 pour le code-barres C et 999999 pour le code-barres L. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setVersionID(int value) {#setVersionID-int-} +``` +public void setVersionID(int value) +``` + + +Actuellement "1" \\u2013 Pour le code-barres Mailmark (0 et 2 à 9 ainsi que A à Z réservés pour une utilisation future) + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/mandatoryfields/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/mandatoryfields/_index.md new file mode 100644 index 000000000..fc4c68e9f --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/mandatoryfields/_index.md @@ -0,0 +1,635 @@ +--- +title: USADriveIdCodetext.MandatoryFields +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Champs des éléments obligatoires de la carte +type: docs +weight: 10 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext.mandatoryfields/ +--- +**Inheritance:** +java.lang.Object +``` +public static class USADriveIdCodetext.MandatoryFields +``` + +Éléments obligatoires (champs) de la carte +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MandatoryFields()](#MandatoryFields--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAddressCity()](#getAddressCity--) | DAI, partie ville de l'adresse du titulaire de la carte, DL/ID, V20ANS | +| [getAddressPostalCode()](#getAddressPostalCode--) | DAK, partie code postal de l'adresse du titulaire de la carte aux États‑Unis et au Canada. | +| [getAddressState()](#getAddressState--) | DAJ, partie État de l'adresse du titulaire de la carte, DL/ID, F2A | +| [getAddressStreet1()](#getAddressStreet1--) | DAG, partie rue de l'adresse du titulaire de la carte, DL/ID, V35ANS | +| [getClass()](#getClass--) | | +| [getCountryIdentification()](#getCountryIdentification--) | DCG, pays où le DL/ID est délivré. | +| [getCustomerIDNumber()](#getCustomerIDNumber--) | DAQ, le numéro attribué ou calculé par l'autorité émettrice, DL/ID, V25ANS | +| [getDateOfBirth()](#getDateOfBirth--) | DBB, date à laquelle le document a été délivré, MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada, DL/ID, F8N | +| [getDocumentDiscriminator()](#getDocumentDiscriminator--) | DCF, le numéro doit identifier de manière unique un document particulier délivré à ce client parmi d'autres qui pourraient avoir été délivrés par le passé. | +| [getEndorsementCodes()](#getEndorsementCodes--) | DCD, codes d'endossement spécifiques à la juridiction, DL, V5ANS | +| [getEyeColor()](#getEyeColor--) | DAY, couleur des yeux du titulaire de la carte. | +| [getFamilyName()](#getFamilyName--) | DCS, nom de famille du titulaire de la carte, DL/ID, V40ANS | +| [getFamilyNameTruncation()](#getFamilyNameTruncation--) | DDE, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A | +| [getFirstName()](#getFirstName--) | DAC, prénom du titulaire de la carte, DL/ID, V40ANS | +| [getFirstNameTruncation()](#getFirstNameTruncation--) | DDF, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A | +| [getHeight()](#getHeight--) | DAU, taille du titulaire de la carte. | +| [getMiddleName()](#getMiddleName--) | DAD, deuxième(s) prénom(s) du titulaire de la carte. | +| [getMiddleNameTruncation()](#getMiddleNameTruncation--) | DDG, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A | +| [getRestrictionCodes()](#getRestrictionCodes--) | DCB, codes de restrictions spécifiques à la juridiction, DL, V12ANS | +| [getSex()](#getSex--) | DBC, sexe du titulaire de la carte. | +| [getVehicleClass()](#getVehicleClass--) | DCA, code de classe / groupe de véhicule spécifique à la juridiction, DL, V6ANS | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAddressCity(String value)](#setAddressCity-java.lang.String-) | DAI, partie ville de l'adresse du titulaire de la carte, DL/ID, V20ANS | +| [setAddressPostalCode(String value)](#setAddressPostalCode-java.lang.String-) | DAK, partie code postal de l'adresse du titulaire de la carte aux États‑Unis et au Canada. | +| [setAddressState(String value)](#setAddressState-java.lang.String-) | DAJ, partie État de l'adresse du titulaire de la carte, DL/ID, F2A | +| [setAddressStreet1(String value)](#setAddressStreet1-java.lang.String-) | DAG, partie rue de l'adresse du titulaire de la carte, DL/ID, V35ANS | +| [setCountryIdentification(USADriveIdCountry value)](#setCountryIdentification-com.aspose.barcode.complexbarcode.USADriveIdCountry-) | DCG, pays où le DL/ID est délivré. | +| [setCustomerIDNumber(String value)](#setCustomerIDNumber-java.lang.String-) | DAQ, le numéro attribué ou calculé par l'autorité émettrice, DL/ID, V25ANS | +| [setDateOfBirth(LocalDate value)](#setDateOfBirth-java.time.LocalDate-) | DBB, date à laquelle le document a été délivré, MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada, DL/ID, F8N | +| [setDocumentDiscriminator(String value)](#setDocumentDiscriminator-java.lang.String-) | DCF, le numéro doit identifier de manière unique un document particulier délivré à ce client parmi d'autres qui pourraient avoir été délivrés par le passé. | +| [setEndorsementCodes(String value)](#setEndorsementCodes-java.lang.String-) | DCD, codes d'endossement spécifiques à la juridiction, DL, V5ANS | +| [setEyeColor(USADriveIdEyeColor value)](#setEyeColor-com.aspose.barcode.complexbarcode.USADriveIdEyeColor-) | DAY, couleur des yeux du titulaire de la carte. | +| [setFamilyName(String value)](#setFamilyName-java.lang.String-) | DCS, nom de famille du titulaire de la carte, DL/ID, V40ANS | +| [setFamilyNameTruncation(String value)](#setFamilyNameTruncation-java.lang.String-) | DDE, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A | +| [setFirstName(String value)](#setFirstName-java.lang.String-) | DAC, prénom du titulaire de la carte, DL/ID, V40ANS | +| [setFirstNameTruncation(String value)](#setFirstNameTruncation-java.lang.String-) | DDF, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A | +| [setHeight(String value)](#setHeight-java.lang.String-) | DAU, taille du titulaire de la carte. | +| [setMiddleName(String value)](#setMiddleName-java.lang.String-) | DAD, deuxième(s) prénom(s) du titulaire de la carte. | +| [setMiddleNameTruncation(String value)](#setMiddleNameTruncation-java.lang.String-) | DDG, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A | +| [setRestrictionCodes(String value)](#setRestrictionCodes-java.lang.String-) | DCB, codes de restrictions spécifiques à la juridiction, DL, V12ANS | +| [setSex(USADriveIdSex value)](#setSex-com.aspose.barcode.complexbarcode.USADriveIdSex-) | DBC, sexe du titulaire de la carte. | +| [setVehicleClass(String value)](#setVehicleClass-java.lang.String-) | DCA, code de classe / groupe de véhicule spécifique à la juridiction, DL, V6ANS | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MandatoryFields() {#MandatoryFields--} +``` +public MandatoryFields() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAddressCity() {#getAddressCity--} +``` +public final String getAddressCity() +``` + + +DAI, partie ville de l'adresse du titulaire de la carte, DL/ID, V20ANS + +**Returns:** +java.lang.String +### getAddressPostalCode() {#getAddressPostalCode--} +``` +public final String getAddressPostalCode() +``` + + +DAK, partie code postal de l'adresse du titulaire de la carte aux États‑Unis et au Canada. Si la partie finale du code postal aux États‑Unis n'est pas connue, des zéros seront utilisés pour remplir la suite de chiffres jusqu'à 9 chiffres, DL/ID, F11ANS + +**Returns:** +java.lang.String +### getAddressState() {#getAddressState--} +``` +public final String getAddressState() +``` + + +DAJ, partie État de l'adresse du titulaire de la carte, DL/ID, F2A + +**Returns:** +java.lang.String +### getAddressStreet1() {#getAddressStreet1--} +``` +public final String getAddressStreet1() +``` + + +DAG, partie rue de l'adresse du titulaire de la carte, DL/ID, V35ANS + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCountryIdentification() {#getCountryIdentification--} +``` +public final USADriveIdCountry getCountryIdentification() +``` + + +DCG, Pays dans lequel le DL/ID est délivré. U.S. = USA, Canada = CAN, DL/ID, F3A + +**Returns:** +[USADriveIdCountry](../../com.aspose.barcode.complexbarcode/usadriveidcountry) +### getCustomerIDNumber() {#getCustomerIDNumber--} +``` +public final String getCustomerIDNumber() +``` + + +DAQ, le numéro attribué ou calculé par l'autorité émettrice, DL/ID, V25ANS + +**Returns:** +java.lang.String +### getDateOfBirth() {#getDateOfBirth--} +``` +public final LocalDate getDateOfBirth() +``` + + +DBB, date à laquelle le document a été délivré, MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada, DL/ID, F8N + +**Returns:** +java.time.LocalDate +### getDocumentDiscriminator() {#getDocumentDiscriminator--} +``` +public final String getDocumentDiscriminator() +``` + + +DCF, Le numéro doit identifier de manière unique un document particulier délivré à ce client parmi d'autres qui ont pu être délivrés dans le passé. Ce numéro peut servir à plusieurs fins de discrimination de documents, de numéro d'information d'audit et/ou de contrôle d'inventaire, DL/ID, V25ANS + +**Returns:** +java.lang.String +### getEndorsementCodes() {#getEndorsementCodes--} +``` +public final String getEndorsementCodes() +``` + + +DCD, codes d'endossement spécifiques à la juridiction, DL, V5ANS + +**Returns:** +java.lang.String +### getEyeColor() {#getEyeColor--} +``` +public final USADriveIdEyeColor getEyeColor() +``` + + +DAY, Couleur des yeux du titulaire de la carte. (codes ANSI D-20). DL/ID, F3A + +**Returns:** +[USADriveIdEyeColor](../../com.aspose.barcode.complexbarcode/usadriveideyecolor) +### getFamilyName() {#getFamilyName--} +``` +public final String getFamilyName() +``` + + +DCS, nom de famille du titulaire de la carte, DL/ID, V40ANS + +**Returns:** +java.lang.String +### getFamilyNameTruncation() {#getFamilyNameTruncation--} +``` +public final String getFamilyNameTruncation() +``` + + +DDE, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A + +**Returns:** +java.lang.String +### getFirstName() {#getFirstName--} +``` +public final String getFirstName() +``` + + +DAC, prénom du titulaire de la carte, DL/ID, V40ANS + +**Returns:** +java.lang.String +### getFirstNameTruncation() {#getFirstNameTruncation--} +``` +public final String getFirstNameTruncation() +``` + + +DDF, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A + +**Returns:** +java.lang.String +### getHeight() {#getHeight--} +``` +public final String getHeight() +``` + + +DAU, Taille du titulaire de la carte. Pouces (in) : nombre de pouces suivi de " in" ex. 6'1'' = "073 in" Centimètres(cm) : nombre de centimètres suivi de " cm" ex. 181 centimètres="181 cm" , DL/ID, F6ANS + +**Returns:** +java.lang.String +### getMiddleName() {#getMiddleName--} +``` +public final String getMiddleName() +``` + + +DAD, Deuxième(s) prénom(s) du titulaire de la carte. Dans le cas de plusieurs deuxièmes prénoms, ils doivent être séparés par une virgule ",". , DL/ID, V40ANS + +**Returns:** +java.lang.String +### getMiddleNameTruncation() {#getMiddleNameTruncation--} +``` +public final String getMiddleNameTruncation() +``` + + +DDG, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A + +**Returns:** +java.lang.String +### getRestrictionCodes() {#getRestrictionCodes--} +``` +public final String getRestrictionCodes() +``` + + +DCB, codes de restrictions spécifiques à la juridiction, DL, V12ANS + +**Returns:** +java.lang.String +### getSex() {#getSex--} +``` +public final USADriveIdSex getSex() +``` + + +DBC, Sexe du titulaire de la carte. 1 = homme, 2 = femme, 9 = non spécifié, DL/ID, F1N + +**Returns:** +[USADriveIdSex](../../com.aspose.barcode.complexbarcode/usadriveidsex) +### getVehicleClass() {#getVehicleClass--} +``` +public final String getVehicleClass() +``` + + +DCA, code de classe / groupe de véhicule spécifique à la juridiction, DL, V6ANS + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAddressCity(String value) {#setAddressCity-java.lang.String-} +``` +public final void setAddressCity(String value) +``` + + +DAI, partie ville de l'adresse du titulaire de la carte, DL/ID, V20ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setAddressPostalCode(String value) {#setAddressPostalCode-java.lang.String-} +``` +public final void setAddressPostalCode(String value) +``` + + +DAK, partie code postal de l'adresse du titulaire de la carte aux États‑Unis et au Canada. Si la partie finale du code postal aux États‑Unis n'est pas connue, des zéros seront utilisés pour remplir la suite de chiffres jusqu'à 9 chiffres, DL/ID, F11ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setAddressState(String value) {#setAddressState-java.lang.String-} +``` +public final void setAddressState(String value) +``` + + +DAJ, partie État de l'adresse du titulaire de la carte, DL/ID, F2A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setAddressStreet1(String value) {#setAddressStreet1-java.lang.String-} +``` +public final void setAddressStreet1(String value) +``` + + +DAG, partie rue de l'adresse du titulaire de la carte, DL/ID, V35ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setCountryIdentification(USADriveIdCountry value) {#setCountryIdentification-com.aspose.barcode.complexbarcode.USADriveIdCountry-} +``` +public final void setCountryIdentification(USADriveIdCountry value) +``` + + +DCG, Pays dans lequel le DL/ID est délivré. U.S. = USA, Canada = CAN, DL/ID, F3A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [USADriveIdCountry](../../com.aspose.barcode.complexbarcode/usadriveidcountry) | | + +### setCustomerIDNumber(String value) {#setCustomerIDNumber-java.lang.String-} +``` +public final void setCustomerIDNumber(String value) +``` + + +DAQ, le numéro attribué ou calculé par l'autorité émettrice, DL/ID, V25ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setDateOfBirth(LocalDate value) {#setDateOfBirth-java.time.LocalDate-} +``` +public final void setDateOfBirth(LocalDate value) +``` + + +DBB, date à laquelle le document a été délivré, MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada, DL/ID, F8N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.time.LocalDate | | + +### setDocumentDiscriminator(String value) {#setDocumentDiscriminator-java.lang.String-} +``` +public final void setDocumentDiscriminator(String value) +``` + + +DCF, Le numéro doit identifier de manière unique un document particulier délivré à ce client parmi d'autres qui ont pu être délivrés dans le passé. Ce numéro peut servir à plusieurs fins de discrimination de documents, de numéro d'information d'audit et/ou de contrôle d'inventaire, DL/ID, V25ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setEndorsementCodes(String value) {#setEndorsementCodes-java.lang.String-} +``` +public final void setEndorsementCodes(String value) +``` + + +DCD, codes d'endossement spécifiques à la juridiction, DL, V5ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setEyeColor(USADriveIdEyeColor value) {#setEyeColor-com.aspose.barcode.complexbarcode.USADriveIdEyeColor-} +``` +public final void setEyeColor(USADriveIdEyeColor value) +``` + + +DAY, Couleur des yeux du titulaire de la carte. (codes ANSI D-20). DL/ID, F3A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [USADriveIdEyeColor](../../com.aspose.barcode.complexbarcode/usadriveideyecolor) | | + +### setFamilyName(String value) {#setFamilyName-java.lang.String-} +``` +public final void setFamilyName(String value) +``` + + +DCS, nom de famille du titulaire de la carte, DL/ID, V40ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setFamilyNameTruncation(String value) {#setFamilyNameTruncation-java.lang.String-} +``` +public final void setFamilyNameTruncation(String value) +``` + + +DDE, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setFirstName(String value) {#setFirstName-java.lang.String-} +``` +public final void setFirstName(String value) +``` + + +DAC, prénom du titulaire de la carte, DL/ID, V40ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setFirstNameTruncation(String value) {#setFirstNameTruncation-java.lang.String-} +``` +public final void setFirstNameTruncation(String value) +``` + + +DDF, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setHeight(String value) {#setHeight-java.lang.String-} +``` +public final void setHeight(String value) +``` + + +DAU, Taille du titulaire de la carte. Pouces (in) : nombre de pouces suivi de " in" ex. 6'1'' = "073 in" Centimètres(cm) : nombre de centimètres suivi de " cm" ex. 181 centimètres="181 cm" , DL/ID, F6ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setMiddleName(String value) {#setMiddleName-java.lang.String-} +``` +public final void setMiddleName(String value) +``` + + +DAD, Deuxième(s) prénom(s) du titulaire de la carte. Dans le cas de plusieurs deuxièmes prénoms, ils doivent être séparés par une virgule ",". , DL/ID, V40ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setMiddleNameTruncation(String value) {#setMiddleNameTruncation-java.lang.String-} +``` +public final void setMiddleNameTruncation(String value) +``` + + +DDG, un code indiquant si un champ a été tronqué (T), n'a pas été tronqué (N), ou si l'on ignore s'il a été tronqué (U), DL/ID, F1A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setRestrictionCodes(String value) {#setRestrictionCodes-java.lang.String-} +``` +public final void setRestrictionCodes(String value) +``` + + +DCB, codes de restrictions spécifiques à la juridiction, DL, V12ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setSex(USADriveIdSex value) {#setSex-com.aspose.barcode.complexbarcode.USADriveIdSex-} +``` +public final void setSex(USADriveIdSex value) +``` + + +DBC, Sexe du titulaire de la carte. 1 = homme, 2 = femme, 9 = non spécifié, DL/ID, F1N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [USADriveIdSex](../../com.aspose.barcode.complexbarcode/usadriveidsex) | | + +### setVehicleClass(String value) {#setVehicleClass-java.lang.String-} +``` +public final void setVehicleClass(String value) +``` + + +DCA, code de classe / groupe de véhicule spécifique à la juridiction, DL, V6ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetext/_index.md new file mode 100644 index 000000000..1f085afcd --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetext/_index.md @@ -0,0 +1,275 @@ +--- +title: MaxiCodeCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe de base pour encoder et décoder le texte intégré dans le code MaxiCode. +type: docs +weight: 25 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetext/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.barcode.complexbarcode.IComplexCodetext](../../com.aspose.barcode.complexbarcode/icomplexcodetext) +``` +public abstract class MaxiCodeCodetext implements IComplexCodetext +``` + +Classe de base pour encoder et décoder le texte intégré dans le code MaxiCode. + +Cet exemple montre comment décoder le codetext brut MaxiCode en instance de MaxiCodeCodetext. + +``` + + BarCodeReader reader = new BarCodeReader("test.png", DecodeType.MAXI_CODE); + for (BarCodeResult result : reader.readBarCodes()) + { + MaxiCodeCodetext resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMode(), result.getCodeText()); + System.out.println("BarCode Type: " + resultMaxiCodeCodetext.getBarcodeType()); + System.out.println("MaxiCode mode: " + resultMaxiCodeCodetext.getMode()); + System.out.println("BarCode CodeText: " + resultMaxiCodeCodetext.getConstructedCodetext()); + } + +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MaxiCodeCodetext()](#MaxiCodeCodetext--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBarcodeType()](#getBarcodeType--) | Obtient le type de code-barres. | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construit le texte du code. | +| [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMode()](#getMode--) | Gets MaxiCode mode. | +| [hashCode()](#hashCode--) | | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise l'instance à partir du texte du code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Définit l'encodage ECI. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MaxiCodeCodetext() {#MaxiCodeCodetext--} +``` +public MaxiCodeCodetext() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBarcodeType() {#getBarcodeType--} +``` +public final BaseEncodeType getBarcodeType() +``` + + +Obtient le type de code-barres. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public abstract String getConstructedCodetext() +``` + + +Construit le texte du code. + +**Returns:** +java.lang.String - Texte de code construit +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Obtient l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Returns:** +int - encodage ECI. +### getEncodeMode() {#getEncodeMode--} +``` +public final MaxiCodeEncodeMode getEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} +``` +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMode() {#getMode--} +``` +public abstract int getMode() +``` + + +Gets MaxiCode mode. + +**Returns:** +int - mode MaxiCode +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public abstract void initFromString(String constructedCodetext) +``` + + +Initialise l'instance à partir du texte du code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Définit l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Encodage ECI. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode2/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode2/_index.md new file mode 100644 index 000000000..82d7065d8 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode2/_index.md @@ -0,0 +1,425 @@ +--- +title: MaxiCodeCodetextMode2 +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le texte intégré dans le code MaxiCode pour le mode 2. +type: docs +weight: 26 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode2/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.complexbarcode.MaxiCodeCodetext](../../com.aspose.barcode.complexbarcode/maxicodecodetext), [com.aspose.barcode.complexbarcode.MaxiCodeStructuredCodetext](../../com.aspose.barcode.complexbarcode/maxicodestructuredcodetext) +``` +public class MaxiCodeCodetextMode2 extends MaxiCodeStructuredCodetext +``` + +Class for encoding and decoding the text embedded in the MaxiCode code for modes 2. This sample shows how to encode and decode MaxiCode codetext for mode 2. + +``` +//Mode 2 with standart second message + MaxiCodeCodetextMode2 maxiCodeCodetext = new MaxiCodeCodetextMode2(); + maxiCodeCodetext.setPostalCode("524032140"); + maxiCodeCodetext.setCountryCode(056); + maxiCodeCodetext.setServiceCategory(999); + MaxiCodeStandartSecondMessage maxiCodeStandartSecondMessage = new MaxiCodeStandartSecondMessage(); + maxiCodeStandartSecondMessage.setMessage("Test message"); + maxiCodeCodetext.setSecondMessage(maxiCodeStandartSecondMessage); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); + complexGenerator.generateBarCodeImage(); + + //Mode 2 with structured second message + MaxiCodeCodetextMode2 maxiCodeCodetext = new MaxiCodeCodetextMode2(); + maxiCodeCodetext.setPostalCode("524032140"); + maxiCodeCodetext.setCountryCode(056); + maxiCodeCodetext.setServiceCategory(999); + MaxiCodeStructuredSecondMessage maxiCodeStructuredSecondMessage = new MaxiCodeStructuredSecondMessage(); + maxiCodeStructuredSecondMessage.add("634 ALPHA DRIVE"); + maxiCodeStructuredSecondMessage.add("PITTSBURGH"); + maxiCodeStructuredSecondMessage.add("PA"); + maxiCodeStructuredSecondMessage.setYear(99); + maxiCodeCodetext.setSecondMessage(maxiCodeStructuredSecondMessage); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); + complexGenerator.generateBarCodeImage(); + + //Decoding raw codetext with standart second message + BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.MAXI_CODE); + { + for (BarCodeResult result : reader.readBarCodes()) + { + MaxiCodeCodetext resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); + if (resultMaxiCodeCodetext instanceof MaxiCodeCodetextMode2) + { + MaxiCodeCodetextMode2 maxiCodeStructuredCodetext = (MaxiCodeCodetextMode2)resultMaxiCodeCodetext; + System.out.println("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode()); + System.out.println("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode()); + System.out.println("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory()); + if (maxiCodeStructuredCodetext.getSecondMessage() instanceof MaxiCodeStandartSecondMessage){ + MaxiCodeStandartSecondMessage secondMessage = (MaxiCodeStandartSecondMessage)maxiCodeStructuredCodetext.getSecondMessage(); + System.out.println("Message: " + secondMessage.getMessage()); + } + } + } + } + //Decoding raw codetext with structured second message + BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.MAXI_CODE); + { + for(BarCodeResult result : reader.readBarCodes()) + { + MaxiCodeCodetext resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); + if (resultMaxiCodeCodetext instanceof MaxiCodeCodetextMode2){ + MaxiCodeCodetextMode2 maxiCodeStructuredCodetext = (MaxiCodeCodetextMode2)resultMaxiCodeCodetext; + System.out.println("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode()); + System.out.println("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode()); + System.out.println("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory()); + if (maxiCodeStructuredCodetext.getSecondMessage() instanceof MaxiCodeStructuredSecondMessage){ + MaxiCodeStructuredSecondMessage secondMessage = (MaxiCodeStructuredSecondMessage)maxiCodeStructuredCodetext.getSecondMessage(); + System.out.println("Message:"); + for (String identifier : secondMessage.getIdentifiers()){ + System.out.println(identifier); + } + } + } + } + } +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MaxiCodeCodetextMode2()](#MaxiCodeCodetextMode2--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified MaxiCodeStructuredCodetext value. | +| [getBarcodeType()](#getBarcodeType--) | Obtient le type de code-barres. | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construit le texte du code. | +| [getCountryCode()](#getCountryCode--) | Identifies 3 digit country code. | +| [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMode()](#getMode--) | Gets MaxiCode mode. | +| [getPostalCode()](#getPostalCode--) | Identifies the postal code. | +| [getSecondMessage()](#getSecondMessage--) | Identifies second message of the barcode. | +| [getServiceCategory()](#getServiceCategory--) | Identifies 3 digit service category. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise l'instance à partir du texte du code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setCountryCode(int value)](#setCountryCode-int-) | Identifies 3 digit country code. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Définit l'encodage ECI. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [setPostalCode(String value)](#setPostalCode-java.lang.String-) | Identifies the postal code. | +| [setSecondMessage(MaxiCodeSecondMessage value)](#setSecondMessage-com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage-) | Identifies second message of the barcode. | +| [setServiceCategory(int value)](#setServiceCategory-int-) | Identifies 3 digit service category. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MaxiCodeCodetextMode2() {#MaxiCodeCodetextMode2--} +``` +public MaxiCodeCodetextMode2() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Returns a value indicating whether this instance is equal to a specified MaxiCodeStructuredCodetext value. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur MaxiCodeStructuredCodetext à comparer à cette instance | + +**Returns:** +booléen - **true** si obj a la même valeur que cette instance ; sinon, **false** +### getBarcodeType() {#getBarcodeType--} +``` +public final BaseEncodeType getBarcodeType() +``` + + +Obtient le type de code-barres. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public String getConstructedCodetext() +``` + + +Construit le texte du code. + +**Returns:** +java.lang.String - Texte de code construit +### getCountryCode() {#getCountryCode--} +``` +public int getCountryCode() +``` + + +Identifies 3 digit country code. + +**Returns:** +int +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Obtient l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Returns:** +int - encodage ECI. +### getEncodeMode() {#getEncodeMode--} +``` +public final MaxiCodeEncodeMode getEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} +``` +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMode() {#getMode--} +``` +public int getMode() +``` + + +Gets MaxiCode mode. + +**Returns:** +int - mode MaxiCode +### getPostalCode() {#getPostalCode--} +``` +public String getPostalCode() +``` + + +Identifie le code postal. Doit comporter 9 chiffres en mode 2 ou 6 symboles alphanumériques en mode 3. + +**Returns:** +java.lang.String +### getSecondMessage() {#getSecondMessage--} +``` +public MaxiCodeSecondMessage getSecondMessage() +``` + + +Identifies second message of the barcode. + +**Returns:** +[MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage) +### getServiceCategory() {#getServiceCategory--} +``` +public int getServiceCategory() +``` + + +Identifies 3 digit service category. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public void initFromString(String constructedCodetext) +``` + + +Initialise l'instance à partir du texte du code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setCountryCode(int value) {#setCountryCode-int-} +``` +public void setCountryCode(int value) +``` + + +Identifies 3 digit country code. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Définit l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Encodage ECI. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### setPostalCode(String value) {#setPostalCode-java.lang.String-} +``` +public final void setPostalCode(String value) +``` + + +Identifie le code postal. Doit comporter 9 chiffres en mode 2 ou 6 symboles alphanumériques en mode 3. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setSecondMessage(MaxiCodeSecondMessage value) {#setSecondMessage-com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage-} +``` +public void setSecondMessage(MaxiCodeSecondMessage value) +``` + + +Identifies second message of the barcode. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage) | | + +### setServiceCategory(int value) {#setServiceCategory-int-} +``` +public void setServiceCategory(int value) +``` + + +Identifies 3 digit service category. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode3/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode3/_index.md new file mode 100644 index 000000000..61547f393 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode3/_index.md @@ -0,0 +1,425 @@ +--- +title: MaxiCodeCodetextMode3 +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le texte intégré dans le code MaxiCode pour le mode 3. +type: docs +weight: 27 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode3/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.complexbarcode.MaxiCodeCodetext](../../com.aspose.barcode.complexbarcode/maxicodecodetext), [com.aspose.barcode.complexbarcode.MaxiCodeStructuredCodetext](../../com.aspose.barcode.complexbarcode/maxicodestructuredcodetext) +``` +public class MaxiCodeCodetextMode3 extends MaxiCodeStructuredCodetext +``` + +Classe pour l'encodage et le décodage du texte intégré dans le code MaxiCode pour les modes 3. Cet exemple montre comment encoder et décoder le codetext MaxiCode pour le mode 3. + +``` +//Mode 3 with standart second message + MaxiCodeCodetextMode3 maxiCodeCodetext = new MaxiCodeCodetextMode3(); + maxiCodeCodetext.setPostalCode("B1050"); + maxiCodeCodetext.setCountryCode(056); + maxiCodeCodetext.setServiceCategory(999); + MaxiCodeStandartSecondMessage maxiCodeStandartSecondMessage = new MaxiCodeStandartSecondMessage(); + maxiCodeStandartSecondMessage.setMessage("Test message"); + maxiCodeCodetext.setSecondMessage(maxiCodeStandartSecondMessage); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); + complexGenerator.generateBarCodeImage(); + + //Mode 3 with structured second message + MaxiCodeCodetextMode3 maxiCodeCodetext = new MaxiCodeCodetextMode3(); + maxiCodeCodetext.setPostalCode("B1050"); + maxiCodeCodetext.setCountryCode(056); + maxiCodeCodetext.setServiceCategory(999); + MaxiCodeStructuredSecondMessage maxiCodeStructuredSecondMessage = new MaxiCodeStructuredSecondMessage(); + maxiCodeStructuredSecondMessage.add("634 ALPHA DRIVE"); + maxiCodeStructuredSecondMessage.add("PITTSBURGH"); + maxiCodeStructuredSecondMessage.add("PA"); + maxiCodeStructuredSecondMessage.setYear(99); + maxiCodeCodetext.setSecondMessage(maxiCodeStructuredSecondMessage); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); + complexGenerator.generateBarCodeImage(); + + //Decoding raw codetext with standart second message + BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.MAXI_CODE); + for(BarCodeResult result : reader.readBarCodes()) + { + MaxiCodeCodetext resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); + if (resultMaxiCodeCodetext instanceOf MaxiCodeCodetextMode3) + { + MaxiCodeCodetextMode3 maxiCodeStructuredCodetext = (MaxiCodeCodetextMode3)resultMaxiCodeCodetext; + System.out.println("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode()); + System.out.println("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode()); + System.out.println("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory()); + if (maxiCodeStructuredCodetext.getSecondMessage() instanceOf MaxiCodeStandartSecondMessage) + { + MaxiCodeStandartSecondMessage secondMessage = (MaxiCodeStandartSecondMessage)maxiCodeStructuredCodetext.getSecondMessage(); + System.out.println("Message: " + secondMessage.getMessage()); + } + } + } + //Decoding raw codetext with structured second message + BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.MAXI_CODE); + for(BarCodeResult result : reader.readBarCodes()) + { + MaxiCodeCodetext resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); + if (resultMaxiCodeCodetext instanceOf MaxiCodeCodetextMode3) + { + MaxiCodeCodetextMode3 maxiCodeStructuredCodetext = (MaxiCodeCodetextMode3)resultMaxiCodeCodetext; + System.out.println("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode()); + System.out.println("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode()); + System.out.println("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory()); + if (maxiCodeStructuredCodetext.getSecondMessage() instanceOf MaxiCodeStructuredSecondMessage) + { + MaxiCodeStructuredSecondMessage secondMessage = (MaxiCodeStructuredSecondMessage)maxiCodeStructuredCodetext.getSecondMessage(); + System.out.println("Message:"); + for(String identifier : secondMessage.getIdentifiers()) + { + System.out.println(identifier); + } + } + } + } +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MaxiCodeCodetextMode3()](#MaxiCodeCodetextMode3--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified MaxiCodeStructuredCodetext value. | +| [getBarcodeType()](#getBarcodeType--) | Obtient le type de code-barres. | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construit le texte du code. | +| [getCountryCode()](#getCountryCode--) | Identifies 3 digit country code. | +| [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMode()](#getMode--) | Gets MaxiCode mode. | +| [getPostalCode()](#getPostalCode--) | Identifies the postal code. | +| [getSecondMessage()](#getSecondMessage--) | Identifies second message of the barcode. | +| [getServiceCategory()](#getServiceCategory--) | Identifies 3 digit service category. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise l'instance à partir du texte du code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setCountryCode(int value)](#setCountryCode-int-) | Identifies 3 digit country code. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Définit l'encodage ECI. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [setPostalCode(String value)](#setPostalCode-java.lang.String-) | Identifies the postal code. | +| [setSecondMessage(MaxiCodeSecondMessage value)](#setSecondMessage-com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage-) | Identifies second message of the barcode. | +| [setServiceCategory(int value)](#setServiceCategory-int-) | Identifies 3 digit service category. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MaxiCodeCodetextMode3() {#MaxiCodeCodetextMode3--} +``` +public MaxiCodeCodetextMode3() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Returns a value indicating whether this instance is equal to a specified MaxiCodeStructuredCodetext value. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur MaxiCodeStructuredCodetext à comparer à cette instance | + +**Returns:** +booléen - **true** si obj a la même valeur que cette instance ; sinon, **false** +### getBarcodeType() {#getBarcodeType--} +``` +public final BaseEncodeType getBarcodeType() +``` + + +Obtient le type de code-barres. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public String getConstructedCodetext() +``` + + +Construit le texte du code. + +**Returns:** +java.lang.String - Texte de code construit +### getCountryCode() {#getCountryCode--} +``` +public int getCountryCode() +``` + + +Identifies 3 digit country code. + +**Returns:** +int +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Obtient l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Returns:** +int - encodage ECI. +### getEncodeMode() {#getEncodeMode--} +``` +public final MaxiCodeEncodeMode getEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} +``` +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMode() {#getMode--} +``` +public int getMode() +``` + + +Gets MaxiCode mode. + +**Returns:** +int - mode MaxiCode +### getPostalCode() {#getPostalCode--} +``` +public String getPostalCode() +``` + + +Identifie le code postal. Doit comporter 9 chiffres en mode 2 ou 6 symboles alphanumériques en mode 3. + +**Returns:** +java.lang.String +### getSecondMessage() {#getSecondMessage--} +``` +public MaxiCodeSecondMessage getSecondMessage() +``` + + +Identifies second message of the barcode. + +**Returns:** +[MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage) +### getServiceCategory() {#getServiceCategory--} +``` +public int getServiceCategory() +``` + + +Identifies 3 digit service category. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public void initFromString(String constructedCodetext) +``` + + +Initialise l'instance à partir du texte du code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setCountryCode(int value) {#setCountryCode-int-} +``` +public void setCountryCode(int value) +``` + + +Identifies 3 digit country code. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Définit l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Encodage ECI. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### setPostalCode(String value) {#setPostalCode-java.lang.String-} +``` +public final void setPostalCode(String value) +``` + + +Identifie le code postal. Doit comporter 9 chiffres en mode 2 ou 6 symboles alphanumériques en mode 3. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setSecondMessage(MaxiCodeSecondMessage value) {#setSecondMessage-com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage-} +``` +public void setSecondMessage(MaxiCodeSecondMessage value) +``` + + +Identifies second message of the barcode. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage) | | + +### setServiceCategory(int value) {#setServiceCategory-int-} +``` +public void setServiceCategory(int value) +``` + + +Identifies 3 digit service category. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/maxicodesecondmessage/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodesecondmessage/_index.md new file mode 100644 index 000000000..1dc3bfcb1 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodesecondmessage/_index.md @@ -0,0 +1,146 @@ +--- +title: MaxiCodeSecondMessage +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe de base pour encoder et décoder le second message du code-barres MaxiCode. +type: docs +weight: 28 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/maxicodesecondmessage/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract class MaxiCodeSecondMessage +``` + +Classe de base pour encoder et décoder le second message du code-barres MaxiCode. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MaxiCodeSecondMessage()](#MaxiCodeSecondMessage--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getMessage()](#getMessage--) | Obtient le second message construit | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MaxiCodeSecondMessage() {#MaxiCodeSecondMessage--} +``` +public MaxiCodeSecondMessage() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getMessage() {#getMessage--} +``` +public abstract String getMessage() +``` + + +Obtient le second message construit + +**Returns:** +java.lang.String - Message secondaire construit +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardcodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardcodetext/_index.md new file mode 100644 index 000000000..70b530c0e --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardcodetext/_index.md @@ -0,0 +1,319 @@ +--- +title: MaxiCodeStandardCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Class for encoding and decoding MaxiCode codetext for modes 4 5 and 6. +type: docs +weight: 29 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardcodetext/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.complexbarcode.MaxiCodeCodetext](../../com.aspose.barcode.complexbarcode/maxicodecodetext) +``` +public class MaxiCodeStandardCodetext extends MaxiCodeCodetext +``` + +Classe pour encoder et décoder le texte du code MaxiCode pour les modes 4, 5 et 6. + +``` +//Mode 4 + MaxiCodeStandardCodetext maxiCodeCodetext = new MaxiCodeStandardCodetext(); + maxiCodeCodetext.setMode(MaxiCodeMode.MODE_4); + maxiCodeCodetext.setMessage("Test message"); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext()); + complexGenerator.generateBarCodeImage(); + + //Mode 5 + MaxiCodeStandardCodetext maxiCodeCodetext = new MaxiCodeStandardCodetext(); + maxiCodeCodetext.setMode(MaxiCodeMode.MODE_5); + maxiCodeCodetext.setMessage("Test message"); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext()); + complexGenerator.generateBarCodeImage(); + + //Mode 6 + MaxiCodeStandardCodetext maxiCodeCodetext = new MaxiCodeStandardCodetext(); + maxiCodeCodetext.setMode(MaxiCodeMode.MODE_6); + maxiCodeCodetext.setMessage("Test message"); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext()); + complexGenerator.generateBarCodeImage(); +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MaxiCodeStandardCodetext()](#MaxiCodeStandardCodetext--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified MaxiCodeStandardCodetext value. | +| [getBarcodeType()](#getBarcodeType--) | Obtient le type de code-barres. | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construit le texte du code. | +| [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMessage()](#getMessage--) | Gets message. | +| [getMode()](#getMode--) | Gets MaxiCode mode. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise l'instance à partir du texte du code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Définit l'encodage ECI. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [setMessage(String value)](#setMessage-java.lang.String-) | Sets message. | +| [setMode(int mode)](#setMode-int-) | Sets MaxiCode mode. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MaxiCodeStandardCodetext() {#MaxiCodeStandardCodetext--} +``` +public MaxiCodeStandardCodetext() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Returns a value indicating whether this instance is equal to a specified MaxiCodeStandardCodetext value. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | An MaxiCodeStandardCodetext value to compare to this instance. | + +**Returns:** +boolean - if obj has the same value as this instance; otherwise, **false**. +### getBarcodeType() {#getBarcodeType--} +``` +public final BaseEncodeType getBarcodeType() +``` + + +Obtient le type de code-barres. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public String getConstructedCodetext() +``` + + +Construit le texte du code. + +**Returns:** +java.lang.String - Texte de code construit +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Obtient l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Returns:** +int - encodage ECI. +### getEncodeMode() {#getEncodeMode--} +``` +public final MaxiCodeEncodeMode getEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} +``` +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + +Gets message. + +**Returns:** +java.lang.String +### getMode() {#getMode--} +``` +public int getMode() +``` + + +Gets MaxiCode mode. + +**Returns:** +int - mode MaxiCode +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - A 32-bit signed integer hash code +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public void initFromString(String constructedCodetext) +``` + + +Initialise l'instance à partir du texte du code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Définit l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Encodage ECI. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### setMessage(String value) {#setMessage-java.lang.String-} +``` +public void setMessage(String value) +``` + + +Sets message. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setMode(int mode) {#setMode-int-} +``` +public void setMode(int mode) +``` + + +Sets MaxiCode mode. Standart codetext can be used only with modes 4, 5 and 6. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| mode | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardsecondmessage/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardsecondmessage/_index.md new file mode 100644 index 000000000..e3801993f --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardsecondmessage/_index.md @@ -0,0 +1,171 @@ +--- +title: MaxiCodeStandardSecondMessage +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le message secondaire standard du code-barres MaxiCode. +type: docs +weight: 30 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardsecondmessage/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage) +``` +public class MaxiCodeStandardSecondMessage extends MaxiCodeSecondMessage +``` + +Classe pour encoder et décoder le message secondaire standard du code-barres MaxiCode. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MaxiCodeStandardSecondMessage()](#MaxiCodeStandardSecondMessage--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur MaxiCodeStandartSecondMessage spécifiée. | +| [getClass()](#getClass--) | | +| [getHashCode()](#getHashCode--) | Renvoie le code de hachage pour cette instance. | +| [getMessage()](#getMessage--) | Obtient le deuxième message | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setMessage(String value)](#setMessage-java.lang.String-) | Définit le deuxième message | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MaxiCodeStandardSecondMessage() {#MaxiCodeStandardSecondMessage--} +``` +public MaxiCodeStandardSecondMessage() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur MaxiCodeStandartSecondMessage spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur MaxiCodeStandartSecondMessage à comparer à cette instance | + +**Returns:** +booléen - **true** si obj a la même valeur que cette instance ; sinon, **false**. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getHashCode() {#getHashCode--} +``` +public int getHashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + +Obtient le deuxième message + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setMessage(String value) {#setMessage-java.lang.String-} +``` +public void setMessage(String value) +``` + + +Définit le deuxième message + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestandartsecondmessage/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestandartsecondmessage/_index.md new file mode 100644 index 000000000..a3a9d9bbc --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestandartsecondmessage/_index.md @@ -0,0 +1,171 @@ +--- +title: MaxiCodeStandartSecondMessage +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le message secondaire standard du code-barres MaxiCode. +type: docs +weight: 31 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/maxicodestandartsecondmessage/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage), com.aspose.barcode.complexbarcode.MaxiCodeStandardSecondMessage +``` +public class MaxiCodeStandartSecondMessage extends MaxiCodeStandardSecondMessage +``` + +Classe pour encoder et décoder le message secondaire standard du code-barres MaxiCode. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MaxiCodeStandartSecondMessage()](#MaxiCodeStandartSecondMessage--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur MaxiCodeStandartSecondMessage spécifiée. | +| [getClass()](#getClass--) | | +| [getHashCode()](#getHashCode--) | Renvoie le code de hachage pour cette instance. | +| [getMessage()](#getMessage--) | Obtient le deuxième message | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setMessage(String value)](#setMessage-java.lang.String-) | Définit le deuxième message | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MaxiCodeStandartSecondMessage() {#MaxiCodeStandartSecondMessage--} +``` +public MaxiCodeStandartSecondMessage() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur MaxiCodeStandartSecondMessage spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur MaxiCodeStandartSecondMessage à comparer à cette instance | + +**Returns:** +booléen - **true** si obj a la même valeur que cette instance ; sinon, **false**. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getHashCode() {#getHashCode--} +``` +public int getHashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + +Obtient le deuxième message + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setMessage(String value) {#setMessage-java.lang.String-} +``` +public void setMessage(String value) +``` + + +Définit le deuxième message + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredcodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredcodetext/_index.md new file mode 100644 index 000000000..daca1c788 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredcodetext/_index.md @@ -0,0 +1,372 @@ +--- +title: MaxiCodeStructuredCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe de base pour encoder et décoder le texte intégré dans le code MaxiCode pour les modes 2 et 3. +type: docs +weight: 32 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredcodetext/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.complexbarcode.MaxiCodeCodetext](../../com.aspose.barcode.complexbarcode/maxicodecodetext) +``` +public abstract class MaxiCodeStructuredCodetext extends MaxiCodeCodetext +``` + +Base class for encoding and decoding the text embedded in the MaxiCode code for modes 2 and 3. This sample shows how to decode raw MaxiCode codetext to MaxiCodeStructuredCodetext instance. + +``` +BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.MAXI_CODE); + for (BarCodeResult result : reader.readBarCodes()) + { + MaxiCodeCodetext resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); + if (resultMaxiCodeCodetext instanceof MaxiCodeStructuredCodetext) + { + MaxiCodeStructuredCodetext maxiCodeStructuredCodetext = (MaxiCodeStructuredCodetext)resultMaxiCodeCodetext; + System.out.println("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode()); + System.out.println("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode()); + System.out.println("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory()); + } + } +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MaxiCodeStructuredCodetext()](#MaxiCodeStructuredCodetext--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified MaxiCodeStructuredCodetext value. | +| [getBarcodeType()](#getBarcodeType--) | Obtient le type de code-barres. | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construit le texte du code. | +| [getCountryCode()](#getCountryCode--) | Identifies 3 digit country code. | +| [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMode()](#getMode--) | Gets MaxiCode mode. | +| [getPostalCode()](#getPostalCode--) | Identifies the postal code. | +| [getSecondMessage()](#getSecondMessage--) | Identifies second message of the barcode. | +| [getServiceCategory()](#getServiceCategory--) | Identifies 3 digit service category. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialise l'instance à partir du texte du code construit. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setCountryCode(int value)](#setCountryCode-int-) | Identifies 3 digit country code. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Définit l'encodage ECI. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [setPostalCode(String value)](#setPostalCode-java.lang.String-) | Identifies the postal code. | +| [setSecondMessage(MaxiCodeSecondMessage value)](#setSecondMessage-com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage-) | Identifies second message of the barcode. | +| [setServiceCategory(int value)](#setServiceCategory-int-) | Identifies 3 digit service category. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MaxiCodeStructuredCodetext() {#MaxiCodeStructuredCodetext--} +``` +public MaxiCodeStructuredCodetext() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Returns a value indicating whether this instance is equal to a specified MaxiCodeStructuredCodetext value. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur MaxiCodeStructuredCodetext à comparer à cette instance | + +**Returns:** +booléen - **true** si obj a la même valeur que cette instance ; sinon, **false** +### getBarcodeType() {#getBarcodeType--} +``` +public final BaseEncodeType getBarcodeType() +``` + + +Obtient le type de code-barres. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public String getConstructedCodetext() +``` + + +Construit le texte du code. + +**Returns:** +java.lang.String - Texte de code construit +### getCountryCode() {#getCountryCode--} +``` +public int getCountryCode() +``` + + +Identifies 3 digit country code. + +**Returns:** +int +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Obtient l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Returns:** +int - encodage ECI. +### getEncodeMode() {#getEncodeMode--} +``` +public final MaxiCodeEncodeMode getEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} +``` +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMode() {#getMode--} +``` +public abstract int getMode() +``` + + +Gets MaxiCode mode. + +**Returns:** +int - mode MaxiCode +### getPostalCode() {#getPostalCode--} +``` +public String getPostalCode() +``` + + +Identifie le code postal. Doit comporter 9 chiffres en mode 2 ou 6 symboles alphanumériques en mode 3. + +**Returns:** +java.lang.String +### getSecondMessage() {#getSecondMessage--} +``` +public MaxiCodeSecondMessage getSecondMessage() +``` + + +Identifies second message of the barcode. + +**Returns:** +[MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage) +### getServiceCategory() {#getServiceCategory--} +``` +public int getServiceCategory() +``` + + +Identifies 3 digit service category. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public void initFromString(String constructedCodetext) +``` + + +Initialise l'instance à partir du texte du code construit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setCountryCode(int value) {#setCountryCode-int-} +``` +public void setCountryCode(int value) +``` + + +Identifies 3 digit country code. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Définit l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Encodage ECI. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### setPostalCode(String value) {#setPostalCode-java.lang.String-} +``` +public final void setPostalCode(String value) +``` + + +Identifie le code postal. Doit comporter 9 chiffres en mode 2 ou 6 symboles alphanumériques en mode 3. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setSecondMessage(MaxiCodeSecondMessage value) {#setSecondMessage-com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage-} +``` +public void setSecondMessage(MaxiCodeSecondMessage value) +``` + + +Identifies second message of the barcode. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage) | | + +### setServiceCategory(int value) {#setServiceCategory-int-} +``` +public void setServiceCategory(int value) +``` + + +Identifies 3 digit service category. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredsecondmessage/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredsecondmessage/_index.md new file mode 100644 index 000000000..799432442 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredsecondmessage/_index.md @@ -0,0 +1,205 @@ +--- +title: MaxiCodeStructuredSecondMessage +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le second message structuré du code-barres MaxiCode. +type: docs +weight: 33 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredsecondmessage/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage) +``` +public class MaxiCodeStructuredSecondMessage extends MaxiCodeSecondMessage +``` + +Classe pour encoder et décoder le second message structuré du code-barres MaxiCode. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MaxiCodeStructuredSecondMessage()](#MaxiCodeStructuredSecondMessage--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [add(String identifier)](#add-java.lang.String-) | Ajoute un nouvel identifiant | +| [clear()](#clear--) | Efface la liste des identifiants | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée. | +| [getClass()](#getClass--) | | +| [getIdentifiers()](#getIdentifiers--) | Obtient la liste des identifiants | +| [getMessage()](#getMessage--) | Obtient le second message construit | +| [getYear()](#getYear--) | Obtient l'année. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setYear(int value)](#setYear-int-) | Définit l'année. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MaxiCodeStructuredSecondMessage() {#MaxiCodeStructuredSecondMessage--} +``` +public MaxiCodeStructuredSecondMessage() +``` + + +### add(String identifier) {#add-java.lang.String-} +``` +public void add(String identifier) +``` + + +Ajoute un nouvel identifiant + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| identifiant | java.lang.String | Identifiant à ajouter | + +### clear() {#clear--} +``` +public void clear() +``` + + +Efface la liste des identifiants + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | "obj">Une valeur à comparer à cette instance. | + +**Returns:** +booléen - **true** si obj a la même valeur que cette instance ; sinon, **false**. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getIdentifiers() {#getIdentifiers--} +``` +public List getIdentifiers() +``` + + +Obtient la liste des identifiants + +**Returns:** +java.util.List - Liste d'identifiants +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + +Obtient le second message construit + +**Returns:** +java.lang.String - Message secondaire construit +### getYear() {#getYear--} +``` +public int getYear() +``` + + +Obtient l'année. L'année doit être une valeur entière à 2 chiffres. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setYear(int value) {#setYear-int-} +``` +public void setYear(int value) +``` + + +Définit l'année. L'année doit être une valeur entière à 2 chiffres. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/optionalfields/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/optionalfields/_index.md new file mode 100644 index 000000000..b32333471 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/optionalfields/_index.md @@ -0,0 +1,821 @@ +--- +title: USADriveIdCodetext.OptionalFields +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Champs des éléments optionnels de la carte +type: docs +weight: 11 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext.optionalfields/ +--- +**Inheritance:** +java.lang.Object +``` +public static class USADriveIdCodetext.OptionalFields +``` + +Éléments optionnels (champs) de la carte +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [OptionalFields()](#OptionalFields--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAddressStreet2()](#getAddressStreet2--) | DAH, Deuxième ligne de la partie rue de l'adresse du titulaire de la carte, DL/ID, V35ANS | +| [getAliasAKAFamilyName()](#getAliasAKAFamilyName--) | DBN, Autre nom de famille sous lequel le titulaire de la carte est connu, DL/ID, V10ANS | +| [getAliasAKAGivenName()](#getAliasAKAGivenName--) | DBG, Autre prénom sous lequel le titulaire de la carte est connu, DL/ID, V15ANS | +| [getAliasAKASuffixName()](#getAliasAKASuffixName--) | DBS, Autre suffixe sous lequel le titulaire de la carte est connu, DL/ID, V5ANS | +| [getAuditInformation()](#getAuditInformation--) | DCJ, Une chaîne de lettres et/ou de chiffres qui identifie quand, où et par qui un permis de conduire/carte d'identité a été fabriqué. | +| [getCardRevisionDate()](#getCardRevisionDate--) | DDB, Champ requis par le DHS qui indique la date de la modification ou du changement de version le plus récent du format visible du DL/ID. | +| [getClass()](#getClass--) | | +| [getComplianceType()](#getComplianceType--) | DDA, Champ requis par le DHS qui indique la conformité : \u201cF\u201d = conforme ; et, \u201cN\u201d = non conforme, DL/ID, F1A | +| [getEndorsementCodeDescription()](#getEndorsementCodeDescription--) | DCQ, Texte qui explique le(s) code(s) spécifique(s) à la juridiction indiquant les privilèges de conduite supplémentaires accordés au titulaire de la carte au-delà de la classe de véhicule, DL, V50ANS | +| [getHAZMATEndorsementExpDate()](#getHAZMATEndorsementExpDate--) | DDC, Date à laquelle l'endorsement de matières dangereuses accordé par le document n'est plus valide. | +| [getHairColor()](#getHairColor--) | DAZ, Chauve, noir, blond, brun, gris, rouge/roux, sable, blanc, inconnu. | +| [getInventoryControlNumber()](#getInventoryControlNumber--) | DCK, Une chaîne de lettres et/ou de chiffres qui est apposée aux matières premières (papier cartonné, laminé, etc.) utilisées pour produire les permis de conduire et les cartes d'identité. | +| [getLimitedDurationDocIndicator()](#getLimitedDurationDocIndicator--) | DDD, Champ requis par le DHS qui indique que le titulaire de la carte a un statut légal temporaire = \u201c1\u201d, DL/ID, F1N | +| [getNameSuffix()](#getNameSuffix--) | DCU, Suffixe de nom (Si la juridiction participe à des systèmes nécessitant un suffixe de nom (PDPS, CDLIS, etc.), le suffixe doit être collecté et affiché sur le DL/ID et dans le MRT). | +| [getOrganDonorIndicator()](#getOrganDonorIndicator--) | DDK, Champ qui indique que le titulaire de la carte est un donneur d'organes = \u201c1\u201d, DL/ID, F1N | +| [getPlaceOfBirth()](#getPlaceOfBirth--) | DCI, Pays et municipalité et/ou état/province, DL/ID, V33A | +| [getRaceEthnicity()](#getRaceEthnicity--) | DCL, Codes de race ou d'ethnicité du titulaire de la carte, tels que définis dans AAMVA D20, DL/ID, V3A | +| [getRestrictionCodeDescription()](#getRestrictionCodeDescription--) | DCR, Texte décrivant le(s) code(s) de restriction spécifique(s) à la juridiction qui limitent les privilèges de conduite, DL, V50ANS | +| [getStandardEndorsementCode()](#getStandardEndorsementCode--) | DCN, Code(s) d'endorsement standard pour le titulaire de la carte. | +| [getStandardRestrictionCode()](#getStandardRestrictionCode--) | DCO, Code(s) de restriction standard pour le titulaire de la carte. | +| [getStandardVehClassification()](#getStandardVehClassification--) | DCM, Code(s) de classification de véhicule standard pour le titulaire de la carte. | +| [getUnder18Until()](#getUnder18Until--) | DDH, Date à laquelle le titulaire de la carte atteint 18 ans. | +| [getUnder19Until()](#getUnder19Until--) | DDI, Date à laquelle le titulaire de la carte atteint 19 ans. | +| [getUnder21Until()](#getUnder21Until--) | DDJ, Date à laquelle le titulaire de la carte atteint 21 ans. | +| [getVehClassDescription()](#getVehClassDescription--) | DCP, Texte qui explique le(s) code(s) spécifique(s) à la juridiction pour les classifications de véhicules que le titulaire est autorisé à conduire, DL, V50ANS | +| [getVeteranIndicator()](#getVeteranIndicator--) | DDL, Champ qui indique que le titulaire est un vétéran = \\u201c1\\u201d, DL/ID, F1N | +| [getWeightKilograms()](#getWeightKilograms--) | DAX, Poids du titulaire en kilogrammes, Ex. | +| [getWeightPounds()](#getWeightPounds--) | DAW, Poids du titulaire en livres, Ex. | +| [getWeightRange()](#getWeightRange--) | DCE, Indique la fourchette de poids approximative du titulaire : 0 = jusqu'à 31 kg (jusqu'à 70 lb), 1 = 32 \\u2013 45 kg (71 \\u2013 100 lb), 2 = 46 - 59 kg (101 \\u2013 130 lb), 3 = 60 - 70 kg (131 \\u2013 160 lb), 4 = 71 - 86 kg (161 \\u2013 190 lb), 5 = 87 - 100 kg (191 \\u2013 220 lb), 6 = 101 - 113 kg (221 \\u2013 250 lb), 7 = 114 - 127 kg (251 \\u2013 280 lb), 8 = 128 \\u2013 145 kg (281 \\u2013 320 lb), 9 = 146+ kg (321+ lb), DL/ID, F1N | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAddressStreet2(String value)](#setAddressStreet2-java.lang.String-) | DAH, Deuxième ligne de la partie rue de l'adresse du titulaire de la carte, DL/ID, V35ANS | +| [setAliasAKAFamilyName(String value)](#setAliasAKAFamilyName-java.lang.String-) | DBN, Autre nom de famille sous lequel le titulaire de la carte est connu, DL/ID, V10ANS | +| [setAliasAKAGivenName(String value)](#setAliasAKAGivenName-java.lang.String-) | DBG, Autre prénom sous lequel le titulaire de la carte est connu, DL/ID, V15ANS | +| [setAliasAKASuffixName(String value)](#setAliasAKASuffixName-java.lang.String-) | DBS, Autre suffixe sous lequel le titulaire de la carte est connu, DL/ID, V5ANS | +| [setAuditInformation(String value)](#setAuditInformation-java.lang.String-) | DCJ, Une chaîne de lettres et/ou de chiffres qui identifie quand, où et par qui un permis de conduire/carte d'identité a été fabriqué. | +| [setCardRevisionDate(LocalDate value)](#setCardRevisionDate-java.time.LocalDate-) | DDB, Champ requis par le DHS qui indique la date de la modification ou du changement de version le plus récent du format visible du DL/ID. | +| [setComplianceType(String value)](#setComplianceType-java.lang.String-) | DDA, Champ requis par le DHS qui indique la conformité : \u201cF\u201d = conforme ; et, \u201cN\u201d = non conforme, DL/ID, F1A | +| [setEndorsementCodeDescription(String value)](#setEndorsementCodeDescription-java.lang.String-) | DCQ, Texte qui explique le(s) code(s) spécifique(s) à la juridiction indiquant les privilèges de conduite supplémentaires accordés au titulaire de la carte au-delà de la classe de véhicule, DL, V50ANS | +| [setHairColor(USADriveIdHairColor value)](#setHairColor-com.aspose.barcode.complexbarcode.USADriveIdHairColor-) | DAZ, Chauve, noir, blond, brun, gris, rouge/roux, sable, blanc, inconnu. | +| [setInventoryControlNumber(String value)](#setInventoryControlNumber-java.lang.String-) | DCK, Une chaîne de lettres et/ou de chiffres qui est apposée aux matières premières (papier cartonné, laminé, etc.) utilisées pour produire les permis de conduire et les cartes d'identité. | +| [setLimitedDurationDocIndicator(String value)](#setLimitedDurationDocIndicator-java.lang.String-) | DDD, Champ requis par le DHS qui indique que le titulaire de la carte a un statut légal temporaire = \u201c1\u201d, DL/ID, F1N | +| [setNameSuffix(String value)](#setNameSuffix-java.lang.String-) | DCU, Suffixe de nom (Si la juridiction participe à des systèmes nécessitant un suffixe de nom (PDPS, CDLIS, etc.), le suffixe doit être collecté et affiché sur le DL/ID et dans le MRT). | +| [setOrganDonorIndicator(String value)](#setOrganDonorIndicator-java.lang.String-) | DDK, Champ qui indique que le titulaire de la carte est un donneur d'organes = \u201c1\u201d, DL/ID, F1N | +| [setPlaceOfBirth(String value)](#setPlaceOfBirth-java.lang.String-) | DCI, Pays et municipalité et/ou état/province, DL/ID, V33A | +| [setRaceEthnicity(String value)](#setRaceEthnicity-java.lang.String-) | DCL, Codes de race ou d'ethnicité du titulaire de la carte, tels que définis dans AAMVA D20, DL/ID, V3A | +| [setRestrictionCodeDescription(String value)](#setRestrictionCodeDescription-java.lang.String-) | DCR, Texte décrivant le(s) code(s) de restriction spécifique(s) à la juridiction qui limitent les privilèges de conduite, DL, V50ANS | +| [setStandardEndorsementCode(String value)](#setStandardEndorsementCode-java.lang.String-) | DCN, Code(s) d'endorsement standard pour le titulaire de la carte. | +| [setStandardRestrictionCode(String value)](#setStandardRestrictionCode-java.lang.String-) | DCO, Code(s) de restriction standard pour le titulaire de la carte. | +| [setStandardVehClassification(String value)](#setStandardVehClassification-java.lang.String-) | DCM, Code(s) de classification de véhicule standard pour le titulaire de la carte. | +| [setUnder18Until(LocalDate value)](#setUnder18Until-java.time.LocalDate-) | DDH, Date à laquelle le titulaire de la carte atteint 18 ans. | +| [setUnder19Until(LocalDate value)](#setUnder19Until-java.time.LocalDate-) | DDI, Date à laquelle le titulaire de la carte atteint 19 ans. | +| [setUnder21Until(LocalDate value)](#setUnder21Until-java.time.LocalDate-) | DDJ, Date à laquelle le titulaire de la carte atteint 21 ans. | +| [setVehClassDescription(String value)](#setVehClassDescription-java.lang.String-) | DCP, Texte qui explique le(s) code(s) spécifique(s) à la juridiction pour les classifications de véhicules que le titulaire est autorisé à conduire, DL, V50ANS | +| [setVeteranIndicator(String value)](#setVeteranIndicator-java.lang.String-) | DDL, Champ qui indique que le titulaire est un vétéran = \\u201c1\\u201d, DL/ID, F1N | +| [setWeightKilograms(int value)](#setWeightKilograms-int-) | DAX, Poids du titulaire en kilogrammes, Ex. | +| [setWeightPounds(int value)](#setWeightPounds-int-) | DAW, Poids du titulaire en livres, Ex. | +| [setWeightRange(String value)](#setWeightRange-java.lang.String-) | DCE, Indique la fourchette de poids approximative du titulaire : 0 = jusqu'à 31 kg (jusqu'à 70 lb), 1 = 32 \\u2013 45 kg (71 \\u2013 100 lb), 2 = 46 - 59 kg (101 \\u2013 130 lb), 3 = 60 - 70 kg (131 \\u2013 160 lb), 4 = 71 - 86 kg (161 \\u2013 190 lb), 5 = 87 - 100 kg (191 \\u2013 220 lb), 6 = 101 - 113 kg (221 \\u2013 250 lb), 7 = 114 - 127 kg (251 \\u2013 280 lb), 8 = 128 \\u2013 145 kg (281 \\u2013 320 lb), 9 = 146+ kg (321+ lb), DL/ID, F1N | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### OptionalFields() {#OptionalFields--} +``` +public OptionalFields() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAddressStreet2() {#getAddressStreet2--} +``` +public final String getAddressStreet2() +``` + + +DAH, Deuxième ligne de la partie rue de l'adresse du titulaire de la carte, DL/ID, V35ANS + +**Returns:** +java.lang.String +### getAliasAKAFamilyName() {#getAliasAKAFamilyName--} +``` +public final String getAliasAKAFamilyName() +``` + + +DBN, Autre nom de famille sous lequel le titulaire de la carte est connu, DL/ID, V10ANS + +**Returns:** +java.lang.String +### getAliasAKAGivenName() {#getAliasAKAGivenName--} +``` +public final String getAliasAKAGivenName() +``` + + +DBG, Autre prénom sous lequel le titulaire de la carte est connu, DL/ID, V15ANS + +**Returns:** +java.lang.String +### getAliasAKASuffixName() {#getAliasAKASuffixName--} +``` +public final String getAliasAKASuffixName() +``` + + +DBS, Autre suffixe sous lequel le titulaire de la carte est connu, DL/ID, V5ANS + +**Returns:** +java.lang.String +### getAuditInformation() {#getAuditInformation--} +``` +public final String getAuditInformation() +``` + + +DCJ, Chaîne de lettres et/ou de chiffres qui identifie quand, où et par qui un permis de conduire/carte d'identité a été fabriqué. Si les informations d'audit ne sont pas utilisées sur la carte ou le MRT, elles doivent être incluses dans le dossier du conducteur, DL/ID, V25ANS + +**Returns:** +java.lang.String +### getCardRevisionDate() {#getCardRevisionDate--} +``` +public final LocalDate getCardRevisionDate() +``` + + +DDB, Champ requis par le DHS qui indique la date du changement ou de la modification de version la plus récente du format visible du DL/ID. (MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada), DL/ID, F8N + +**Returns:** +java.time.LocalDate +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getComplianceType() {#getComplianceType--} +``` +public final String getComplianceType() +``` + + +DDA, Champ requis par le DHS qui indique la conformité : \u201cF\u201d = conforme ; et, \u201cN\u201d = non conforme, DL/ID, F1A + +**Returns:** +java.lang.String +### getEndorsementCodeDescription() {#getEndorsementCodeDescription--} +``` +public final String getEndorsementCodeDescription() +``` + + +DCQ, Texte qui explique le(s) code(s) spécifique(s) à la juridiction indiquant les privilèges de conduite supplémentaires accordés au titulaire de la carte au-delà de la classe de véhicule, DL, V50ANS + +**Returns:** +java.lang.String +### getHAZMATEndorsementExpDate() {#getHAZMATEndorsementExpDate--} +``` +public final LocalDate getHAZMATEndorsementExpDate() +``` + + +DDC, Date à laquelle l'endorsement de matières dangereuses accordé par le document n'est plus valide. (MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada), DL, F8N + +**Returns:** +java.time.LocalDate +### getHairColor() {#getHairColor--} +``` +public final USADriveIdHairColor getHairColor() +``` + + +DAZ, Chauve, noir, blond, brun, gris, rouge/roux, sable, blanc, inconnu. Si la juridiction émettrice souhaite abréger les couleurs, les codes à trois caractères fournis dans AAMVA D20 doivent être utilisés, DL/ID, V12A + +**Returns:** +[USADriveIdHairColor](../../com.aspose.barcode.complexbarcode/usadriveidhaircolor) +### getInventoryControlNumber() {#getInventoryControlNumber--} +``` +public final String getInventoryControlNumber() +``` + + +DCK, Chaîne de lettres et/ou de chiffres apposée aux matières premières (papier, lamination, etc.) utilisées pour la production des permis de conduire et des cartes d'identité. (Champ recommandé par le DHS), DL/ID, V25ANS + +**Returns:** +java.lang.String +### getLimitedDurationDocIndicator() {#getLimitedDurationDocIndicator--} +``` +public final String getLimitedDurationDocIndicator() +``` + + +DDD, Champ requis par le DHS qui indique que le titulaire de la carte a un statut légal temporaire = \u201c1\u201d, DL/ID, F1N + +**Returns:** +java.lang.String +### getNameSuffix() {#getNameSuffix--} +``` +public final String getNameSuffix() +``` + + +DCU, Suffixe de nom (Si la juridiction participe à des systèmes nécessitant un suffixe de nom (PDPS, CDLIS, etc.), le suffixe doit être recueilli et affiché sur le DL/ID et dans le MRT). JR (Junior), SR (Senior), 1ST ou I (Premier), jusqu'à 9TH ou IX (Neuvième), DL/ID, V5ANS + +**Returns:** +java.lang.String +### getOrganDonorIndicator() {#getOrganDonorIndicator--} +``` +public final String getOrganDonorIndicator() +``` + + +DDK, Champ qui indique que le titulaire de la carte est un donneur d'organes = \u201c1\u201d, DL/ID, F1N + +**Returns:** +java.lang.String +### getPlaceOfBirth() {#getPlaceOfBirth--} +``` +public final String getPlaceOfBirth() +``` + + +DCI, Pays et municipalité et/ou état/province, DL/ID, V33A + +**Returns:** +java.lang.String +### getRaceEthnicity() {#getRaceEthnicity--} +``` +public final String getRaceEthnicity() +``` + + +DCL, Codes de race ou d'ethnicité du titulaire de la carte, tels que définis dans AAMVA D20, DL/ID, V3A + +**Returns:** +java.lang.String +### getRestrictionCodeDescription() {#getRestrictionCodeDescription--} +``` +public final String getRestrictionCodeDescription() +``` + + +DCR, Texte décrivant le(s) code(s) de restriction spécifique(s) à la juridiction qui limitent les privilèges de conduite, DL, V50ANS + +**Returns:** +java.lang.String +### getStandardEndorsementCode() {#getStandardEndorsementCode--} +``` +public final String getStandardEndorsementCode() +``` + + +DCN, Code(s) d'endorsement standard pour le titulaire. Voir les codes dans D20. Cet élément de données est un espace réservé aux futurs efforts de normalisation des codes d'endorsement, DL, F5AN + +**Returns:** +java.lang.String +### getStandardRestrictionCode() {#getStandardRestrictionCode--} +``` +public final String getStandardRestrictionCode() +``` + + +DCO, Code(s) de restriction standard pour le titulaire. Voir les codes dans D20. Cet élément de données est un espace réservé aux futurs efforts de normalisation des codes de restriction, DL, F12AN + +**Returns:** +java.lang.String +### getStandardVehClassification() {#getStandardVehClassification--} +``` +public final String getStandardVehClassification() +``` + + +DCM, Code(s) de classification de véhicule standard pour le titulaire. Cet élément de données est un espace réservé aux futurs efforts de normalisation des classifications de véhicules, DL, F4AN + +**Returns:** +java.lang.String +### getUnder18Until() {#getUnder18Until--} +``` +public final LocalDate getUnder18Until() +``` + + +DDH, Date à laquelle le titulaire de la carte atteint 18 ans. (MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada), DL/ID, F8N + +**Returns:** +java.time.LocalDate +### getUnder19Until() {#getUnder19Until--} +``` +public final LocalDate getUnder19Until() +``` + + +DDI, Date à laquelle le titulaire de la carte atteint 19 ans. (MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada), DL/ID, F8N + +**Returns:** +java.time.LocalDate +### getUnder21Until() {#getUnder21Until--} +``` +public final LocalDate getUnder21Until() +``` + + +DDJ, Date à laquelle le titulaire de la carte atteint 21 ans. (MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada), DL/ID, F8N + +**Returns:** +java.time.LocalDate +### getVehClassDescription() {#getVehClassDescription--} +``` +public final String getVehClassDescription() +``` + + +DCP, Texte qui explique le(s) code(s) spécifique(s) à la juridiction pour les classifications de véhicules que le titulaire est autorisé à conduire, DL, V50ANS + +**Returns:** +java.lang.String +### getVeteranIndicator() {#getVeteranIndicator--} +``` +public final String getVeteranIndicator() +``` + + +DDL, Champ qui indique que le titulaire est un vétéran = \\u201c1\\u201d, DL/ID, F1N + +**Returns:** +java.lang.String +### getWeightKilograms() {#getWeightKilograms--} +``` +public final int getWeightKilograms() +``` + + +DAX, Poids du titulaire en kilogrammes, Ex. 84 kg = \\u201c084\\u201d, DL/ID, F3N + +**Returns:** +int +### getWeightPounds() {#getWeightPounds--} +``` +public final int getWeightPounds() +``` + + +DAW, Poids du titulaire en livres, Ex. 185 lb = \\u201c185\\u201d, DL/ID, F3N + +**Returns:** +int +### getWeightRange() {#getWeightRange--} +``` +public final String getWeightRange() +``` + + +DCE, Indique la fourchette de poids approximative du titulaire : 0 = jusqu'à 31 kg (jusqu'à 70 lb), 1 = 32 \\u2013 45 kg (71 \\u2013 100 lb), 2 = 46 - 59 kg (101 \\u2013 130 lb), 3 = 60 - 70 kg (131 \\u2013 160 lb), 4 = 71 - 86 kg (161 \\u2013 190 lb), 5 = 87 - 100 kg (191 \\u2013 220 lb), 6 = 101 - 113 kg (221 \\u2013 250 lb), 7 = 114 - 127 kg (251 \\u2013 280 lb), 8 = 128 \\u2013 145 kg (281 \\u2013 320 lb), 9 = 146+ kg (321+ lb), DL/ID, F1N + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAddressStreet2(String value) {#setAddressStreet2-java.lang.String-} +``` +public final void setAddressStreet2(String value) +``` + + +DAH, Deuxième ligne de la partie rue de l'adresse du titulaire de la carte, DL/ID, V35ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setAliasAKAFamilyName(String value) {#setAliasAKAFamilyName-java.lang.String-} +``` +public final void setAliasAKAFamilyName(String value) +``` + + +DBN, Autre nom de famille sous lequel le titulaire de la carte est connu, DL/ID, V10ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setAliasAKAGivenName(String value) {#setAliasAKAGivenName-java.lang.String-} +``` +public final void setAliasAKAGivenName(String value) +``` + + +DBG, Autre prénom sous lequel le titulaire de la carte est connu, DL/ID, V15ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setAliasAKASuffixName(String value) {#setAliasAKASuffixName-java.lang.String-} +``` +public final void setAliasAKASuffixName(String value) +``` + + +DBS, Autre suffixe sous lequel le titulaire de la carte est connu, DL/ID, V5ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setAuditInformation(String value) {#setAuditInformation-java.lang.String-} +``` +public final void setAuditInformation(String value) +``` + + +DCJ, Chaîne de lettres et/ou de chiffres qui identifie quand, où et par qui un permis de conduire/carte d'identité a été fabriqué. Si les informations d'audit ne sont pas utilisées sur la carte ou le MRT, elles doivent être incluses dans le dossier du conducteur, DL/ID, V25ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setCardRevisionDate(LocalDate value) {#setCardRevisionDate-java.time.LocalDate-} +``` +public final void setCardRevisionDate(LocalDate value) +``` + + +DDB, Champ requis par le DHS qui indique la date du changement ou de la modification de version la plus récente du format visible du DL/ID. (MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada), DL/ID, F8N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.time.LocalDate | | + +### setComplianceType(String value) {#setComplianceType-java.lang.String-} +``` +public final void setComplianceType(String value) +``` + + +DDA, Champ requis par le DHS qui indique la conformité : \u201cF\u201d = conforme ; et, \u201cN\u201d = non conforme, DL/ID, F1A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setEndorsementCodeDescription(String value) {#setEndorsementCodeDescription-java.lang.String-} +``` +public final void setEndorsementCodeDescription(String value) +``` + + +DCQ, Texte qui explique le(s) code(s) spécifique(s) à la juridiction indiquant les privilèges de conduite supplémentaires accordés au titulaire de la carte au-delà de la classe de véhicule, DL, V50ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setHairColor(USADriveIdHairColor value) {#setHairColor-com.aspose.barcode.complexbarcode.USADriveIdHairColor-} +``` +public final void setHairColor(USADriveIdHairColor value) +``` + + +DAZ, Chauve, noir, blond, brun, gris, rouge/roux, sable, blanc, inconnu. Si la juridiction émettrice souhaite abréger les couleurs, les codes à trois caractères fournis dans AAMVA D20 doivent être utilisés, DL/ID, V12A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [USADriveIdHairColor](../../com.aspose.barcode.complexbarcode/usadriveidhaircolor) | | + +### setInventoryControlNumber(String value) {#setInventoryControlNumber-java.lang.String-} +``` +public final void setInventoryControlNumber(String value) +``` + + +DCK, Chaîne de lettres et/ou de chiffres apposée aux matières premières (papier, lamination, etc.) utilisées pour la production des permis de conduire et des cartes d'identité. (Champ recommandé par le DHS), DL/ID, V25ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setLimitedDurationDocIndicator(String value) {#setLimitedDurationDocIndicator-java.lang.String-} +``` +public final void setLimitedDurationDocIndicator(String value) +``` + + +DDD, Champ requis par le DHS qui indique que le titulaire de la carte a un statut légal temporaire = \u201c1\u201d, DL/ID, F1N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setNameSuffix(String value) {#setNameSuffix-java.lang.String-} +``` +public final void setNameSuffix(String value) +``` + + +DCU, Suffixe de nom (Si la juridiction participe à des systèmes nécessitant un suffixe de nom (PDPS, CDLIS, etc.), le suffixe doit être recueilli et affiché sur le DL/ID et dans le MRT). JR (Junior), SR (Senior), 1ST ou I (Premier), jusqu'à 9TH ou IX (Neuvième), DL/ID, V5ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setOrganDonorIndicator(String value) {#setOrganDonorIndicator-java.lang.String-} +``` +public final void setOrganDonorIndicator(String value) +``` + + +DDK, Champ qui indique que le titulaire de la carte est un donneur d'organes = \u201c1\u201d, DL/ID, F1N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setPlaceOfBirth(String value) {#setPlaceOfBirth-java.lang.String-} +``` +public final void setPlaceOfBirth(String value) +``` + + +DCI, Pays et municipalité et/ou état/province, DL/ID, V33A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setRaceEthnicity(String value) {#setRaceEthnicity-java.lang.String-} +``` +public final void setRaceEthnicity(String value) +``` + + +DCL, Codes de race ou d'ethnicité du titulaire de la carte, tels que définis dans AAMVA D20, DL/ID, V3A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setRestrictionCodeDescription(String value) {#setRestrictionCodeDescription-java.lang.String-} +``` +public final void setRestrictionCodeDescription(String value) +``` + + +DCR, Texte décrivant le(s) code(s) de restriction spécifique(s) à la juridiction qui limitent les privilèges de conduite, DL, V50ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setStandardEndorsementCode(String value) {#setStandardEndorsementCode-java.lang.String-} +``` +public final void setStandardEndorsementCode(String value) +``` + + +DCN, Code(s) d'endorsement standard pour le titulaire. Voir les codes dans D20. Cet élément de données est un espace réservé aux futurs efforts de normalisation des codes d'endorsement, DL, F5AN + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setStandardRestrictionCode(String value) {#setStandardRestrictionCode-java.lang.String-} +``` +public final void setStandardRestrictionCode(String value) +``` + + +DCO, Code(s) de restriction standard pour le titulaire. Voir les codes dans D20. Cet élément de données est un espace réservé aux futurs efforts de normalisation des codes de restriction, DL, F12AN + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setStandardVehClassification(String value) {#setStandardVehClassification-java.lang.String-} +``` +public final void setStandardVehClassification(String value) +``` + + +DCM, Code(s) de classification de véhicule standard pour le titulaire. Cet élément de données est un espace réservé aux futurs efforts de normalisation des classifications de véhicules, DL, F4AN + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setUnder18Until(LocalDate value) {#setUnder18Until-java.time.LocalDate-} +``` +public final void setUnder18Until(LocalDate value) +``` + + +DDH, Date à laquelle le titulaire de la carte atteint 18 ans. (MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada), DL/ID, F8N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.time.LocalDate | | + +### setUnder19Until(LocalDate value) {#setUnder19Until-java.time.LocalDate-} +``` +public final void setUnder19Until(LocalDate value) +``` + + +DDI, Date à laquelle le titulaire de la carte atteint 19 ans. (MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada), DL/ID, F8N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.time.LocalDate | | + +### setUnder21Until(LocalDate value) {#setUnder21Until-java.time.LocalDate-} +``` +public final void setUnder21Until(LocalDate value) +``` + + +DDJ, Date à laquelle le titulaire de la carte atteint 21 ans. (MMDDCCYY pour les États‑Unis, CCYYMMDD pour le Canada), DL/ID, F8N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.time.LocalDate | | + +### setVehClassDescription(String value) {#setVehClassDescription-java.lang.String-} +``` +public final void setVehClassDescription(String value) +``` + + +DCP, Texte qui explique le(s) code(s) spécifique(s) à la juridiction pour les classifications de véhicules que le titulaire est autorisé à conduire, DL, V50ANS + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setVeteranIndicator(String value) {#setVeteranIndicator-java.lang.String-} +``` +public final void setVeteranIndicator(String value) +``` + + +DDL, Champ qui indique que le titulaire est un vétéran = \\u201c1\\u201d, DL/ID, F1N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setWeightKilograms(int value) {#setWeightKilograms-int-} +``` +public final void setWeightKilograms(int value) +``` + + +DAX, Poids du titulaire en kilogrammes, Ex. 84 kg = \\u201c084\\u201d, DL/ID, F3N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setWeightPounds(int value) {#setWeightPounds-int-} +``` +public final void setWeightPounds(int value) +``` + + +DAW, Poids du titulaire en livres, Ex. 185 lb = \\u201c185\\u201d, DL/ID, F3N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setWeightRange(String value) {#setWeightRange-java.lang.String-} +``` +public final void setWeightRange(String value) +``` + + +DCE, Indique la fourchette de poids approximative du titulaire : 0 = jusqu'à 31 kg (jusqu'à 70 lb), 1 = 32 \\u2013 45 kg (71 \\u2013 100 lb), 2 = 46 - 59 kg (101 \\u2013 130 lb), 3 = 60 - 70 kg (131 \\u2013 160 lb), 4 = 71 - 86 kg (161 \\u2013 190 lb), 5 = 87 - 100 kg (191 \\u2013 220 lb), 6 = 101 - 113 kg (221 \\u2013 250 lb), 7 = 114 - 127 kg (251 \\u2013 280 lb), 8 = 128 \\u2013 145 kg (281 \\u2013 320 lb), 9 = 146+ kg (321+ lb), DL/ID, F1N + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/primarydata/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/primarydata/_index.md new file mode 100644 index 000000000..f18ba6646 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/primarydata/_index.md @@ -0,0 +1,224 @@ +--- +title: PrimaryData +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour stocker les données primaires HIBC LIC. +type: docs +weight: 34 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/primarydata/ +--- +**Inheritance:** +java.lang.Object +``` +public class PrimaryData +``` + +Classe pour stocker les données primaires HIBC LIC. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [PrimaryData()](#PrimaryData--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égée à une valeur spécifiée PrimaryData. | +| [getClass()](#getClass--) | | +| [getLabelerIdentificationCode()](#getLabelerIdentificationCode--) | Identifie la date du code d'identification de l'étiqueteur. | +| [getProductOrCatalogNumber()](#getProductOrCatalogNumber--) | Identifie le numéro de produit ou de catalogue. | +| [getUnitOfMeasureID()](#getUnitOfMeasureID--) | Identifie l'ID de l'unité de mesure. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parseFromString(String primaryDataCodetext)](#parseFromString-java.lang.String-) | Instancie les données principales à partir d'un format de chaîne conformément à la spécification HIBC LIC. | +| [setLabelerIdentificationCode(String value)](#setLabelerIdentificationCode-java.lang.String-) | Identifie la date du code d'identification de l'étiqueteur. | +| [setProductOrCatalogNumber(String value)](#setProductOrCatalogNumber-java.lang.String-) | Identifie le numéro de produit ou de catalogue. | +| [setUnitOfMeasureID(int value)](#setUnitOfMeasureID-int-) | Identifie l'ID de l'unité de mesure. | +| [toString()](#toString--) | Convertit les données au format de chaîne selon la spécification HIBC LIC. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### PrimaryData() {#PrimaryData--} +``` +public PrimaryData() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égée à une valeur spécifiée PrimaryData. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur PrimaryData à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLabelerIdentificationCode() {#getLabelerIdentificationCode--} +``` +public String getLabelerIdentificationCode() +``` + + +Identifie la date du code d'identification du labelisateur. Le code d'identification du labelisateur doit être une chaîne alphanumérique de 4 symboles, le premier caractère étant toujours alphabétique. + +**Returns:** +java.lang.String +### getProductOrCatalogNumber() {#getProductOrCatalogNumber--} +``` +public String getProductOrCatalogNumber() +``` + + +Identifie le numéro de produit ou de catalogue. Le numéro de produit ou de catalogue doit être une chaîne alphanumérique d'une longueur maximale de 18 symboles. + +**Returns:** +java.lang.String +### getUnitOfMeasureID() {#getUnitOfMeasureID--} +``` +public int getUnitOfMeasureID() +``` + + +Identifie l'ID de l'unité de mesure. L'ID de l'unité de mesure doit être une valeur entière de 0 à 9. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parseFromString(String primaryDataCodetext) {#parseFromString-java.lang.String-} +``` +public void parseFromString(String primaryDataCodetext) +``` + + +Instancie les données principales à partir d'un format de chaîne conformément à la spécification HIBC LIC. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| primaryDataCodetext | java.lang.String | Chaîne formatée. | + +### setLabelerIdentificationCode(String value) {#setLabelerIdentificationCode-java.lang.String-} +``` +public void setLabelerIdentificationCode(String value) +``` + + +Identifie la date du code d'identification du labelisateur. Le code d'identification du labelisateur doit être une chaîne alphanumérique de 4 symboles, le premier caractère étant toujours alphabétique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setProductOrCatalogNumber(String value) {#setProductOrCatalogNumber-java.lang.String-} +``` +public void setProductOrCatalogNumber(String value) +``` + + +Identifie le numéro de produit ou de catalogue. Le numéro de produit ou de catalogue doit être une chaîne alphanumérique d'une longueur maximale de 18 symboles. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setUnitOfMeasureID(int value) {#setUnitOfMeasureID-int-} +``` +public void setUnitOfMeasureID(int value) +``` + + +Identifie l'ID de l'unité de mesure. L'ID de l'unité de mesure doit être une valeur entière de 0 à 9. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Convertit les données au format de chaîne selon la spécification HIBC LIC. + +**Returns:** +java.lang.String - Chaîne formatée. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/qrbillstandardversion/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/qrbillstandardversion/_index.md new file mode 100644 index 000000000..e5f669e92 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/qrbillstandardversion/_index.md @@ -0,0 +1,252 @@ +--- +title: QrBillStandardVersion +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Version standard de la facture SwissQR +type: docs +weight: 44 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/qrbillstandardversion/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum QrBillStandardVersion extends Enum +``` + +Version standard de la facture SwissQR +## Champs + +| Champ | Description | +| --- | --- | +| [V2_0](#V2-0) | Version 2.0 | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### V2_0 {#V2-0} +``` +public static final QrBillStandardVersion V2_0 +``` + + +Version 2.0 + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static QrBillStandardVersion valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[QrBillStandardVersion](../../com.aspose.barcode.complexbarcode/qrbillstandardversion) +### values() {#values--} +``` +public static QrBillStandardVersion[] values() +``` + + + + +**Returns:** +com.aspose.barcode.complexbarcode.QrBillStandardVersion[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/secondaryandadditionaldata/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/secondaryandadditionaldata/_index.md new file mode 100644 index 000000000..412ca8a02 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/secondaryandadditionaldata/_index.md @@ -0,0 +1,299 @@ +--- +title: SecondaryAndAdditionalData +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour stocker les données secondaires et supplémentaires HIBC LIC. +type: docs +weight: 35 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/secondaryandadditionaldata/ +--- +**Inheritance:** +java.lang.Object +``` +public class SecondaryAndAdditionalData +``` + +Classe pour stocker les données secondaires et supplémentaires HIBC LIC. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [SecondaryAndAdditionalData()](#SecondaryAndAdditionalData--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée SecondaryAndAdditionalData. | +| [getClass()](#getClass--) | | +| [getDateOfManufacture()](#getDateOfManufacture--) | Identifie la date de fabrication. | +| [getExpiryDate()](#getExpiryDate--) | Identifie la date d'expiration. | +| [getExpiryDateFormat()](#getExpiryDateFormat--) | Identifie le format de la date d'expiration. | +| [getLotNumber()](#getLotNumber--) | Identifie le numéro de lot ou de lot. | +| [getQuantity()](#getQuantity--) | Identifie la quantité, doit être une valeur entière de 0 à 500. | +| [getSerialNumber()](#getSerialNumber--) | Identifie le numéro de série. | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parseFromString(String secondaryDataCodetext)](#parseFromString-java.lang.String-) | Instancie les données supplémentaires secondaires et additionnelles à partir du format de chaîne selon la spécification HIBC LIC. | +| [setDateOfManufacture(LocalDateTime value)](#setDateOfManufacture-java.time.LocalDateTime-) | Identifie la date de fabrication. | +| [setExpiryDate(LocalDateTime value)](#setExpiryDate-java.time.LocalDateTime-) | Identifie la date d'expiration. | +| [setExpiryDateFormat(HIBCLICDateFormat value)](#setExpiryDateFormat-com.aspose.barcode.complexbarcode.HIBCLICDateFormat-) | Identifie le format de la date d'expiration. | +| [setLotNumber(String value)](#setLotNumber-java.lang.String-) | Identifie le numéro de lot ou de lot. | +| [setQuantity(int value)](#setQuantity-int-) | Identifie la quantité, doit être une valeur entière de 0 à 500. | +| [setSerialNumber(String value)](#setSerialNumber-java.lang.String-) | Identifie le numéro de série. | +| [toString()](#toString--) | Convertit les données au format de chaîne selon la spécification HIBC LIC. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### SecondaryAndAdditionalData() {#SecondaryAndAdditionalData--} +``` +public SecondaryAndAdditionalData() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée SecondaryAndAdditionalData. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Une valeur SecondaryAndAdditionalData à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDateOfManufacture() {#getDateOfManufacture--} +``` +public LocalDateTime getDateOfManufacture() +``` + + +Identifie la date de fabrication. La date de fabrication peut être définie à DateTime.MinValue afin de ne pas utiliser ce champ. Valeur par défaut : DateTime.MinValue + +**Returns:** +java.time.LocalDateTime +### getExpiryDate() {#getExpiryDate--} +``` +public LocalDateTime getExpiryDate() +``` + + +Identifie la date d'expiration. Sera utilisée si ExpiryDateFormat n'est pas défini sur None. + +**Returns:** +java.time.LocalDateTime +### getExpiryDateFormat() {#getExpiryDateFormat--} +``` +public HIBCLICDateFormat getExpiryDateFormat() +``` + + +Identifie le format de la date d'expiration. + +**Returns:** +[HIBCLICDateFormat](../../com.aspose.barcode.complexbarcode/hibclicdateformat) +### getLotNumber() {#getLotNumber--} +``` +public String getLotNumber() +``` + + +Identifie le numéro de lot ou de lot. Le numéro de lot/do lot doit être une chaîne alphanumérique d'une longueur maximale de 18 symboles. + +**Returns:** +java.lang.String +### getQuantity() {#getQuantity--} +``` +public int getQuantity() +``` + + +Identifie la quantité, doit être une valeur entière de 0 à 500. La quantité peut être définie à -1 afin de ne pas utiliser ce champ. Valeur par défaut : -1 + +**Returns:** +int +### getSerialNumber() {#getSerialNumber--} +``` +public String getSerialNumber() +``` + + +Identifie le numéro de série. Le numéro de série doit être une chaîne alphanumérique d'une longueur maximale de 18 symboles. + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parseFromString(String secondaryDataCodetext) {#parseFromString-java.lang.String-} +``` +public void parseFromString(String secondaryDataCodetext) +``` + + +Instancie les données supplémentaires secondaires et additionnelles à partir du format de chaîne selon la spécification HIBC LIC. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| secondaryDataCodetext | java.lang.String | Chaîne formatée. | + +### setDateOfManufacture(LocalDateTime value) {#setDateOfManufacture-java.time.LocalDateTime-} +``` +public void setDateOfManufacture(LocalDateTime value) +``` + + +Identifie la date de fabrication. La date de fabrication peut être définie à DateTime.MinValue afin de ne pas utiliser ce champ. Valeur par défaut : DateTime.MinValue + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.time.LocalDateTime | | + +### setExpiryDate(LocalDateTime value) {#setExpiryDate-java.time.LocalDateTime-} +``` +public void setExpiryDate(LocalDateTime value) +``` + + +Identifie la date d'expiration. Sera utilisée si ExpiryDateFormat n'est pas défini sur None. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.time.LocalDateTime | | + +### setExpiryDateFormat(HIBCLICDateFormat value) {#setExpiryDateFormat-com.aspose.barcode.complexbarcode.HIBCLICDateFormat-} +``` +public void setExpiryDateFormat(HIBCLICDateFormat value) +``` + + +Identifie le format de la date d'expiration. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [HIBCLICDateFormat](../../com.aspose.barcode.complexbarcode/hibclicdateformat) | | + +### setLotNumber(String value) {#setLotNumber-java.lang.String-} +``` +public void setLotNumber(String value) +``` + + +Identifie le numéro de lot ou de lot. Le numéro de lot/do lot doit être une chaîne alphanumérique d'une longueur maximale de 18 symboles. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setQuantity(int value) {#setQuantity-int-} +``` +public void setQuantity(int value) +``` + + +Identifie la quantité, doit être une valeur entière de 0 à 500. La quantité peut être définie à -1 afin de ne pas utiliser ce champ. Valeur par défaut : -1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setSerialNumber(String value) {#setSerialNumber-java.lang.String-} +``` +public void setSerialNumber(String value) +``` + + +Identifie le numéro de série. Le numéro de série doit être une chaîne alphanumérique d'une longueur maximale de 18 symboles. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Convertit les données au format de chaîne selon la spécification HIBC LIC. + +**Returns:** +java.lang.String - Chaîne formatée. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/subfileproperties/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/subfileproperties/_index.md new file mode 100644 index 000000000..3b882c551 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/subfileproperties/_index.md @@ -0,0 +1,215 @@ +--- +title: USADriveIdCodetext.SubfileProperties +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Les décalages et longueurs des sous‑fichiers du permis de conduire américain (USA DL) sont définis automatiquement. +type: docs +weight: 12 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext.subfileproperties/ +--- +**Inheritance:** +java.lang.Object +``` +public static class USADriveIdCodetext.SubfileProperties +``` + +Les propriétés du sous-fichier USA DL, le décalage et la longueur sont définis automatiquement. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [SubfileProperties(String type)](#SubfileProperties-java.lang.String-) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getLength()](#getLength--) | 4 Ces octets contiennent une valeur numérique à 4 chiffres qui indique la longueur du Subfile en octets. Le terminateur de segment doit être inclus dans le calcul de la longueur du sous‑fichier. Un terminateur de segment = 1. | +| [getOffset()](#getOffset--) | Valeur numérique à 4 chiffres qui indique le nombre d'octets depuis le début du fichier jusqu'à l'emplacement des données liées au sous‑fichier particulier. Le premier octet du fichier se trouve à l'offset 0. | +| [getType()](#getType--) | Type de sous‑fichier sur 2 octets, comme "DL" | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setLength(int value)](#setLength-int-) | 4 Ces octets contiennent une valeur numérique à 4 chiffres qui indique la longueur du Subfile en octets. Le terminateur de segment doit être inclus dans le calcul de la longueur du sous‑fichier. Un terminateur de segment = 1. | +| [setOffset(int value)](#setOffset-int-) | Valeur numérique à 4 chiffres qui indique le nombre d'octets depuis le début du fichier jusqu'à l'emplacement des données liées au sous‑fichier particulier. Le premier octet du fichier se trouve à l'offset 0. | +| [setType(String value)](#setType-java.lang.String-) | Type de sous‑fichier sur 2 octets, comme "DL" | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### SubfileProperties(String type) {#SubfileProperties-java.lang.String-} +``` +public SubfileProperties(String type) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| type | java.lang.String | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLength() {#getLength--} +``` +public final int getLength() +``` + + +4 Ces octets contiennent une valeur numérique à 4 chiffres qui spécifie la longueur du Subfile en octets. Le terminateur de segment doit être inclus dans le calcul de la longueur du sous‑fichier. Un terminateur de segment = 1. Chaque sous‑fichier doit commencer par le Type de Subfile à deux caractères et ces deux caractères doivent également être inclus dans la longueur. + +**Returns:** +int +### getOffset() {#getOffset--} +``` +public final int getOffset() +``` + + +Valeur numérique à 4 chiffres qui indique le nombre d'octets depuis le début du fichier jusqu'à l'emplacement des données liées au sous‑fichier particulier. Le premier octet du fichier se trouve à l'offset 0. + +**Returns:** +int +### getType() {#getType--} +``` +public final String getType() +``` + + +Type de sous‑fichier sur 2 octets, comme "DL" + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setLength(int value) {#setLength-int-} +``` +public final void setLength(int value) +``` + + +4 Ces octets contiennent une valeur numérique à 4 chiffres qui spécifie la longueur du Subfile en octets. Le terminateur de segment doit être inclus dans le calcul de la longueur du sous‑fichier. Un terminateur de segment = 1. Chaque sous‑fichier doit commencer par le Type de Subfile à deux caractères et ces deux caractères doivent également être inclus dans la longueur. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setOffset(int value) {#setOffset-int-} +``` +public final void setOffset(int value) +``` + + +Valeur numérique à 4 chiffres qui indique le nombre d'octets depuis le début du fichier jusqu'à l'emplacement des données liées au sous‑fichier particulier. Le premier octet du fichier se trouve à l'offset 0. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setType(String value) {#setType-java.lang.String-} +``` +public final void setType(String value) +``` + + +Type de sous‑fichier sur 2 octets, comme "DL" + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/swissqrbill/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/swissqrbill/_index.md new file mode 100644 index 000000000..c520ad932 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/swissqrbill/_index.md @@ -0,0 +1,458 @@ +--- +title: SwissQRBill +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Données de facture SwissQR +type: docs +weight: 36 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/swissqrbill/ +--- +**Inheritance:** +java.lang.Object +``` +public final class SwissQRBill +``` + +Données de facture SwissQR +## Méthodes + +| Méthode | Description | +| --- | --- | +| [createAndSetCreditorReference(String rawReference)](#createAndSetCreditorReference-java.lang.String-) | Creates and sets a ISO11649 creditor reference from a raw string by prefixing the String with "RF" and the modulo 97 checksum. | +| [equals(Object obj)](#equals-java.lang.Object-) | Détermine si l'objet spécifié est égal à l'objet actuel. | +| [getAccount()](#getAccount--) | Gets the creditor's account number. | +| [getAlternativeSchemes()](#getAlternativeSchemes--) | Obtient ou définit les schémas de paiement alternatifs. | +| [getAmount()](#getAmount--) | Obtient le montant du paiement. | +| [getBillInformation()](#getBillInformation--) | Obtient les informations de facture structurées supplémentaires. | +| [getClass()](#getClass--) | | +| [getCreditor()](#getCreditor--) | Obtient l'adresse du créancier. | +| [getCurrency()](#getCurrency--) | Obtient la devise du paiement. | +| [getDebtor()](#getDebtor--) | Obtient l'adresse du débiteur. | +| [getReference()](#getReference--) | Obtient la référence de paiement du créancier. | +| [getUnstructuredMessage()](#getUnstructuredMessage--) | Obtient le message non structuré supplémentaire. | +| [getVersion()](#getVersion--) | Obtient la version de la norme de facture SwissQR. | +| [hashCode()](#hashCode--) | Gets the hash code for this instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAccount(String value)](#setAccount-java.lang.String-) | Définit le numéro de compte du créancier. | +| [setAlternativeSchemes(List value)](#setAlternativeSchemes-java.util.List-com.aspose.barcode.complexbarcode.AlternativeScheme--) | Obtient ou définit les schémas de paiement alternatifs. | +| [setAmount(double value)](#setAmount-double-) | Définit le montant du paiement. | +| [setBillInformation(String value)](#setBillInformation-java.lang.String-) | Définit les informations de facture structurées supplémentaires. | +| [setCreditor(Address value)](#setCreditor-com.aspose.barcode.complexbarcode.Address-) | Définit l'adresse du créancier. | +| [setCurrency(String value)](#setCurrency-java.lang.String-) | Définit la devise du paiement. | +| [setDebtor(Address value)](#setDebtor-com.aspose.barcode.complexbarcode.Address-) | Définit l'adresse du débiteur. | +| [setReference(String value)](#setReference-java.lang.String-) | Définit la référence de paiement du créancier. | +| [setUnstructuredMessage(String value)](#setUnstructuredMessage-java.lang.String-) | Définit le message non structuré supplémentaire. | +| [setVersion(QrBillStandardVersion value)](#setVersion-com.aspose.barcode.complexbarcode.QrBillStandardVersion-) | Définit la version de la norme de facture SwissQR. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### createAndSetCreditorReference(String rawReference) {#createAndSetCreditorReference-java.lang.String-} +``` +public void createAndSetCreditorReference(String rawReference) +``` + + +Creates and sets a ISO11649 creditor reference from a raw string by prefixing the String with "RF" and the modulo 97 checksum. + +Les espaces blancs sont supprimés de la référence + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| rawReference | java.lang.String | La référence brute. | + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Détermine si l'objet spécifié est égal à l'objet actuel. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | The object to compare with the current object. | + +**Returns:** +boolean - true if the specified object is equal to the current object; otherwise, false . +### getAccount() {#getAccount--} +``` +public String getAccount() +``` + + +Gets the creditor's account number. + +Les numéros de compte doivent être des IBAN valides d'une banque de Suisse ou du Liechtenstein. Les espaces sont autorisés dans le numéro de compte. + +Valeur : le numéro de compte du créancier. + +**Returns:** +java.lang.String +### getAlternativeSchemes() {#getAlternativeSchemes--} +``` +public List getAlternativeSchemes() +``` + + +Obtient ou définit les schémas de paiement alternatifs. + +Un maximum de deux schémas avec paramètres est autorisé. + +Valeur : les schémas de paiement alternatifs. + +**Returns:** +java.util.List +### getAmount() {#getAmount--} +``` +public double getAmount() +``` + + +Obtient le montant du paiement. + +Les valeurs valides sont comprises entre 0,01 et 999 999 999,99. + +Valeur : le montant du paiement. + +**Returns:** +double +### getBillInformation() {#getBillInformation--} +``` +public String getBillInformation() +``` + + +Obtient les informations de facture structurées supplémentaires. + +Valeur : les informations de facture structurées. + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCreditor() {#getCreditor--} +``` +public Address getCreditor() +``` + + +Obtient l'adresse du créancier. + +Valeur : l’adresse du créancier. + +**Returns:** +[Address](../../com.aspose.barcode.complexbarcode/address) +### getCurrency() {#getCurrency--} +``` +public String getCurrency() +``` + + +Obtient la devise du paiement. + +Les valeurs valides sont "CHF" et "EUR". + +Valeur : la devise du paiement. + +**Returns:** +java.lang.String +### getDebtor() {#getDebtor--} +``` +public Address getDebtor() +``` + + +Obtient l'adresse du débiteur. + +Le débiteur est facultatif. S’il est omis, il est acceptable de mettre ce champ à null ou de définir une adresse avec toutes les valeurs null ou vides. + +Valeur : l’adresse du débiteur. + +**Returns:** +[Address](../../com.aspose.barcode.complexbarcode/address) +### getReference() {#getReference--} +``` +public String getReference() +``` + + +Obtient la référence de paiement du créancier. + +La référence est obligatoire pour les IBAN SwissQR, c.-à-d. les IBAN dans la plage CHxx30000xxxxxx à CHxx31999xxxxx. + +Si spécifiée, la référence doit être soit une référence SwissQR valide (correspondant au formulaire de référence ISR), soit une référence de créancier valide selon la norme ISO 11649 ("RFxxxx"). Les deux peuvent contenir des espaces pour le formatage. + +Valeur : la référence de paiement du créancier. + +**Returns:** +java.lang.String +### getUnstructuredMessage() {#getUnstructuredMessage--} +``` +public String getUnstructuredMessage() +``` + + +Obtient le message non structuré supplémentaire. + +Valeur : le message non structuré. + +**Returns:** +java.lang.String +### getVersion() {#getVersion--} +``` +public QrBillStandardVersion getVersion() +``` + + +Obtient la version de la norme de facture SwissQR. + +Valeur : la version du standard de facture SwissQR. + +**Returns:** +[QrBillStandardVersion](../../com.aspose.barcode.complexbarcode/qrbillstandardversion) +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Gets the hash code for this instance. + +**Returns:** +int - A hash code for the current object. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAccount(String value) {#setAccount-java.lang.String-} +``` +public void setAccount(String value) +``` + + +Définit le numéro de compte du créancier. + +Les numéros de compte doivent être des IBAN valides d'une banque de Suisse ou du Liechtenstein. Les espaces sont autorisés dans le numéro de compte. + +Valeur : le numéro de compte du créancier. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setAlternativeSchemes(List value) {#setAlternativeSchemes-java.util.List-com.aspose.barcode.complexbarcode.AlternativeScheme--} +``` +public void setAlternativeSchemes(List value) +``` + + +Obtient ou définit les schémas de paiement alternatifs. + +Un maximum de deux schémas avec paramètres est autorisé. + +Valeur : les schémas de paiement alternatifs. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.util.List | | + +### setAmount(double value) {#setAmount-double-} +``` +public void setAmount(double value) +``` + + +Définit le montant du paiement. + +Les valeurs valides sont comprises entre 0,01 et 999 999 999,99. + +Valeur : le montant du paiement. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | | + +### setBillInformation(String value) {#setBillInformation-java.lang.String-} +``` +public void setBillInformation(String value) +``` + + +Définit les informations de facture structurées supplémentaires. + +Valeur : les informations de facture structurées. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setCreditor(Address value) {#setCreditor-com.aspose.barcode.complexbarcode.Address-} +``` +public void setCreditor(Address value) +``` + + +Définit l'adresse du créancier. + +Valeur : l’adresse du créancier. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Address](../../com.aspose.barcode.complexbarcode/address) | | + +### setCurrency(String value) {#setCurrency-java.lang.String-} +``` +public void setCurrency(String value) +``` + + +Définit la devise du paiement. + +Les valeurs valides sont "CHF" et "EUR". + +Valeur : la devise du paiement. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setDebtor(Address value) {#setDebtor-com.aspose.barcode.complexbarcode.Address-} +``` +public void setDebtor(Address value) +``` + + +Définit l'adresse du débiteur. + +Le débiteur est facultatif. S’il est omis, il est acceptable de mettre ce champ à null ou de définir une adresse avec toutes les valeurs null ou vides. + +Valeur : l’adresse du débiteur. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Address](../../com.aspose.barcode.complexbarcode/address) | | + +### setReference(String value) {#setReference-java.lang.String-} +``` +public void setReference(String value) +``` + + +Définit la référence de paiement du créancier. + +La référence est obligatoire pour les IBAN SwissQR, c.-à-d. les IBAN dans la plage CHxx30000xxxxxx à CHxx31999xxxxx. + +Si spécifiée, la référence doit être soit une référence SwissQR valide (correspondant au formulaire de référence ISR), soit une référence de créancier valide selon la norme ISO 11649 ("RFxxxx"). Les deux peuvent contenir des espaces pour le formatage. + +Valeur : la référence de paiement du créancier. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setUnstructuredMessage(String value) {#setUnstructuredMessage-java.lang.String-} +``` +public void setUnstructuredMessage(String value) +``` + + +Définit le message non structuré supplémentaire. + +Valeur : le message non structuré. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setVersion(QrBillStandardVersion value) {#setVersion-com.aspose.barcode.complexbarcode.QrBillStandardVersion-} +``` +public void setVersion(QrBillStandardVersion value) +``` + + +Définit la version de la norme de facture SwissQR. + +Valeur : la version du standard de facture SwissQR. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [QrBillStandardVersion](../../com.aspose.barcode.complexbarcode/qrbillstandardversion) | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/swissqrcodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/swissqrcodetext/_index.md new file mode 100644 index 000000000..a0ff97bf6 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/swissqrcodetext/_index.md @@ -0,0 +1,201 @@ +--- +title: SwissQRCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le texte intégré dans le code SwissQR. +type: docs +weight: 37 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/swissqrcodetext/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.barcode.complexbarcode.IComplexCodetext](../../com.aspose.barcode.complexbarcode/icomplexcodetext) +``` +public final class SwissQRCodetext implements IComplexCodetext +``` + +Classe pour encoder et décoder le texte intégré dans le code SwissQR. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [SwissQRCodetext(SwissQRBill bill)](#SwissQRCodetext-com.aspose.barcode.complexbarcode.SwissQRBill-) | Crée une instance de SwissQRCodetext. | +| [SwissQRCodetext()](#SwissQRCodetext--) | Crée une instance de SwissQRCodetext. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBarcodeType()](#getBarcodeType--) | Obtient le type de code-barres. | +| [getBill()](#getBill--) | Données de facture SwissQR | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construit le codetext à partir des données de facture SwissQR. | +| [hashCode()](#hashCode--) | | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initializes Bill with constructed codetext. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### SwissQRCodetext(SwissQRBill bill) {#SwissQRCodetext-com.aspose.barcode.complexbarcode.SwissQRBill-} +``` +public SwissQRCodetext(SwissQRBill bill) +``` + + +Crée une instance de SwissQRCodetext. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| bill | [SwissQRBill](../../com.aspose.barcode.complexbarcode/swissqrbill) | Données de facture SwissQR | + +### SwissQRCodetext() {#SwissQRCodetext--} +``` +public SwissQRCodetext() +``` + + +Crée une instance de SwissQRCodetext. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBarcodeType() {#getBarcodeType--} +``` +public BaseEncodeType getBarcodeType() +``` + + +Obtient le type de code-barres. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. +### getBill() {#getBill--} +``` +public SwissQRBill getBill() +``` + + +Données de facture SwissQR + +**Returns:** +[SwissQRBill](../../com.aspose.barcode.complexbarcode/swissqrbill) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public String getConstructedCodetext() +``` + + +Construit le codetext à partir des données de facture SwissQR. + +**Returns:** +java.lang.String - Texte de code construit +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public void initFromString(String constructedCodetext) +``` + + +Initializes Bill with constructed codetext. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit. | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext/_index.md new file mode 100644 index 000000000..34c061445 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext/_index.md @@ -0,0 +1,390 @@ +--- +title: USADriveIdCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour encoder et décoder le texte intégré dans le code PDF417 du permis de conduire américain. +type: docs +weight: 38 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.barcode.complexbarcode.IComplexCodetext](../../com.aspose.barcode.complexbarcode/icomplexcodetext) +``` +public final class USADriveIdCodetext implements IComplexCodetext +``` + +Classe pour encoder et décoder le texte intégré dans le code PDF417 du permis de conduire américain. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [USADriveIdCodetext()](#USADriveIdCodetext--) | Constructeur par défaut | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAAMVAVersionNumber()](#getAAMVAVersionNumber--) | Numéro de version AAMVA 00-99 | +| [getBarcodeType()](#getBarcodeType--) | Renvoie le type de code-barres du permis de conduire USA (Pdf417) | +| [getClass()](#getClass--) | | +| [getConstructedCodetext()](#getConstructedCodetext--) | Construire le codetext à partir des données du permis de conduire USA | +| [getIssuerIdentificationNumber()](#getIssuerIdentificationNumber--) | Ce numéro identifie de manière unique la juridiction émettrice et peut être obtenu en contactant l'Autorité d'émission ISO (AAMVA). | +| [getJurisdictionSpecificSubfile()](#getJurisdictionSpecificSubfile--) | Champs spécifiques à la juridiction | +| [getJurisdictionVersionNumber()](#getJurisdictionVersionNumber--) | Numéro de version de la juridiction 00-99 | +| [getMandatoryElements()](#getMandatoryElements--) | Éléments obligatoires (champs) de la carte | +| [getNumberOfEntries()](#getNumberOfEntries--) | Nombre 00-99 de sous‑fichiers | +| [getOptionalElements()](#getOptionalElements--) | Éléments optionnels (champs) de la carte | +| [getSubfileDesignator()](#getSubfileDesignator--) | Contient des informations sur les sous‑fichiers suivants, leurs types, décalages et longueurs. | +| [hashCode()](#hashCode--) | | +| [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initialiser l'objet USA DL à partir du codetext | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [saveToXml(OutputStream stream)](#saveToXml-java.io.OutputStream-) | Enregistre en XML | +| [setAAMVAVersionNumber(String value)](#setAAMVAVersionNumber-java.lang.String-) | Numéro de version AAMVA 00-99 | +| [setIssuerIdentificationNumber(String value)](#setIssuerIdentificationNumber-java.lang.String-) | Ce numéro identifie de manière unique la juridiction émettrice et peut être obtenu en contactant l'Autorité d'émission ISO (AAMVA). | +| [setJurisdictionSpecificSubfile(USADriveIdJurisdSubfile value)](#setJurisdictionSpecificSubfile-com.aspose.barcode.complexbarcode.USADriveIdJurisdSubfile-) | Champs spécifiques à la juridiction | +| [setJurisdictionVersionNumber(String value)](#setJurisdictionVersionNumber-java.lang.String-) | Numéro de version de la juridiction 00-99 | +| [setMandatoryElements(USADriveIdCodetext.MandatoryFields value)](#setMandatoryElements-com.aspose.barcode.complexbarcode.USADriveIdCodetext.MandatoryFields-) | Éléments obligatoires (champs) de la carte | +| [setNumberOfEntries(int value)](#setNumberOfEntries-int-) | Nombre 00-99 de sous‑fichiers | +| [setOptionalElements(USADriveIdCodetext.OptionalFields value)](#setOptionalElements-com.aspose.barcode.complexbarcode.USADriveIdCodetext.OptionalFields-) | Éléments optionnels (champs) de la carte | +| [setSubfileDesignator(List value)](#setSubfileDesignator-java.util.List-com.aspose.barcode.complexbarcode.USADriveIdCodetext.SubfileProperties--) | Contient des informations sur les sous‑fichiers suivants, leurs types, décalages et longueurs. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### USADriveIdCodetext() {#USADriveIdCodetext--} +``` +public USADriveIdCodetext() +``` + + +Constructeur par défaut + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAAMVAVersionNumber() {#getAAMVAVersionNumber--} +``` +public final String getAAMVAVersionNumber() +``` + + +Numéro de version AAMVA 00-99 + +**Returns:** +java.lang.String +### getBarcodeType() {#getBarcodeType--} +``` +public final BaseEncodeType getBarcodeType() +``` + + +Renvoie le type de code-barres du permis de conduire USA (Pdf417) + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type (Pdf417) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConstructedCodetext() {#getConstructedCodetext--} +``` +public final String getConstructedCodetext() +``` + + +Construire le codetext à partir des données du permis de conduire USA + +**Returns:** +java.lang.String - Texte de code construit +### getIssuerIdentificationNumber() {#getIssuerIdentificationNumber--} +``` +public final String getIssuerIdentificationNumber() +``` + + +Ce numéro identifie de manière unique la juridiction émettrice et peut être obtenu en contactant l'Autorité d'émission ISO (AAMVA). Le IIN complet à 6 chiffres doit être encodé. + +**Returns:** +java.lang.String +### getJurisdictionSpecificSubfile() {#getJurisdictionSpecificSubfile--} +``` +public final USADriveIdJurisdSubfile getJurisdictionSpecificSubfile() +``` + + +Champs spécifiques à la juridiction + +**Returns:** +[USADriveIdJurisdSubfile](../../com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile) +### getJurisdictionVersionNumber() {#getJurisdictionVersionNumber--} +``` +public final String getJurisdictionVersionNumber() +``` + + +Numéro de version de la juridiction 00-99 + +**Returns:** +java.lang.String +### getMandatoryElements() {#getMandatoryElements--} +``` +public final USADriveIdCodetext.MandatoryFields getMandatoryElements() +``` + + +Éléments obligatoires (champs) de la carte + +**Returns:** +com.aspose.barcode.complexbarcode.USADriveIdCodetext.MandatoryFields +### getNumberOfEntries() {#getNumberOfEntries--} +``` +public final int getNumberOfEntries() +``` + + +Nombre 00-99 de sous‑fichiers + +**Returns:** +int +### getOptionalElements() {#getOptionalElements--} +``` +public final USADriveIdCodetext.OptionalFields getOptionalElements() +``` + + +Éléments optionnels (champs) de la carte + +**Returns:** +com.aspose.barcode.complexbarcode.USADriveIdCodetext.OptionalFields +### getSubfileDesignator() {#getSubfileDesignator--} +``` +public final List getSubfileDesignator() +``` + + +Contient des informations sur les sous‑fichiers suivants, leurs types, décalages et longueurs. Important : définissez uniquement le type, le décalage et la longueur seront définis automatiquement. + +**Returns:** +java.util.List +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} +``` +public final void initFromString(String constructedCodetext) +``` + + +Initialiser l'objet USA DL à partir du codetext + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| constructedCodetext | java.lang.String | Texte de code construit | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### saveToXml(OutputStream stream) {#saveToXml-java.io.OutputStream-} +``` +public final void saveToXml(OutputStream stream) +``` + + +Enregistre en XML + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | Flux à enregistrer | + +### setAAMVAVersionNumber(String value) {#setAAMVAVersionNumber-java.lang.String-} +``` +public final void setAAMVAVersionNumber(String value) +``` + + +Numéro de version AAMVA 00-99 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setIssuerIdentificationNumber(String value) {#setIssuerIdentificationNumber-java.lang.String-} +``` +public final void setIssuerIdentificationNumber(String value) +``` + + +Ce numéro identifie de manière unique la juridiction émettrice et peut être obtenu en contactant l'Autorité d'émission ISO (AAMVA). Le IIN complet à 6 chiffres doit être encodé. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setJurisdictionSpecificSubfile(USADriveIdJurisdSubfile value) {#setJurisdictionSpecificSubfile-com.aspose.barcode.complexbarcode.USADriveIdJurisdSubfile-} +``` +public final void setJurisdictionSpecificSubfile(USADriveIdJurisdSubfile value) +``` + + +Champs spécifiques à la juridiction + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [USADriveIdJurisdSubfile](../../com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile) | | + +### setJurisdictionVersionNumber(String value) {#setJurisdictionVersionNumber-java.lang.String-} +``` +public final void setJurisdictionVersionNumber(String value) +``` + + +Numéro de version de la juridiction 00-99 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setMandatoryElements(USADriveIdCodetext.MandatoryFields value) {#setMandatoryElements-com.aspose.barcode.complexbarcode.USADriveIdCodetext.MandatoryFields-} +``` +public final void setMandatoryElements(USADriveIdCodetext.MandatoryFields value) +``` + + +Éléments obligatoires (champs) de la carte + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | com.aspose.barcode.complexbarcode.USADriveIdCodetext.MandatoryFields | | + +### setNumberOfEntries(int value) {#setNumberOfEntries-int-} +``` +public final void setNumberOfEntries(int value) +``` + + +Nombre 00-99 de sous‑fichiers + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setOptionalElements(USADriveIdCodetext.OptionalFields value) {#setOptionalElements-com.aspose.barcode.complexbarcode.USADriveIdCodetext.OptionalFields-} +``` +public final void setOptionalElements(USADriveIdCodetext.OptionalFields value) +``` + + +Éléments optionnels (champs) de la carte + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | com.aspose.barcode.complexbarcode.USADriveIdCodetext.OptionalFields | | + +### setSubfileDesignator(List value) {#setSubfileDesignator-java.util.List-com.aspose.barcode.complexbarcode.USADriveIdCodetext.SubfileProperties--} +``` +public final void setSubfileDesignator(List value) +``` + + +Contient des informations sur les sous‑fichiers suivants, leurs types, décalages et longueurs. Important : définissez uniquement le type, le décalage et la longueur seront définis automatiquement. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.util.List | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidcountry/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidcountry/_index.md new file mode 100644 index 000000000..329ce0972 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidcountry/_index.md @@ -0,0 +1,270 @@ +--- +title: USADriveIdCountry +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Énumération pour l'identification du pays dans le permis de conduire américain +type: docs +weight: 45 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/usadriveidcountry/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum USADriveIdCountry extends Enum +``` + +Énumération pour l'identification du pays dans le permis de conduire américain (US Driver's License) +## Champs + +| Champ | Description | +| --- | --- | +| [CANADA](#CANADA) | Pays = Canada | +| [NONE](#NONE) | Non rempli - égal à NONE | +| [US](#US) | Pays = U.S. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CANADA {#CANADA} +``` +public static final USADriveIdCountry CANADA +``` + + +Pays = Canada + +### NONE {#NONE} +``` +public static final USADriveIdCountry NONE +``` + + +Non rempli - égal à NONE + +### US {#US} +``` +public static final USADriveIdCountry US +``` + + +Pays = U.S. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static USADriveIdCountry valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[USADriveIdCountry](../../com.aspose.barcode.complexbarcode/usadriveidcountry) +### values() {#values--} +``` +public static USADriveIdCountry[] values() +``` + + + + +**Returns:** +com.aspose.barcode.complexbarcode.USADriveIdCountry[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/usadriveideyecolor/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveideyecolor/_index.md new file mode 100644 index 000000000..fb027f8b8 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveideyecolor/_index.md @@ -0,0 +1,342 @@ +--- +title: USADriveIdEyeColor +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Énumération pour la couleur des yeux sur le permis de conduire américain +type: docs +weight: 46 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/usadriveideyecolor/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum USADriveIdEyeColor extends Enum +``` + +Énumération pour la couleur des yeux dans le permis de conduire américain (US Driver's License) +## Champs + +| Champ | Description | +| --- | --- | +| [BLACK](#BLACK) | BLK - Noir ou brun très foncé. | +| [BLUE](#BLUE) | BLU - Couleur bleue. | +| [BROWN](#BROWN) | BRO - Marron, y compris l'ambre. | +| [GRAY](#GRAY) | GRY - Couleur grise. | +| [GREEN](#GREEN) | GRN - Couleur verte. | +| [HAZEL](#HAZEL) | HAZ - noisette, un mélange de couleurs, le plus souvent vert et brun. | +| [MAROON](#MAROON) | MAR - Couleur marron foncé. | +| [MULTI_COLOR](#MULTI-COLOR) | DIC - Dichromatique ou multicolore, d'un ou des deux yeux. | +| [NO_INFO](#NO-INFO) | Non rempli - égal à NONE | +| [PINK](#PINK) | PNK - Rose ou albinos | +| [UNKNOWN](#UNKNOWN) | UNK - Inconnu / Autre | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BLACK {#BLACK} +``` +public static final USADriveIdEyeColor BLACK +``` + + +BLK - Noir ou brun très foncé. + +### BLUE {#BLUE} +``` +public static final USADriveIdEyeColor BLUE +``` + + +BLU - Couleur bleue. + +### BROWN {#BROWN} +``` +public static final USADriveIdEyeColor BROWN +``` + + +BRO - Marron, y compris l'ambre. + +### GRAY {#GRAY} +``` +public static final USADriveIdEyeColor GRAY +``` + + +GRY - Couleur grise. + +### GREEN {#GREEN} +``` +public static final USADriveIdEyeColor GREEN +``` + + +GRN - Couleur verte. + +### HAZEL {#HAZEL} +``` +public static final USADriveIdEyeColor HAZEL +``` + + +HAZ - noisette, un mélange de couleurs, le plus souvent vert et brun. + +### MAROON {#MAROON} +``` +public static final USADriveIdEyeColor MAROON +``` + + +MAR - Couleur marron foncé. + +### MULTI_COLOR {#MULTI-COLOR} +``` +public static final USADriveIdEyeColor MULTI_COLOR +``` + + +DIC - Dichromatique ou multicolore, d'un ou des deux yeux. + +### NO_INFO {#NO-INFO} +``` +public static final USADriveIdEyeColor NO_INFO +``` + + +Non rempli - égal à NONE + +### PINK {#PINK} +``` +public static final USADriveIdEyeColor PINK +``` + + +PNK - Rose ou albinos + +### UNKNOWN {#UNKNOWN} +``` +public static final USADriveIdEyeColor UNKNOWN +``` + + +UNK - Inconnu / Autre + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static USADriveIdEyeColor valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[USADriveIdEyeColor](../../com.aspose.barcode.complexbarcode/usadriveideyecolor) +### values() {#values--} +``` +public static USADriveIdEyeColor[] values() +``` + + + + +**Returns:** +com.aspose.barcode.complexbarcode.USADriveIdEyeColor[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidhaircolor/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidhaircolor/_index.md new file mode 100644 index 000000000..fbd27d153 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidhaircolor/_index.md @@ -0,0 +1,333 @@ +--- +title: USADriveIdHairColor +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Enum for Hair Color in the US Drivers License +type: docs +weight: 47 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/usadriveidhaircolor/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum USADriveIdHairColor extends Enum +``` + +Énumération pour la couleur des cheveux dans le permis de conduire américain (US Driver's License) +## Champs + +| Champ | Description | +| --- | --- | +| [BALD](#BALD) | BAL - Bald. | +| [BLACK](#BLACK) | BLK - Black color | +| [BLOND](#BLOND) | BLN - Blonde color | +| [BROWN](#BROWN) | BRO - Brown color | +| [GRAY](#GRAY) | GRY - Gray color | +| [NO_INFO](#NO-INFO) | Non rempli - égal à NONE | +| [RED](#RED) | RED - Red / Auburn | +| [SANDY](#SANDY) | SDY - Sandy color | +| [UNKNOWN](#UNKNOWN) | UNK - Inconnu / Autre | +| [WHITE](#WHITE) | WHI - White color | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BALD {#BALD} +``` +public static final USADriveIdHairColor BALD +``` + + +BAL - Bald. + +### BLACK {#BLACK} +``` +public static final USADriveIdHairColor BLACK +``` + + +BLK - Black color + +### BLOND {#BLOND} +``` +public static final USADriveIdHairColor BLOND +``` + + +BLN - Blonde color + +### BROWN {#BROWN} +``` +public static final USADriveIdHairColor BROWN +``` + + +BRO - Brown color + +### GRAY {#GRAY} +``` +public static final USADriveIdHairColor GRAY +``` + + +GRY - Gray color + +### NO_INFO {#NO-INFO} +``` +public static final USADriveIdHairColor NO_INFO +``` + + +Non rempli - égal à NONE + +### RED {#RED} +``` +public static final USADriveIdHairColor RED +``` + + +RED - Red / Auburn + +### SANDY {#SANDY} +``` +public static final USADriveIdHairColor SANDY +``` + + +SDY - Sandy color + +### UNKNOWN {#UNKNOWN} +``` +public static final USADriveIdHairColor UNKNOWN +``` + + +UNK - Inconnu / Autre + +### WHITE {#WHITE} +``` +public static final USADriveIdHairColor WHITE +``` + + +WHI - White color + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static USADriveIdHairColor valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[USADriveIdHairColor](../../com.aspose.barcode.complexbarcode/usadriveidhaircolor) +### values() {#values--} +``` +public static USADriveIdHairColor[] values() +``` + + + + +**Returns:** +com.aspose.barcode.complexbarcode.USADriveIdHairColor[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile/_index.md new file mode 100644 index 000000000..f12328b5e --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile/_index.md @@ -0,0 +1,316 @@ +--- +title: USADriveIdJurisdSubfile +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour les champs spécifiques à la juridiction pour USA DL +type: docs +weight: 39 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile/ +--- +**Inheritance:** +java.lang.Object +``` +public class USADriveIdJurisdSubfile +``` + +Classe pour les champs spécifiques à la juridiction pour USA DL +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [USADriveIdJurisdSubfile()](#USADriveIdJurisdSubfile--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addOrReplace(USADriveIdJurisdSubfile.DataElement node)](#addOrReplace-com.aspose.barcode.complexbarcode.USADriveIdJurisdSubfile.DataElement-) | Adds new DataElement or replaces it if ElementID already exists. | +| [addOrReplace(String id, String value)](#addOrReplace-java.lang.String-java.lang.String-) | Adds a new DataElement with the specified identifier and value, or replaces the existing element if an entry with the same ElementID is already present. | +| [clear()](#clear--) | Clears all data elements | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [findDataElement(String id, boolean isOpenOrCreate)](#findDataElement-java.lang.String-boolean-) | Recherche l'élément de données par identifiant à 3 lettres | +| [getClass()](#getClass--) | | +| [getCount()](#getCount--) | Renvoie le nombre d'éléments de données | +| [get_Item(int index)](#get-Item-int-) | Indexation par numéro d'index | +| [get_Item(String id)](#get-Item-java.lang.String-) | Indexation par identifiant d'élément à 3 lettres | +| [hashCode()](#hashCode--) | | +| [insert(int index, USADriveIdJurisdSubfile.DataElement node)](#insert-int-com.aspose.barcode.complexbarcode.USADriveIdJurisdSubfile.DataElement-) | Insère le DataElement spécifié à l'index donné. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [removeAt(int index)](#removeAt-int-) | Essaie de supprimer l'élément à l'index | +| [removeAt(String id)](#removeAt-java.lang.String-) | Essaie de supprimer l'élément avec un identifiant à 3 lettres | +| [set_Item(int index, USADriveIdJurisdSubfile.DataElement value)](#set-Item-int-com.aspose.barcode.complexbarcode.USADriveIdJurisdSubfile.DataElement-) | Indexation par numéro d'index | +| [set_Item(String id, USADriveIdJurisdSubfile.DataElement value)](#set-Item-java.lang.String-com.aspose.barcode.complexbarcode.USADriveIdJurisdSubfile.DataElement-) | Indexation par identifiant d'élément à 3 lettres | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### USADriveIdJurisdSubfile() {#USADriveIdJurisdSubfile--} +``` +public USADriveIdJurisdSubfile() +``` + + +### addOrReplace(USADriveIdJurisdSubfile.DataElement node) {#addOrReplace-com.aspose.barcode.complexbarcode.USADriveIdJurisdSubfile.DataElement-} +``` +public final USADriveIdJurisdSubfile.DataElement addOrReplace(USADriveIdJurisdSubfile.DataElement node) +``` + + +Adds new DataElement or replaces it if ElementID already exists. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| node | [DataElement](../../com.aspose.barcode.complexbarcode/dataelement) | DataElement à ajouter | + +**Returns:** +[DataElement](../../com.aspose.barcode.complexbarcode/dataelement) - Added/replaced data element +### addOrReplace(String id, String value) {#addOrReplace-java.lang.String-java.lang.String-} +``` +public final USADriveIdJurisdSubfile.DataElement addOrReplace(String id, String value) +``` + + +Adds a new DataElement with the specified identifier and value, or replaces the existing element if an entry with the same ElementID is already present. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | java.lang.String | Un identifiant à 3 lettres qui spécifie de manière unique l'élément de données lié à la juridiction. | +| valeur | java.lang.String | La valeur texte assignée à l'élément de données ; cette valeur écrasera celle existante si l'élément existe déjà. | + +**Returns:** +[DataElement](../../com.aspose.barcode.complexbarcode/dataelement) - The DataElement instance that was added to the collection or updated in place. +### clear() {#clear--} +``` +public final void clear() +``` + + +Clears all data elements + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### findDataElement(String id, boolean isOpenOrCreate) {#findDataElement-java.lang.String-boolean-} +``` +public final USADriveIdJurisdSubfile.DataElement findDataElement(String id, boolean isOpenOrCreate) +``` + + +Recherche l'élément de données par identifiant à 3 lettres + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | java.lang.String | Identifiant à 3 lettres | +| isOpenOrCreate | boolean | Si vrai, il sera créé s'il n'est pas trouvé | + +**Returns:** +[DataElement](../../com.aspose.barcode.complexbarcode/dataelement) - Found data element +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCount() {#getCount--} +``` +public final int getCount() +``` + + +Renvoie le nombre d'éléments de données + +**Returns:** +int +### get_Item(int index) {#get-Item-int-} +``` +public final USADriveIdJurisdSubfile.DataElement get_Item(int index) +``` + + +Indexation par numéro d'index + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | Index de l'élément (int) | + +**Returns:** +[DataElement](../../com.aspose.barcode.complexbarcode/dataelement) - Corresponding DataElement +### get_Item(String id) {#get-Item-java.lang.String-} +``` +public final USADriveIdJurisdSubfile.DataElement get_Item(String id) +``` + + +Indexation par identifiant d'élément à 3 lettres + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | java.lang.String | Identifiant d'élément à 3 lettres | + +**Returns:** +[DataElement](../../com.aspose.barcode.complexbarcode/dataelement) - Corresponding DataElement +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### insert(int index, USADriveIdJurisdSubfile.DataElement node) {#insert-int-com.aspose.barcode.complexbarcode.USADriveIdJurisdSubfile.DataElement-} +``` +public final USADriveIdJurisdSubfile.DataElement insert(int index, USADriveIdJurisdSubfile.DataElement node) +``` + + +Insère le DataElement spécifié à l'index donné. Si un DataElement avec le même ElementID existe déjà, il sera remplacé. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | L'index basé sur zéro où l'élément doit être inséré. | +| node | [DataElement](../../com.aspose.barcode.complexbarcode/dataelement) | L'instance DataElement à insérer ou remplacer à la position cible. | + +**Returns:** +[DataElement](../../com.aspose.barcode.complexbarcode/dataelement) - The DataElement that was inserted or used to replace an existing entry. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### removeAt(int index) {#removeAt-int-} +``` +public final boolean removeAt(int index) +``` + + +Essaie de supprimer l'élément à l'index + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | numéro d'index | + +**Returns:** +booléen - vrai si réussi, faux si hors limites +### removeAt(String id) {#removeAt-java.lang.String-} +``` +public final boolean removeAt(String id) +``` + + +Essaie de supprimer l'élément avec un identifiant à 3 lettres + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | java.lang.String | Identifiant à 3 lettres | + +**Returns:** +booléen - vrai si réussi, faux si aucun identifiant correspondant +### set_Item(int index, USADriveIdJurisdSubfile.DataElement value) {#set-Item-int-com.aspose.barcode.complexbarcode.USADriveIdJurisdSubfile.DataElement-} +``` +public final void set_Item(int index, USADriveIdJurisdSubfile.DataElement value) +``` + + +Indexation par numéro d'index + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | Index de l'élément (int) | +| value | [DataElement](../../com.aspose.barcode.complexbarcode/dataelement) | | + +### set_Item(String id, USADriveIdJurisdSubfile.DataElement value) {#set-Item-java.lang.String-com.aspose.barcode.complexbarcode.USADriveIdJurisdSubfile.DataElement-} +``` +public final void set_Item(String id, USADriveIdJurisdSubfile.DataElement value) +``` + + +Indexation par identifiant d'élément à 3 lettres + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | java.lang.String | Identifiant d'élément à 3 lettres | +| value | [DataElement](../../com.aspose.barcode.complexbarcode/dataelement) | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidsex/_index.md b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidsex/_index.md new file mode 100644 index 000000000..1eccc2375 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.complexbarcode/usadriveidsex/_index.md @@ -0,0 +1,279 @@ +--- +title: USADriveIdSex +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Énumération pour le champ Sexe dans le permis de conduire américain. +type: docs +weight: 48 +url: /fr/androidjava/com.aspose.barcode.complexbarcode/usadriveidsex/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum USADriveIdSex extends Enum +``` + +Énumération pour le champ sexe dans le permis de conduire américain (US Driver's License) +## Champs + +| Champ | Description | +| --- | --- | +| [FEMALE](#FEMALE) | Femme \\u2014 indique que le sexe du titulaire est défini comme féminin. | +| [MALE](#MALE) | Homme \\u2014 indique que le sexe du titulaire est défini comme masculin. | +| [NONE](#NONE) | Non rempli - égal à NONE | +| [NOT_SPECIFIED](#NOT-SPECIFIED) | Non spécifié | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FEMALE {#FEMALE} +``` +public static final USADriveIdSex FEMALE +``` + + +Femme \\u2014 indique que le sexe du titulaire est défini comme féminin. + +### MALE {#MALE} +``` +public static final USADriveIdSex MALE +``` + + +Homme \\u2014 indique que le sexe du titulaire est défini comme masculin. + +### NONE {#NONE} +``` +public static final USADriveIdSex NONE +``` + + +Non rempli - égal à NONE + +### NOT_SPECIFIED {#NOT-SPECIFIED} +``` +public static final USADriveIdSex NOT_SPECIFIED +``` + + +Non spécifié + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static USADriveIdSex valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[USADriveIdSex](../../com.aspose.barcode.complexbarcode/usadriveidsex) +### values() {#values--} +``` +public static USADriveIdSex[] values() +``` + + + + +**Returns:** +com.aspose.barcode.complexbarcode.USADriveIdSex[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/_index.md new file mode 100644 index 000000000..9bb67332c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/_index.md @@ -0,0 +1,22 @@ +--- +title: com.aspose.barcode.component.barcodescanner.recognitionareaview +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 14 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/ +--- + +## Classes + +| Classe | Description | +| --- | --- | +| [RecognitionMarkerView](../com.aspose.barcode.component.barcodescanner.recognitionareaview/recognitionmarkerview) | Classe interne liée au rendu de la zone de reconnaissance | +| [ShapeDrawer](../com.aspose.barcode.component.barcodescanner.recognitionareaview/shapedrawer) | | + +## Énumérations + +| Énum | Description | +| --- | --- | +| [BarcodeAreaLineStyle](../com.aspose.barcode.component.barcodescanner.recognitionareaview/barcodearealinestyle) | | +| [TwoDAreaStyle](../com.aspose.barcode.component.barcodescanner.recognitionareaview/twodareastyle) | Style du rectangle rendu autour de la zone de reconnaissance 2D | diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/barcodearealinestyle/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/barcodearealinestyle/_index.md new file mode 100644 index 000000000..a0f359bf2 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/barcodearealinestyle/_index.md @@ -0,0 +1,276 @@ +--- +title: BarcodeAreaLineStyle +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 12 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/barcodearealinestyle/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum BarcodeAreaLineStyle extends Enum +``` +## Champs + +| Champ | Description | +| --- | --- | +| [DASH](#DASH) | | +| [DASH_DOT](#DASH-DOT) | | +| [DOT](#DOT) | | +| [INVISIBLE](#INVISIBLE) | | +| [LINE](#LINE) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### DASH {#DASH} +``` +public static final BarcodeAreaLineStyle DASH +``` + + +### DASH_DOT {#DASH-DOT} +``` +public static final BarcodeAreaLineStyle DASH_DOT +``` + + +### DOT {#DOT} +``` +public static final BarcodeAreaLineStyle DOT +``` + + +### INVISIBLE {#INVISIBLE} +``` +public static final BarcodeAreaLineStyle INVISIBLE +``` + + +### LINE {#LINE} +``` +public static final BarcodeAreaLineStyle LINE +``` + + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static BarcodeAreaLineStyle valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[BarcodeAreaLineStyle](../../com.aspose.barcode.component.barcodescanner.recognitionareaview/barcodearealinestyle) +### values() {#values--} +``` +public static BarcodeAreaLineStyle[] values() +``` + + + + +**Returns:** +com.aspose.barcode.component.barcodescanner.recognitionareaview.BarcodeAreaLineStyle[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/recognitionmarkerview/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/recognitionmarkerview/_index.md new file mode 100644 index 000000000..fd463f9e9 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/recognitionmarkerview/_index.md @@ -0,0 +1,8910 @@ +--- +title: RecognitionMarkerView +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe interne liée au rendu de la zone de reconnaissance +type: docs +weight: 10 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/recognitionmarkerview/ +--- +**Inheritance:** +java.lang.Object, android.view.View +``` +public class RecognitionMarkerView extends View +``` + +Classe interne liée au rendu de la zone de reconnaissance +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [RecognitionMarkerView(Context context)](#RecognitionMarkerView-android.content.Context-) | | +## Champs + +| Champ | Description | +| --- | --- | +| [ACCESSIBILITY_LIVE_REGION_ASSERTIVE](#ACCESSIBILITY-LIVE-REGION-ASSERTIVE) | | +| [ACCESSIBILITY_LIVE_REGION_NONE](#ACCESSIBILITY-LIVE-REGION-NONE) | | +| [ACCESSIBILITY_LIVE_REGION_POLITE](#ACCESSIBILITY-LIVE-REGION-POLITE) | | +| [ALPHA](#ALPHA) | | +| [AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS](#AUTOFILL-FLAG-INCLUDE-NOT-IMPORTANT-VIEWS) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DATE) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DAY) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-MONTH) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-YEAR) | | +| [AUTOFILL_HINT_CREDIT_CARD_NUMBER](#AUTOFILL-HINT-CREDIT-CARD-NUMBER) | | +| [AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE](#AUTOFILL-HINT-CREDIT-CARD-SECURITY-CODE) | | +| [AUTOFILL_HINT_EMAIL_ADDRESS](#AUTOFILL-HINT-EMAIL-ADDRESS) | | +| [AUTOFILL_HINT_NAME](#AUTOFILL-HINT-NAME) | | +| [AUTOFILL_HINT_PASSWORD](#AUTOFILL-HINT-PASSWORD) | | +| [AUTOFILL_HINT_PHONE](#AUTOFILL-HINT-PHONE) | | +| [AUTOFILL_HINT_POSTAL_ADDRESS](#AUTOFILL-HINT-POSTAL-ADDRESS) | | +| [AUTOFILL_HINT_POSTAL_CODE](#AUTOFILL-HINT-POSTAL-CODE) | | +| [AUTOFILL_HINT_USERNAME](#AUTOFILL-HINT-USERNAME) | | +| [AUTOFILL_TYPE_DATE](#AUTOFILL-TYPE-DATE) | | +| [AUTOFILL_TYPE_LIST](#AUTOFILL-TYPE-LIST) | | +| [AUTOFILL_TYPE_NONE](#AUTOFILL-TYPE-NONE) | | +| [AUTOFILL_TYPE_TEXT](#AUTOFILL-TYPE-TEXT) | | +| [AUTOFILL_TYPE_TOGGLE](#AUTOFILL-TYPE-TOGGLE) | | +| [DRAG_FLAG_ACCESSIBILITY_ACTION](#DRAG-FLAG-ACCESSIBILITY-ACTION) | | +| [DRAG_FLAG_GLOBAL](#DRAG-FLAG-GLOBAL) | | +| [DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION](#DRAG-FLAG-GLOBAL-PERSISTABLE-URI-PERMISSION) | | +| [DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION](#DRAG-FLAG-GLOBAL-PREFIX-URI-PERMISSION) | | +| [DRAG_FLAG_GLOBAL_URI_READ](#DRAG-FLAG-GLOBAL-URI-READ) | | +| [DRAG_FLAG_GLOBAL_URI_WRITE](#DRAG-FLAG-GLOBAL-URI-WRITE) | | +| [DRAG_FLAG_OPAQUE](#DRAG-FLAG-OPAQUE) | | +| [DRAWING_CACHE_QUALITY_AUTO](#DRAWING-CACHE-QUALITY-AUTO) | | +| [DRAWING_CACHE_QUALITY_HIGH](#DRAWING-CACHE-QUALITY-HIGH) | | +| [DRAWING_CACHE_QUALITY_LOW](#DRAWING-CACHE-QUALITY-LOW) | | +| [FIND_VIEWS_WITH_CONTENT_DESCRIPTION](#FIND-VIEWS-WITH-CONTENT-DESCRIPTION) | | +| [FIND_VIEWS_WITH_TEXT](#FIND-VIEWS-WITH-TEXT) | | +| [FOCUSABLE](#FOCUSABLE) | | +| [FOCUSABLES_ALL](#FOCUSABLES-ALL) | | +| [FOCUSABLES_TOUCH_MODE](#FOCUSABLES-TOUCH-MODE) | | +| [FOCUSABLE_AUTO](#FOCUSABLE-AUTO) | | +| [FOCUS_BACKWARD](#FOCUS-BACKWARD) | | +| [FOCUS_DOWN](#FOCUS-DOWN) | | +| [FOCUS_FORWARD](#FOCUS-FORWARD) | | +| [FOCUS_LEFT](#FOCUS-LEFT) | | +| [FOCUS_RIGHT](#FOCUS-RIGHT) | | +| [FOCUS_UP](#FOCUS-UP) | | +| [GONE](#GONE) | | +| [HAPTIC_FEEDBACK_ENABLED](#HAPTIC-FEEDBACK-ENABLED) | | +| [IMPORTANT_FOR_ACCESSIBILITY_AUTO](#IMPORTANT-FOR-ACCESSIBILITY-AUTO) | | +| [IMPORTANT_FOR_ACCESSIBILITY_NO](#IMPORTANT-FOR-ACCESSIBILITY-NO) | | +| [IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS](#IMPORTANT-FOR-ACCESSIBILITY-NO-HIDE-DESCENDANTS) | | +| [IMPORTANT_FOR_ACCESSIBILITY_YES](#IMPORTANT-FOR-ACCESSIBILITY-YES) | | +| [IMPORTANT_FOR_AUTOFILL_AUTO](#IMPORTANT-FOR-AUTOFILL-AUTO) | | +| [IMPORTANT_FOR_AUTOFILL_NO](#IMPORTANT-FOR-AUTOFILL-NO) | | +| [IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-AUTOFILL-NO-EXCLUDE-DESCENDANTS) | | +| [IMPORTANT_FOR_AUTOFILL_YES](#IMPORTANT-FOR-AUTOFILL-YES) | | +| [IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-AUTOFILL-YES-EXCLUDE-DESCENDANTS) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_AUTO](#IMPORTANT-FOR-CONTENT-CAPTURE-AUTO) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_NO](#IMPORTANT-FOR-CONTENT-CAPTURE-NO) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-CONTENT-CAPTURE-NO-EXCLUDE-DESCENDANTS) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_YES](#IMPORTANT-FOR-CONTENT-CAPTURE-YES) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-CONTENT-CAPTURE-YES-EXCLUDE-DESCENDANTS) | | +| [INVISIBLE](#INVISIBLE) | | +| [KEEP_SCREEN_ON](#KEEP-SCREEN-ON) | | +| [LAYER_TYPE_HARDWARE](#LAYER-TYPE-HARDWARE) | | +| [LAYER_TYPE_NONE](#LAYER-TYPE-NONE) | | +| [LAYER_TYPE_SOFTWARE](#LAYER-TYPE-SOFTWARE) | | +| [LAYOUT_DIRECTION_INHERIT](#LAYOUT-DIRECTION-INHERIT) | | +| [LAYOUT_DIRECTION_LOCALE](#LAYOUT-DIRECTION-LOCALE) | | +| [LAYOUT_DIRECTION_LTR](#LAYOUT-DIRECTION-LTR) | | +| [LAYOUT_DIRECTION_RTL](#LAYOUT-DIRECTION-RTL) | | +| [MEASURED_HEIGHT_STATE_SHIFT](#MEASURED-HEIGHT-STATE-SHIFT) | | +| [MEASURED_SIZE_MASK](#MEASURED-SIZE-MASK) | | +| [MEASURED_STATE_MASK](#MEASURED-STATE-MASK) | | +| [MEASURED_STATE_TOO_SMALL](#MEASURED-STATE-TOO-SMALL) | | +| [NOT_FOCUSABLE](#NOT-FOCUSABLE) | | +| [NO_ID](#NO-ID) | | +| [OVER_SCROLL_ALWAYS](#OVER-SCROLL-ALWAYS) | | +| [OVER_SCROLL_IF_CONTENT_SCROLLS](#OVER-SCROLL-IF-CONTENT-SCROLLS) | | +| [OVER_SCROLL_NEVER](#OVER-SCROLL-NEVER) | | +| [ROTATION](#ROTATION) | | +| [ROTATION_X](#ROTATION-X) | | +| [ROTATION_Y](#ROTATION-Y) | | +| [SCALE_X](#SCALE-X) | | +| [SCALE_Y](#SCALE-Y) | | +| [SCREEN_STATE_OFF](#SCREEN-STATE-OFF) | | +| [SCREEN_STATE_ON](#SCREEN-STATE-ON) | | +| [SCROLLBARS_INSIDE_INSET](#SCROLLBARS-INSIDE-INSET) | | +| [SCROLLBARS_INSIDE_OVERLAY](#SCROLLBARS-INSIDE-OVERLAY) | | +| [SCROLLBARS_OUTSIDE_INSET](#SCROLLBARS-OUTSIDE-INSET) | | +| [SCROLLBARS_OUTSIDE_OVERLAY](#SCROLLBARS-OUTSIDE-OVERLAY) | | +| [SCROLLBAR_POSITION_DEFAULT](#SCROLLBAR-POSITION-DEFAULT) | | +| [SCROLLBAR_POSITION_LEFT](#SCROLLBAR-POSITION-LEFT) | | +| [SCROLLBAR_POSITION_RIGHT](#SCROLLBAR-POSITION-RIGHT) | | +| [SCROLL_AXIS_HORIZONTAL](#SCROLL-AXIS-HORIZONTAL) | | +| [SCROLL_AXIS_NONE](#SCROLL-AXIS-NONE) | | +| [SCROLL_AXIS_VERTICAL](#SCROLL-AXIS-VERTICAL) | | +| [SCROLL_CAPTURE_HINT_AUTO](#SCROLL-CAPTURE-HINT-AUTO) | | +| [SCROLL_CAPTURE_HINT_EXCLUDE](#SCROLL-CAPTURE-HINT-EXCLUDE) | | +| [SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS](#SCROLL-CAPTURE-HINT-EXCLUDE-DESCENDANTS) | | +| [SCROLL_CAPTURE_HINT_INCLUDE](#SCROLL-CAPTURE-HINT-INCLUDE) | | +| [SCROLL_INDICATOR_BOTTOM](#SCROLL-INDICATOR-BOTTOM) | | +| [SCROLL_INDICATOR_END](#SCROLL-INDICATOR-END) | | +| [SCROLL_INDICATOR_LEFT](#SCROLL-INDICATOR-LEFT) | | +| [SCROLL_INDICATOR_RIGHT](#SCROLL-INDICATOR-RIGHT) | | +| [SCROLL_INDICATOR_START](#SCROLL-INDICATOR-START) | | +| [SCROLL_INDICATOR_TOP](#SCROLL-INDICATOR-TOP) | | +| [SOUND_EFFECTS_ENABLED](#SOUND-EFFECTS-ENABLED) | | +| [STATUS_BAR_HIDDEN](#STATUS-BAR-HIDDEN) | | +| [STATUS_BAR_VISIBLE](#STATUS-BAR-VISIBLE) | | +| [SYSTEM_UI_FLAG_FULLSCREEN](#SYSTEM-UI-FLAG-FULLSCREEN) | | +| [SYSTEM_UI_FLAG_HIDE_NAVIGATION](#SYSTEM-UI-FLAG-HIDE-NAVIGATION) | | +| [SYSTEM_UI_FLAG_IMMERSIVE](#SYSTEM-UI-FLAG-IMMERSIVE) | | +| [SYSTEM_UI_FLAG_IMMERSIVE_STICKY](#SYSTEM-UI-FLAG-IMMERSIVE-STICKY) | | +| [SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN](#SYSTEM-UI-FLAG-LAYOUT-FULLSCREEN) | | +| [SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION](#SYSTEM-UI-FLAG-LAYOUT-HIDE-NAVIGATION) | | +| [SYSTEM_UI_FLAG_LAYOUT_STABLE](#SYSTEM-UI-FLAG-LAYOUT-STABLE) | | +| [SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR](#SYSTEM-UI-FLAG-LIGHT-NAVIGATION-BAR) | | +| [SYSTEM_UI_FLAG_LIGHT_STATUS_BAR](#SYSTEM-UI-FLAG-LIGHT-STATUS-BAR) | | +| [SYSTEM_UI_FLAG_LOW_PROFILE](#SYSTEM-UI-FLAG-LOW-PROFILE) | | +| [SYSTEM_UI_FLAG_VISIBLE](#SYSTEM-UI-FLAG-VISIBLE) | | +| [SYSTEM_UI_LAYOUT_FLAGS](#SYSTEM-UI-LAYOUT-FLAGS) | | +| [TEXT_ALIGNMENT_CENTER](#TEXT-ALIGNMENT-CENTER) | | +| [TEXT_ALIGNMENT_GRAVITY](#TEXT-ALIGNMENT-GRAVITY) | | +| [TEXT_ALIGNMENT_INHERIT](#TEXT-ALIGNMENT-INHERIT) | | +| [TEXT_ALIGNMENT_TEXT_END](#TEXT-ALIGNMENT-TEXT-END) | | +| [TEXT_ALIGNMENT_TEXT_START](#TEXT-ALIGNMENT-TEXT-START) | | +| [TEXT_ALIGNMENT_VIEW_END](#TEXT-ALIGNMENT-VIEW-END) | | +| [TEXT_ALIGNMENT_VIEW_START](#TEXT-ALIGNMENT-VIEW-START) | | +| [TEXT_DIRECTION_ANY_RTL](#TEXT-DIRECTION-ANY-RTL) | | +| [TEXT_DIRECTION_FIRST_STRONG](#TEXT-DIRECTION-FIRST-STRONG) | | +| [TEXT_DIRECTION_FIRST_STRONG_LTR](#TEXT-DIRECTION-FIRST-STRONG-LTR) | | +| [TEXT_DIRECTION_FIRST_STRONG_RTL](#TEXT-DIRECTION-FIRST-STRONG-RTL) | | +| [TEXT_DIRECTION_INHERIT](#TEXT-DIRECTION-INHERIT) | | +| [TEXT_DIRECTION_LOCALE](#TEXT-DIRECTION-LOCALE) | | +| [TEXT_DIRECTION_LTR](#TEXT-DIRECTION-LTR) | | +| [TEXT_DIRECTION_RTL](#TEXT-DIRECTION-RTL) | | +| [TRANSLATION_X](#TRANSLATION-X) | | +| [TRANSLATION_Y](#TRANSLATION-Y) | | +| [TRANSLATION_Z](#TRANSLATION-Z) | | +| [VISIBLE](#VISIBLE) | | +| [X](#X) | | +| [Y](#Y) | | +| [Z](#Z) | | +| [barcodeAreaParts](#barcodeAreaParts) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [findViewById(int arg0)](#-T-findViewById-int-) | | +| [findViewWithTag(Object arg0)](#-T-findViewWithTag-java.lang.Object-) | | +| [requireViewById(int arg0)](#-T-requireViewById-int-) | | +| [addChildrenForAccessibility(ArrayList arg0)](#addChildrenForAccessibility-java.util.ArrayList-android.view.View--) | | +| [addExtraDataToAccessibilityNodeInfo(AccessibilityNodeInfo arg0, String arg1, Bundle arg2)](#addExtraDataToAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-java.lang.String-android.os.Bundle-) | | +| [addFocusables(ArrayList arg0, int arg1)](#addFocusables-java.util.ArrayList-android.view.View--int-) | | +| [addFocusables(ArrayList arg0, int arg1, int arg2)](#addFocusables-java.util.ArrayList-android.view.View--int-int-) | | +| [addKeyboardNavigationClusters(Collection arg0, int arg1)](#addKeyboardNavigationClusters-java.util.Collection-android.view.View--int-) | | +| [addOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0)](#addOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-) | | +| [addOnLayoutChangeListener(View.OnLayoutChangeListener arg0)](#addOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-) | | +| [addOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0)](#addOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-) | | +| [addTouchables(ArrayList arg0)](#addTouchables-java.util.ArrayList-android.view.View--) | | +| [animate()](#animate--) | | +| [announceForAccessibility(CharSequence arg0)](#announceForAccessibility-java.lang.CharSequence-) | | +| [autofill(SparseArray arg0)](#autofill-android.util.SparseArray-android.view.autofill.AutofillValue--) | | +| [autofill(AutofillValue arg0)](#autofill-android.view.autofill.AutofillValue-) | | +| [bringToFront()](#bringToFront--) | | +| [buildDrawingCache()](#buildDrawingCache--) | | +| [buildDrawingCache(boolean arg0)](#buildDrawingCache-boolean-) | | +| [buildLayer()](#buildLayer--) | | +| [callOnClick()](#callOnClick--) | | +| [canResolveLayoutDirection()](#canResolveLayoutDirection--) | | +| [canResolveTextAlignment()](#canResolveTextAlignment--) | | +| [canResolveTextDirection()](#canResolveTextDirection--) | | +| [canScrollHorizontally(int arg0)](#canScrollHorizontally-int-) | | +| [canScrollVertically(int arg0)](#canScrollVertically-int-) | | +| [cancelDragAndDrop()](#cancelDragAndDrop--) | | +| [cancelLongPress()](#cancelLongPress--) | | +| [cancelPendingInputEvents()](#cancelPendingInputEvents--) | | +| [checkInputConnectionProxy(View arg0)](#checkInputConnectionProxy-android.view.View-) | | +| [clearAnimation()](#clearAnimation--) | | +| [clearFocus()](#clearFocus--) | | +| [clearViewTranslationCallback()](#clearViewTranslationCallback--) | | +| [combineMeasuredStates(int arg0, int arg1)](#combineMeasuredStates-int-int-) | | +| [computeScroll()](#computeScroll--) | | +| [computeSystemWindowInsets(WindowInsets arg0, Rect arg1)](#computeSystemWindowInsets-android.view.WindowInsets-android.graphics.Rect-) | | +| [createAccessibilityNodeInfo()](#createAccessibilityNodeInfo--) | | +| [createContextMenu(ContextMenu arg0)](#createContextMenu-android.view.ContextMenu-) | | +| [destroyDrawingCache()](#destroyDrawingCache--) | | +| [dispatchApplyWindowInsets(WindowInsets arg0)](#dispatchApplyWindowInsets-android.view.WindowInsets-) | | +| [dispatchCapturedPointerEvent(MotionEvent arg0)](#dispatchCapturedPointerEvent-android.view.MotionEvent-) | | +| [dispatchConfigurationChanged(Configuration arg0)](#dispatchConfigurationChanged-android.content.res.Configuration-) | | +| [dispatchCreateViewTranslationRequest(Map arg0, int[] arg1, TranslationCapability arg2, List arg3)](#dispatchCreateViewTranslationRequest-java.util.Map-android.view.autofill.AutofillId-long----int---android.view.translation.TranslationCapability-java.util.List-android.view.translation.ViewTranslationRequest--) | | +| [dispatchDisplayHint(int arg0)](#dispatchDisplayHint-int-) | | +| [dispatchDragEvent(DragEvent arg0)](#dispatchDragEvent-android.view.DragEvent-) | | +| [dispatchDrawableHotspotChanged(float arg0, float arg1)](#dispatchDrawableHotspotChanged-float-float-) | | +| [dispatchFinishTemporaryDetach()](#dispatchFinishTemporaryDetach--) | | +| [dispatchGenericMotionEvent(MotionEvent arg0)](#dispatchGenericMotionEvent-android.view.MotionEvent-) | | +| [dispatchKeyEvent(KeyEvent arg0)](#dispatchKeyEvent-android.view.KeyEvent-) | | +| [dispatchKeyEventPreIme(KeyEvent arg0)](#dispatchKeyEventPreIme-android.view.KeyEvent-) | | +| [dispatchKeyShortcutEvent(KeyEvent arg0)](#dispatchKeyShortcutEvent-android.view.KeyEvent-) | | +| [dispatchNestedFling(float arg0, float arg1, boolean arg2)](#dispatchNestedFling-float-float-boolean-) | | +| [dispatchNestedPreFling(float arg0, float arg1)](#dispatchNestedPreFling-float-float-) | | +| [dispatchNestedPrePerformAccessibilityAction(int arg0, Bundle arg1)](#dispatchNestedPrePerformAccessibilityAction-int-android.os.Bundle-) | | +| [dispatchNestedPreScroll(int arg0, int arg1, int[] arg2, int[] arg3)](#dispatchNestedPreScroll-int-int-int---int---) | | +| [dispatchNestedScroll(int arg0, int arg1, int arg2, int arg3, int[] arg4)](#dispatchNestedScroll-int-int-int-int-int---) | | +| [dispatchPointerCaptureChanged(boolean arg0)](#dispatchPointerCaptureChanged-boolean-) | | +| [dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0)](#dispatchPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-) | | +| [dispatchProvideAutofillStructure(ViewStructure arg0, int arg1)](#dispatchProvideAutofillStructure-android.view.ViewStructure-int-) | | +| [dispatchProvideStructure(ViewStructure arg0)](#dispatchProvideStructure-android.view.ViewStructure-) | | +| [dispatchScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2)](#dispatchScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--) | | +| [dispatchStartTemporaryDetach()](#dispatchStartTemporaryDetach--) | | +| [dispatchSystemUiVisibilityChanged(int arg0)](#dispatchSystemUiVisibilityChanged-int-) | | +| [dispatchTouchEvent(MotionEvent arg0)](#dispatchTouchEvent-android.view.MotionEvent-) | | +| [dispatchTrackballEvent(MotionEvent arg0)](#dispatchTrackballEvent-android.view.MotionEvent-) | | +| [dispatchUnhandledMove(View arg0, int arg1)](#dispatchUnhandledMove-android.view.View-int-) | | +| [dispatchWindowFocusChanged(boolean arg0)](#dispatchWindowFocusChanged-boolean-) | | +| [dispatchWindowInsetsAnimationEnd(WindowInsetsAnimation arg0)](#dispatchWindowInsetsAnimationEnd-android.view.WindowInsetsAnimation-) | | +| [dispatchWindowInsetsAnimationPrepare(WindowInsetsAnimation arg0)](#dispatchWindowInsetsAnimationPrepare-android.view.WindowInsetsAnimation-) | | +| [dispatchWindowInsetsAnimationProgress(WindowInsets arg0, List arg1)](#dispatchWindowInsetsAnimationProgress-android.view.WindowInsets-java.util.List-android.view.WindowInsetsAnimation--) | | +| [dispatchWindowInsetsAnimationStart(WindowInsetsAnimation arg0, WindowInsetsAnimation.Bounds arg1)](#dispatchWindowInsetsAnimationStart-android.view.WindowInsetsAnimation-android.view.WindowInsetsAnimation.Bounds-) | | +| [dispatchWindowSystemUiVisiblityChanged(int arg0)](#dispatchWindowSystemUiVisiblityChanged-int-) | | +| [dispatchWindowVisibilityChanged(int arg0)](#dispatchWindowVisibilityChanged-int-) | | +| [draw(Canvas arg0)](#draw-android.graphics.Canvas-) | | +| [drawableHotspotChanged(float arg0, float arg1)](#drawableHotspotChanged-float-float-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [findFocus()](#findFocus--) | | +| [findOnBackInvokedDispatcher()](#findOnBackInvokedDispatcher--) | | +| [findViewsWithText(ArrayList arg0, CharSequence arg1, int arg2)](#findViewsWithText-java.util.ArrayList-android.view.View--java.lang.CharSequence-int-) | | +| [focusSearch(int arg0)](#focusSearch-int-) | | +| [forceHasOverlappingRendering(boolean arg0)](#forceHasOverlappingRendering-boolean-) | | +| [forceLayout()](#forceLayout--) | | +| [gatherTransparentRegion(Region arg0)](#gatherTransparentRegion-android.graphics.Region-) | | +| [generateDisplayHash(String arg0, Rect arg1, Executor arg2, DisplayHashResultCallback arg3)](#generateDisplayHash-java.lang.String-android.graphics.Rect-java.util.concurrent.Executor-android.view.displayhash.DisplayHashResultCallback-) | | +| [generateViewId()](#generateViewId--) | | +| [getAccessibilityClassName()](#getAccessibilityClassName--) | | +| [getAccessibilityDelegate()](#getAccessibilityDelegate--) | | +| [getAccessibilityLiveRegion()](#getAccessibilityLiveRegion--) | | +| [getAccessibilityNodeProvider()](#getAccessibilityNodeProvider--) | | +| [getAccessibilityPaneTitle()](#getAccessibilityPaneTitle--) | | +| [getAccessibilityTraversalAfter()](#getAccessibilityTraversalAfter--) | | +| [getAccessibilityTraversalBefore()](#getAccessibilityTraversalBefore--) | | +| [getAlpha()](#getAlpha--) | | +| [getAnimation()](#getAnimation--) | | +| [getAnimationMatrix()](#getAnimationMatrix--) | | +| [getApplicationWindowToken()](#getApplicationWindowToken--) | | +| [getAttributeResolutionStack(int arg0)](#getAttributeResolutionStack-int-) | | +| [getAttributeSourceResourceMap()](#getAttributeSourceResourceMap--) | | +| [getAutofillHints()](#getAutofillHints--) | | +| [getAutofillId()](#getAutofillId--) | | +| [getAutofillType()](#getAutofillType--) | | +| [getAutofillValue()](#getAutofillValue--) | | +| [getBackground()](#getBackground--) | | +| [getBackgroundTintBlendMode()](#getBackgroundTintBlendMode--) | | +| [getBackgroundTintList()](#getBackgroundTintList--) | | +| [getBackgroundTintMode()](#getBackgroundTintMode--) | | +| [getBaseline()](#getBaseline--) | | +| [getBottom()](#getBottom--) | | +| [getCameraDistance()](#getCameraDistance--) | | +| [getClass()](#getClass--) | | +| [getClipBounds()](#getClipBounds--) | | +| [getClipBounds(Rect arg0)](#getClipBounds-android.graphics.Rect-) | | +| [getClipToOutline()](#getClipToOutline--) | | +| [getContentCaptureSession()](#getContentCaptureSession--) | | +| [getContentDescription()](#getContentDescription--) | | +| [getContext()](#getContext--) | | +| [getDefaultFocusHighlightEnabled()](#getDefaultFocusHighlightEnabled--) | | +| [getDefaultSize(int arg0, int arg1)](#getDefaultSize-int-int-) | | +| [getDisplay()](#getDisplay--) | | +| [getDrawableState()](#getDrawableState--) | | +| [getDrawingCache()](#getDrawingCache--) | | +| [getDrawingCache(boolean arg0)](#getDrawingCache-boolean-) | | +| [getDrawingCacheBackgroundColor()](#getDrawingCacheBackgroundColor--) | | +| [getDrawingCacheQuality()](#getDrawingCacheQuality--) | | +| [getDrawingRect(Rect arg0)](#getDrawingRect-android.graphics.Rect-) | | +| [getDrawingTime()](#getDrawingTime--) | | +| [getElevation()](#getElevation--) | | +| [getExplicitStyle()](#getExplicitStyle--) | | +| [getFilterTouchesWhenObscured()](#getFilterTouchesWhenObscured--) | | +| [getFitsSystemWindows()](#getFitsSystemWindows--) | | +| [getFocusable()](#getFocusable--) | | +| [getFocusables(int arg0)](#getFocusables-int-) | | +| [getFocusedRect(Rect arg0)](#getFocusedRect-android.graphics.Rect-) | | +| [getForeground()](#getForeground--) | | +| [getForegroundGravity()](#getForegroundGravity--) | | +| [getForegroundTintBlendMode()](#getForegroundTintBlendMode--) | | +| [getForegroundTintList()](#getForegroundTintList--) | | +| [getForegroundTintMode()](#getForegroundTintMode--) | | +| [getGlobalVisibleRect(Rect arg0)](#getGlobalVisibleRect-android.graphics.Rect-) | | +| [getGlobalVisibleRect(Rect arg0, Point arg1)](#getGlobalVisibleRect-android.graphics.Rect-android.graphics.Point-) | | +| [getHandler()](#getHandler--) | | +| [getHasOverlappingRendering()](#getHasOverlappingRendering--) | | +| [getHeight()](#getHeight--) | | +| [getHitRect(Rect arg0)](#getHitRect-android.graphics.Rect-) | | +| [getHorizontalFadingEdgeLength()](#getHorizontalFadingEdgeLength--) | | +| [getHorizontalScrollbarThumbDrawable()](#getHorizontalScrollbarThumbDrawable--) | | +| [getHorizontalScrollbarTrackDrawable()](#getHorizontalScrollbarTrackDrawable--) | | +| [getId()](#getId--) | | +| [getImportantForAccessibility()](#getImportantForAccessibility--) | | +| [getImportantForAutofill()](#getImportantForAutofill--) | | +| [getImportantForContentCapture()](#getImportantForContentCapture--) | | +| [getKeepScreenOn()](#getKeepScreenOn--) | | +| [getKeyDispatcherState()](#getKeyDispatcherState--) | | +| [getLabelFor()](#getLabelFor--) | | +| [getLayerType()](#getLayerType--) | | +| [getLayoutDirection()](#getLayoutDirection--) | | +| [getLayoutParams()](#getLayoutParams--) | | +| [getLeft()](#getLeft--) | | +| [getLocalVisibleRect(Rect arg0)](#getLocalVisibleRect-android.graphics.Rect-) | | +| [getLocationInSurface(int[] arg0)](#getLocationInSurface-int---) | | +| [getLocationInWindow(int[] arg0)](#getLocationInWindow-int---) | | +| [getLocationOnScreen(int[] arg0)](#getLocationOnScreen-int---) | | +| [getMatrix()](#getMatrix--) | | +| [getMeasuredHeight()](#getMeasuredHeight--) | | +| [getMeasuredHeightAndState()](#getMeasuredHeightAndState--) | | +| [getMeasuredState()](#getMeasuredState--) | | +| [getMeasuredWidth()](#getMeasuredWidth--) | | +| [getMeasuredWidthAndState()](#getMeasuredWidthAndState--) | | +| [getMinimumHeight()](#getMinimumHeight--) | | +| [getMinimumWidth()](#getMinimumWidth--) | | +| [getNextClusterForwardId()](#getNextClusterForwardId--) | | +| [getNextFocusDownId()](#getNextFocusDownId--) | | +| [getNextFocusForwardId()](#getNextFocusForwardId--) | | +| [getNextFocusLeftId()](#getNextFocusLeftId--) | | +| [getNextFocusRightId()](#getNextFocusRightId--) | | +| [getNextFocusUpId()](#getNextFocusUpId--) | | +| [getOnFocusChangeListener()](#getOnFocusChangeListener--) | | +| [getOutlineAmbientShadowColor()](#getOutlineAmbientShadowColor--) | | +| [getOutlineProvider()](#getOutlineProvider--) | | +| [getOutlineSpotShadowColor()](#getOutlineSpotShadowColor--) | | +| [getOverScrollMode()](#getOverScrollMode--) | | +| [getOverlay()](#getOverlay--) | | +| [getPaddingBottom()](#getPaddingBottom--) | | +| [getPaddingEnd()](#getPaddingEnd--) | | +| [getPaddingLeft()](#getPaddingLeft--) | | +| [getPaddingRight()](#getPaddingRight--) | | +| [getPaddingStart()](#getPaddingStart--) | | +| [getPaddingTop()](#getPaddingTop--) | | +| [getParent()](#getParent--) | | +| [getParentForAccessibility()](#getParentForAccessibility--) | | +| [getPivotX()](#getPivotX--) | | +| [getPivotY()](#getPivotY--) | | +| [getPointerIcon()](#getPointerIcon--) | | +| [getPreferKeepClearRects()](#getPreferKeepClearRects--) | | +| [getReceiveContentMimeTypes()](#getReceiveContentMimeTypes--) | | +| [getResources()](#getResources--) | | +| [getRevealOnFocusHint()](#getRevealOnFocusHint--) | | +| [getRight()](#getRight--) | | +| [getRootSurfaceControl()](#getRootSurfaceControl--) | | +| [getRootView()](#getRootView--) | | +| [getRootWindowInsets()](#getRootWindowInsets--) | | +| [getRotation()](#getRotation--) | | +| [getRotationX()](#getRotationX--) | | +| [getRotationY()](#getRotationY--) | | +| [getScaleX()](#getScaleX--) | | +| [getScaleY()](#getScaleY--) | | +| [getScrollBarDefaultDelayBeforeFade()](#getScrollBarDefaultDelayBeforeFade--) | | +| [getScrollBarFadeDuration()](#getScrollBarFadeDuration--) | | +| [getScrollBarSize()](#getScrollBarSize--) | | +| [getScrollBarStyle()](#getScrollBarStyle--) | | +| [getScrollCaptureHint()](#getScrollCaptureHint--) | | +| [getScrollIndicators()](#getScrollIndicators--) | | +| [getScrollX()](#getScrollX--) | | +| [getScrollY()](#getScrollY--) | | +| [getSolidColor()](#getSolidColor--) | | +| [getSourceLayoutResId()](#getSourceLayoutResId--) | | +| [getStateDescription()](#getStateDescription--) | | +| [getStateListAnimator()](#getStateListAnimator--) | | +| [getSystemGestureExclusionRects()](#getSystemGestureExclusionRects--) | | +| [getSystemUiVisibility()](#getSystemUiVisibility--) | | +| [getTag()](#getTag--) | | +| [getTag(int arg0)](#getTag-int-) | | +| [getTextAlignment()](#getTextAlignment--) | | +| [getTextDirection()](#getTextDirection--) | | +| [getTooltipText()](#getTooltipText--) | | +| [getTop()](#getTop--) | | +| [getTouchDelegate()](#getTouchDelegate--) | | +| [getTouchables()](#getTouchables--) | | +| [getTransitionAlpha()](#getTransitionAlpha--) | | +| [getTransitionName()](#getTransitionName--) | | +| [getTranslationX()](#getTranslationX--) | | +| [getTranslationY()](#getTranslationY--) | | +| [getTranslationZ()](#getTranslationZ--) | | +| [getUniqueDrawingId()](#getUniqueDrawingId--) | | +| [getVerticalFadingEdgeLength()](#getVerticalFadingEdgeLength--) | | +| [getVerticalScrollbarPosition()](#getVerticalScrollbarPosition--) | | +| [getVerticalScrollbarThumbDrawable()](#getVerticalScrollbarThumbDrawable--) | | +| [getVerticalScrollbarTrackDrawable()](#getVerticalScrollbarTrackDrawable--) | | +| [getVerticalScrollbarWidth()](#getVerticalScrollbarWidth--) | | +| [getViewTranslationResponse()](#getViewTranslationResponse--) | | +| [getViewTreeObserver()](#getViewTreeObserver--) | | +| [getVisibility()](#getVisibility--) | | +| [getWidth()](#getWidth--) | | +| [getWindowId()](#getWindowId--) | | +| [getWindowInsetsController()](#getWindowInsetsController--) | | +| [getWindowSystemUiVisibility()](#getWindowSystemUiVisibility--) | | +| [getWindowToken()](#getWindowToken--) | | +| [getWindowVisibility()](#getWindowVisibility--) | | +| [getWindowVisibleDisplayFrame(Rect arg0)](#getWindowVisibleDisplayFrame-android.graphics.Rect-) | | +| [getX()](#getX--) | | +| [getY()](#getY--) | | +| [getZ()](#getZ--) | | +| [hasExplicitFocusable()](#hasExplicitFocusable--) | | +| [hasFocus()](#hasFocus--) | | +| [hasFocusable()](#hasFocusable--) | | +| [hasNestedScrollingParent()](#hasNestedScrollingParent--) | | +| [hasOnClickListeners()](#hasOnClickListeners--) | | +| [hasOnLongClickListeners()](#hasOnLongClickListeners--) | | +| [hasOverlappingRendering()](#hasOverlappingRendering--) | | +| [hasPointerCapture()](#hasPointerCapture--) | | +| [hasTransientState()](#hasTransientState--) | | +| [hasWindowFocus()](#hasWindowFocus--) | | +| [hashCode()](#hashCode--) | | +| [inflate(Context arg0, int arg1, ViewGroup arg2)](#inflate-android.content.Context-int-android.view.ViewGroup-) | | +| [invalidate()](#invalidate--) | | +| [invalidate(Rect arg0)](#invalidate-android.graphics.Rect-) | | +| [invalidate(int arg0, int arg1, int arg2, int arg3)](#invalidate-int-int-int-int-) | | +| [invalidateDrawable(Drawable arg0)](#invalidateDrawable-android.graphics.drawable.Drawable-) | | +| [invalidateOutline()](#invalidateOutline--) | | +| [isAccessibilityFocused()](#isAccessibilityFocused--) | | +| [isAccessibilityHeading()](#isAccessibilityHeading--) | | +| [isActivated()](#isActivated--) | | +| [isAttachedToWindow()](#isAttachedToWindow--) | | +| [isAutoHandwritingEnabled()](#isAutoHandwritingEnabled--) | | +| [isClickable()](#isClickable--) | | +| [isContextClickable()](#isContextClickable--) | | +| [isDirty()](#isDirty--) | | +| [isDrawingCacheEnabled()](#isDrawingCacheEnabled--) | | +| [isDuplicateParentStateEnabled()](#isDuplicateParentStateEnabled--) | | +| [isEnabled()](#isEnabled--) | | +| [isFocusable()](#isFocusable--) | | +| [isFocusableInTouchMode()](#isFocusableInTouchMode--) | | +| [isFocused()](#isFocused--) | | +| [isFocusedByDefault()](#isFocusedByDefault--) | | +| [isForceDarkAllowed()](#isForceDarkAllowed--) | | +| [isHapticFeedbackEnabled()](#isHapticFeedbackEnabled--) | | +| [isHardwareAccelerated()](#isHardwareAccelerated--) | | +| [isHorizontalFadingEdgeEnabled()](#isHorizontalFadingEdgeEnabled--) | | +| [isHorizontalScrollBarEnabled()](#isHorizontalScrollBarEnabled--) | | +| [isHovered()](#isHovered--) | | +| [isImportantForAccessibility()](#isImportantForAccessibility--) | | +| [isImportantForAutofill()](#isImportantForAutofill--) | | +| [isImportantForContentCapture()](#isImportantForContentCapture--) | | +| [isInEditMode()](#isInEditMode--) | | +| [isInLayout()](#isInLayout--) | | +| [isInTouchMode()](#isInTouchMode--) | | +| [isKeyboardNavigationCluster()](#isKeyboardNavigationCluster--) | | +| [isLaidOut()](#isLaidOut--) | | +| [isLayoutDirectionResolved()](#isLayoutDirectionResolved--) | | +| [isLayoutRequested()](#isLayoutRequested--) | | +| [isLongClickable()](#isLongClickable--) | | +| [isNestedScrollingEnabled()](#isNestedScrollingEnabled--) | | +| [isOpaque()](#isOpaque--) | | +| [isPaddingRelative()](#isPaddingRelative--) | | +| [isPivotSet()](#isPivotSet--) | | +| [isPreferKeepClear()](#isPreferKeepClear--) | | +| [isPressed()](#isPressed--) | | +| [isSaveEnabled()](#isSaveEnabled--) | | +| [isSaveFromParentEnabled()](#isSaveFromParentEnabled--) | | +| [isScreenReaderFocusable()](#isScreenReaderFocusable--) | | +| [isScrollContainer()](#isScrollContainer--) | | +| [isScrollbarFadingEnabled()](#isScrollbarFadingEnabled--) | | +| [isSelected()](#isSelected--) | | +| [isShowingLayoutBounds()](#isShowingLayoutBounds--) | | +| [isShown()](#isShown--) | | +| [isSoundEffectsEnabled()](#isSoundEffectsEnabled--) | | +| [isTemporarilyDetached()](#isTemporarilyDetached--) | | +| [isTextAlignmentResolved()](#isTextAlignmentResolved--) | | +| [isTextDirectionResolved()](#isTextDirectionResolved--) | | +| [isVerticalFadingEdgeEnabled()](#isVerticalFadingEdgeEnabled--) | | +| [isVerticalScrollBarEnabled()](#isVerticalScrollBarEnabled--) | | +| [isVisibleToUserForAutofill(int arg0)](#isVisibleToUserForAutofill-int-) | | +| [jumpDrawablesToCurrentState()](#jumpDrawablesToCurrentState--) | | +| [keyboardNavigationClusterSearch(View arg0, int arg1)](#keyboardNavigationClusterSearch-android.view.View-int-) | | +| [layout(int arg0, int arg1, int arg2, int arg3)](#layout-int-int-int-int-) | | +| [measure(int arg0, int arg1)](#measure-int-int-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [offsetLeftAndRight(int arg0)](#offsetLeftAndRight-int-) | | +| [offsetTopAndBottom(int arg0)](#offsetTopAndBottom-int-) | | +| [onApplyWindowInsets(WindowInsets arg0)](#onApplyWindowInsets-android.view.WindowInsets-) | | +| [onCancelPendingInputEvents()](#onCancelPendingInputEvents--) | | +| [onCapturedPointerEvent(MotionEvent arg0)](#onCapturedPointerEvent-android.view.MotionEvent-) | | +| [onCheckIsTextEditor()](#onCheckIsTextEditor--) | | +| [onCreateInputConnection(EditorInfo arg0)](#onCreateInputConnection-android.view.inputmethod.EditorInfo-) | | +| [onCreateViewTranslationRequest(int[] arg0, Consumer arg1)](#onCreateViewTranslationRequest-int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--) | | +| [onCreateVirtualViewTranslationRequests(long[] arg0, int[] arg1, Consumer arg2)](#onCreateVirtualViewTranslationRequests-long---int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--) | | +| [onDragEvent(DragEvent arg0)](#onDragEvent-android.view.DragEvent-) | | +| [onDraw(Canvas canvas)](#onDraw-android.graphics.Canvas-) | | +| [onDrawForeground(Canvas arg0)](#onDrawForeground-android.graphics.Canvas-) | | +| [onFilterTouchEventForSecurity(MotionEvent arg0)](#onFilterTouchEventForSecurity-android.view.MotionEvent-) | | +| [onFinishTemporaryDetach()](#onFinishTemporaryDetach--) | | +| [onGenericMotionEvent(MotionEvent arg0)](#onGenericMotionEvent-android.view.MotionEvent-) | | +| [onHoverChanged(boolean arg0)](#onHoverChanged-boolean-) | | +| [onHoverEvent(MotionEvent arg0)](#onHoverEvent-android.view.MotionEvent-) | | +| [onInitializeAccessibilityEvent(AccessibilityEvent arg0)](#onInitializeAccessibilityEvent-android.view.accessibility.AccessibilityEvent-) | | +| [onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo arg0)](#onInitializeAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-) | | +| [onKeyDown(int arg0, KeyEvent arg1)](#onKeyDown-int-android.view.KeyEvent-) | | +| [onKeyLongPress(int arg0, KeyEvent arg1)](#onKeyLongPress-int-android.view.KeyEvent-) | | +| [onKeyMultiple(int arg0, int arg1, KeyEvent arg2)](#onKeyMultiple-int-int-android.view.KeyEvent-) | | +| [onKeyPreIme(int arg0, KeyEvent arg1)](#onKeyPreIme-int-android.view.KeyEvent-) | | +| [onKeyShortcut(int arg0, KeyEvent arg1)](#onKeyShortcut-int-android.view.KeyEvent-) | | +| [onKeyUp(int arg0, KeyEvent arg1)](#onKeyUp-int-android.view.KeyEvent-) | | +| [onPointerCaptureChange(boolean arg0)](#onPointerCaptureChange-boolean-) | | +| [onPopulateAccessibilityEvent(AccessibilityEvent arg0)](#onPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-) | | +| [onProvideAutofillStructure(ViewStructure arg0, int arg1)](#onProvideAutofillStructure-android.view.ViewStructure-int-) | | +| [onProvideAutofillVirtualStructure(ViewStructure arg0, int arg1)](#onProvideAutofillVirtualStructure-android.view.ViewStructure-int-) | | +| [onProvideContentCaptureStructure(ViewStructure arg0, int arg1)](#onProvideContentCaptureStructure-android.view.ViewStructure-int-) | | +| [onProvideStructure(ViewStructure arg0)](#onProvideStructure-android.view.ViewStructure-) | | +| [onProvideVirtualStructure(ViewStructure arg0)](#onProvideVirtualStructure-android.view.ViewStructure-) | | +| [onReceiveContent(ContentInfo arg0)](#onReceiveContent-android.view.ContentInfo-) | | +| [onResolvePointerIcon(MotionEvent arg0, int arg1)](#onResolvePointerIcon-android.view.MotionEvent-int-) | | +| [onRtlPropertiesChanged(int arg0)](#onRtlPropertiesChanged-int-) | | +| [onScreenStateChanged(int arg0)](#onScreenStateChanged-int-) | | +| [onScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2)](#onScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--) | | +| [onStartTemporaryDetach()](#onStartTemporaryDetach--) | | +| [onTouchEvent(MotionEvent arg0)](#onTouchEvent-android.view.MotionEvent-) | | +| [onTrackballEvent(MotionEvent arg0)](#onTrackballEvent-android.view.MotionEvent-) | | +| [onViewTranslationResponse(ViewTranslationResponse arg0)](#onViewTranslationResponse-android.view.translation.ViewTranslationResponse-) | | +| [onVirtualViewTranslationResponses(LongSparseArray arg0)](#onVirtualViewTranslationResponses-android.util.LongSparseArray-android.view.translation.ViewTranslationResponse--) | | +| [onVisibilityAggregated(boolean arg0)](#onVisibilityAggregated-boolean-) | | +| [onWindowFocusChanged(boolean arg0)](#onWindowFocusChanged-boolean-) | | +| [onWindowSystemUiVisibilityChanged(int arg0)](#onWindowSystemUiVisibilityChanged-int-) | | +| [performAccessibilityAction(int arg0, Bundle arg1)](#performAccessibilityAction-int-android.os.Bundle-) | | +| [performClick()](#performClick--) | | +| [performContextClick()](#performContextClick--) | | +| [performContextClick(float arg0, float arg1)](#performContextClick-float-float-) | | +| [performHapticFeedback(int arg0)](#performHapticFeedback-int-) | | +| [performHapticFeedback(int arg0, int arg1)](#performHapticFeedback-int-int-) | | +| [performLongClick()](#performLongClick--) | | +| [performLongClick(float arg0, float arg1)](#performLongClick-float-float-) | | +| [performReceiveContent(ContentInfo arg0)](#performReceiveContent-android.view.ContentInfo-) | | +| [playSoundEffect(int arg0)](#playSoundEffect-int-) | | +| [post(Runnable arg0)](#post-java.lang.Runnable-) | | +| [postDelayed(Runnable arg0, long arg1)](#postDelayed-java.lang.Runnable-long-) | | +| [postInvalidate()](#postInvalidate--) | | +| [postInvalidate(int arg0, int arg1, int arg2, int arg3)](#postInvalidate-int-int-int-int-) | | +| [postInvalidateDelayed(long arg0)](#postInvalidateDelayed-long-) | | +| [postInvalidateDelayed(long arg0, int arg1, int arg2, int arg3, int arg4)](#postInvalidateDelayed-long-int-int-int-int-) | | +| [postInvalidateOnAnimation()](#postInvalidateOnAnimation--) | | +| [postInvalidateOnAnimation(int arg0, int arg1, int arg2, int arg3)](#postInvalidateOnAnimation-int-int-int-int-) | | +| [postOnAnimation(Runnable arg0)](#postOnAnimation-java.lang.Runnable-) | | +| [postOnAnimationDelayed(Runnable arg0, long arg1)](#postOnAnimationDelayed-java.lang.Runnable-long-) | | +| [refreshDrawableState()](#refreshDrawableState--) | | +| [releasePointerCapture()](#releasePointerCapture--) | | +| [removeCallbacks(Runnable arg0)](#removeCallbacks-java.lang.Runnable-) | | +| [removeOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0)](#removeOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-) | | +| [removeOnLayoutChangeListener(View.OnLayoutChangeListener arg0)](#removeOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-) | | +| [removeOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0)](#removeOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-) | | +| [requestApplyInsets()](#requestApplyInsets--) | | +| [requestFitSystemWindows()](#requestFitSystemWindows--) | | +| [requestFocus()](#requestFocus--) | | +| [requestFocus(int arg0)](#requestFocus-int-) | | +| [requestFocus(int arg0, Rect arg1)](#requestFocus-int-android.graphics.Rect-) | | +| [requestFocusFromTouch()](#requestFocusFromTouch--) | | +| [requestLayout()](#requestLayout--) | | +| [requestPointerCapture()](#requestPointerCapture--) | | +| [requestRectangleOnScreen(Rect arg0)](#requestRectangleOnScreen-android.graphics.Rect-) | | +| [requestRectangleOnScreen(Rect arg0, boolean arg1)](#requestRectangleOnScreen-android.graphics.Rect-boolean-) | | +| [requestUnbufferedDispatch(MotionEvent arg0)](#requestUnbufferedDispatch-android.view.MotionEvent-) | | +| [requestUnbufferedDispatch(int arg0)](#requestUnbufferedDispatch-int-) | | +| [resetPivot()](#resetPivot--) | | +| [resolveSize(int arg0, int arg1)](#resolveSize-int-int-) | | +| [resolveSizeAndState(int arg0, int arg1, int arg2)](#resolveSizeAndState-int-int-int-) | | +| [restoreDefaultFocus()](#restoreDefaultFocus--) | | +| [restoreHierarchyState(SparseArray arg0)](#restoreHierarchyState-android.util.SparseArray-android.os.Parcelable--) | | +| [saveAttributeDataForStyleable(Context arg0, int[] arg1, AttributeSet arg2, TypedArray arg3, int arg4, int arg5)](#saveAttributeDataForStyleable-android.content.Context-int---android.util.AttributeSet-android.content.res.TypedArray-int-int-) | | +| [saveHierarchyState(SparseArray arg0)](#saveHierarchyState-android.util.SparseArray-android.os.Parcelable--) | | +| [scheduleDrawable(Drawable arg0, Runnable arg1, long arg2)](#scheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-long-) | | +| [scrollBy(int arg0, int arg1)](#scrollBy-int-int-) | | +| [scrollTo(int arg0, int arg1)](#scrollTo-int-int-) | | +| [sendAccessibilityEvent(int arg0)](#sendAccessibilityEvent-int-) | | +| [sendAccessibilityEventUnchecked(AccessibilityEvent arg0)](#sendAccessibilityEventUnchecked-android.view.accessibility.AccessibilityEvent-) | | +| [setAccessibilityDelegate(View.AccessibilityDelegate arg0)](#setAccessibilityDelegate-android.view.View.AccessibilityDelegate-) | | +| [setAccessibilityHeading(boolean arg0)](#setAccessibilityHeading-boolean-) | | +| [setAccessibilityLiveRegion(int arg0)](#setAccessibilityLiveRegion-int-) | | +| [setAccessibilityPaneTitle(CharSequence arg0)](#setAccessibilityPaneTitle-java.lang.CharSequence-) | | +| [setAccessibilityTraversalAfter(int arg0)](#setAccessibilityTraversalAfter-int-) | | +| [setAccessibilityTraversalBefore(int arg0)](#setAccessibilityTraversalBefore-int-) | | +| [setActivated(boolean arg0)](#setActivated-boolean-) | | +| [setAllowClickWhenDisabled(boolean arg0)](#setAllowClickWhenDisabled-boolean-) | | +| [setAlpha(float arg0)](#setAlpha-float-) | | +| [setAnimation(Animation arg0)](#setAnimation-android.view.animation.Animation-) | | +| [setAnimationMatrix(Matrix arg0)](#setAnimationMatrix-android.graphics.Matrix-) | | +| [setAutoHandwritingEnabled(boolean arg0)](#setAutoHandwritingEnabled-boolean-) | | +| [setAutofillHints(String[] arg0)](#setAutofillHints-java.lang.String...-) | | +| [setAutofillId(AutofillId arg0)](#setAutofillId-android.view.autofill.AutofillId-) | | +| [setBackground(Drawable arg0)](#setBackground-android.graphics.drawable.Drawable-) | | +| [setBackgroundColor(int arg0)](#setBackgroundColor-int-) | | +| [setBackgroundDrawable(Drawable arg0)](#setBackgroundDrawable-android.graphics.drawable.Drawable-) | | +| [setBackgroundResource(int arg0)](#setBackgroundResource-int-) | | +| [setBackgroundTintBlendMode(BlendMode arg0)](#setBackgroundTintBlendMode-android.graphics.BlendMode-) | | +| [setBackgroundTintList(ColorStateList arg0)](#setBackgroundTintList-android.content.res.ColorStateList-) | | +| [setBackgroundTintMode(PorterDuff.Mode arg0)](#setBackgroundTintMode-android.graphics.PorterDuff.Mode-) | | +| [setBottom(int arg0)](#setBottom-int-) | | +| [setCameraDistance(float arg0)](#setCameraDistance-float-) | | +| [setClickable(boolean arg0)](#setClickable-boolean-) | | +| [setClipBounds(Rect arg0)](#setClipBounds-android.graphics.Rect-) | | +| [setClipToOutline(boolean arg0)](#setClipToOutline-boolean-) | | +| [setContentCaptureSession(ContentCaptureSession arg0)](#setContentCaptureSession-android.view.contentcapture.ContentCaptureSession-) | | +| [setContentDescription(CharSequence arg0)](#setContentDescription-java.lang.CharSequence-) | | +| [setContextClickable(boolean arg0)](#setContextClickable-boolean-) | | +| [setDefaultFocusHighlightEnabled(boolean arg0)](#setDefaultFocusHighlightEnabled-boolean-) | | +| [setDrawingCacheBackgroundColor(int arg0)](#setDrawingCacheBackgroundColor-int-) | | +| [setDrawingCacheEnabled(boolean arg0)](#setDrawingCacheEnabled-boolean-) | | +| [setDrawingCacheQuality(int arg0)](#setDrawingCacheQuality-int-) | | +| [setDuplicateParentStateEnabled(boolean arg0)](#setDuplicateParentStateEnabled-boolean-) | | +| [setElevation(float arg0)](#setElevation-float-) | | +| [setEnabled(boolean arg0)](#setEnabled-boolean-) | | +| [setFadingEdgeLength(int arg0)](#setFadingEdgeLength-int-) | | +| [setFilterTouchesWhenObscured(boolean arg0)](#setFilterTouchesWhenObscured-boolean-) | | +| [setFitsSystemWindows(boolean arg0)](#setFitsSystemWindows-boolean-) | | +| [setFocusable(boolean arg0)](#setFocusable-boolean-) | | +| [setFocusable(int arg0)](#setFocusable-int-) | | +| [setFocusableInTouchMode(boolean arg0)](#setFocusableInTouchMode-boolean-) | | +| [setFocusedByDefault(boolean arg0)](#setFocusedByDefault-boolean-) | | +| [setForceDarkAllowed(boolean arg0)](#setForceDarkAllowed-boolean-) | | +| [setForeground(Drawable arg0)](#setForeground-android.graphics.drawable.Drawable-) | | +| [setForegroundGravity(int arg0)](#setForegroundGravity-int-) | | +| [setForegroundTintBlendMode(BlendMode arg0)](#setForegroundTintBlendMode-android.graphics.BlendMode-) | | +| [setForegroundTintList(ColorStateList arg0)](#setForegroundTintList-android.content.res.ColorStateList-) | | +| [setForegroundTintMode(PorterDuff.Mode arg0)](#setForegroundTintMode-android.graphics.PorterDuff.Mode-) | | +| [setHapticFeedbackEnabled(boolean arg0)](#setHapticFeedbackEnabled-boolean-) | | +| [setHasTransientState(boolean arg0)](#setHasTransientState-boolean-) | | +| [setHorizontalFadingEdgeEnabled(boolean arg0)](#setHorizontalFadingEdgeEnabled-boolean-) | | +| [setHorizontalScrollBarEnabled(boolean arg0)](#setHorizontalScrollBarEnabled-boolean-) | | +| [setHorizontalScrollbarThumbDrawable(Drawable arg0)](#setHorizontalScrollbarThumbDrawable-android.graphics.drawable.Drawable-) | | +| [setHorizontalScrollbarTrackDrawable(Drawable arg0)](#setHorizontalScrollbarTrackDrawable-android.graphics.drawable.Drawable-) | | +| [setHovered(boolean arg0)](#setHovered-boolean-) | | +| [setId(int arg0)](#setId-int-) | | +| [setImportantForAccessibility(int arg0)](#setImportantForAccessibility-int-) | | +| [setImportantForAutofill(int arg0)](#setImportantForAutofill-int-) | | +| [setImportantForContentCapture(int arg0)](#setImportantForContentCapture-int-) | | +| [setKeepScreenOn(boolean arg0)](#setKeepScreenOn-boolean-) | | +| [setKeyboardNavigationCluster(boolean arg0)](#setKeyboardNavigationCluster-boolean-) | | +| [setLabelFor(int arg0)](#setLabelFor-int-) | | +| [setLayerPaint(Paint arg0)](#setLayerPaint-android.graphics.Paint-) | | +| [setLayerType(int arg0, Paint arg1)](#setLayerType-int-android.graphics.Paint-) | | +| [setLayoutDirection(int arg0)](#setLayoutDirection-int-) | | +| [setLayoutParams(ViewGroup.LayoutParams arg0)](#setLayoutParams-android.view.ViewGroup.LayoutParams-) | | +| [setLeft(int arg0)](#setLeft-int-) | | +| [setLeftTopRightBottom(int arg0, int arg1, int arg2, int arg3)](#setLeftTopRightBottom-int-int-int-int-) | | +| [setLongClickable(boolean arg0)](#setLongClickable-boolean-) | | +| [setMinimumHeight(int arg0)](#setMinimumHeight-int-) | | +| [setMinimumWidth(int arg0)](#setMinimumWidth-int-) | | +| [setNestedScrollingEnabled(boolean arg0)](#setNestedScrollingEnabled-boolean-) | | +| [setNextClusterForwardId(int arg0)](#setNextClusterForwardId-int-) | | +| [setNextFocusDownId(int arg0)](#setNextFocusDownId-int-) | | +| [setNextFocusForwardId(int arg0)](#setNextFocusForwardId-int-) | | +| [setNextFocusLeftId(int arg0)](#setNextFocusLeftId-int-) | | +| [setNextFocusRightId(int arg0)](#setNextFocusRightId-int-) | | +| [setNextFocusUpId(int arg0)](#setNextFocusUpId-int-) | | +| [setOnApplyWindowInsetsListener(View.OnApplyWindowInsetsListener arg0)](#setOnApplyWindowInsetsListener-android.view.View.OnApplyWindowInsetsListener-) | | +| [setOnCapturedPointerListener(View.OnCapturedPointerListener arg0)](#setOnCapturedPointerListener-android.view.View.OnCapturedPointerListener-) | | +| [setOnClickListener(View.OnClickListener arg0)](#setOnClickListener-android.view.View.OnClickListener-) | | +| [setOnContextClickListener(View.OnContextClickListener arg0)](#setOnContextClickListener-android.view.View.OnContextClickListener-) | | +| [setOnCreateContextMenuListener(View.OnCreateContextMenuListener arg0)](#setOnCreateContextMenuListener-android.view.View.OnCreateContextMenuListener-) | | +| [setOnDragListener(View.OnDragListener arg0)](#setOnDragListener-android.view.View.OnDragListener-) | | +| [setOnFocusChangeListener(View.OnFocusChangeListener arg0)](#setOnFocusChangeListener-android.view.View.OnFocusChangeListener-) | | +| [setOnGenericMotionListener(View.OnGenericMotionListener arg0)](#setOnGenericMotionListener-android.view.View.OnGenericMotionListener-) | | +| [setOnHoverListener(View.OnHoverListener arg0)](#setOnHoverListener-android.view.View.OnHoverListener-) | | +| [setOnKeyListener(View.OnKeyListener arg0)](#setOnKeyListener-android.view.View.OnKeyListener-) | | +| [setOnLongClickListener(View.OnLongClickListener arg0)](#setOnLongClickListener-android.view.View.OnLongClickListener-) | | +| [setOnReceiveContentListener(String[] arg0, OnReceiveContentListener arg1)](#setOnReceiveContentListener-java.lang.String---android.view.OnReceiveContentListener-) | | +| [setOnScrollChangeListener(View.OnScrollChangeListener arg0)](#setOnScrollChangeListener-android.view.View.OnScrollChangeListener-) | | +| [setOnSystemUiVisibilityChangeListener(View.OnSystemUiVisibilityChangeListener arg0)](#setOnSystemUiVisibilityChangeListener-android.view.View.OnSystemUiVisibilityChangeListener-) | | +| [setOnTouchListener(View.OnTouchListener arg0)](#setOnTouchListener-android.view.View.OnTouchListener-) | | +| [setOutlineAmbientShadowColor(int arg0)](#setOutlineAmbientShadowColor-int-) | | +| [setOutlineProvider(ViewOutlineProvider arg0)](#setOutlineProvider-android.view.ViewOutlineProvider-) | | +| [setOutlineSpotShadowColor(int arg0)](#setOutlineSpotShadowColor-int-) | | +| [setOverScrollMode(int arg0)](#setOverScrollMode-int-) | | +| [setPadding(int arg0, int arg1, int arg2, int arg3)](#setPadding-int-int-int-int-) | | +| [setPaddingRelative(int arg0, int arg1, int arg2, int arg3)](#setPaddingRelative-int-int-int-int-) | | +| [setPivotX(float arg0)](#setPivotX-float-) | | +| [setPivotY(float arg0)](#setPivotY-float-) | | +| [setPointerIcon(PointerIcon arg0)](#setPointerIcon-android.view.PointerIcon-) | | +| [setPreferKeepClear(boolean arg0)](#setPreferKeepClear-boolean-) | | +| [setPreferKeepClearRects(List arg0)](#setPreferKeepClearRects-java.util.List-android.graphics.Rect--) | | +| [setPressed(boolean arg0)](#setPressed-boolean-) | | +| [setRenderEffect(RenderEffect arg0)](#setRenderEffect-android.graphics.RenderEffect-) | | +| [setRevealOnFocusHint(boolean arg0)](#setRevealOnFocusHint-boolean-) | | +| [setRight(int arg0)](#setRight-int-) | | +| [setRotation(float arg0)](#setRotation-float-) | | +| [setRotationX(float arg0)](#setRotationX-float-) | | +| [setRotationY(float arg0)](#setRotationY-float-) | | +| [setSaveEnabled(boolean arg0)](#setSaveEnabled-boolean-) | | +| [setSaveFromParentEnabled(boolean arg0)](#setSaveFromParentEnabled-boolean-) | | +| [setScaleX(float arg0)](#setScaleX-float-) | | +| [setScaleY(float arg0)](#setScaleY-float-) | | +| [setScreenReaderFocusable(boolean arg0)](#setScreenReaderFocusable-boolean-) | | +| [setScrollBarDefaultDelayBeforeFade(int arg0)](#setScrollBarDefaultDelayBeforeFade-int-) | | +| [setScrollBarFadeDuration(int arg0)](#setScrollBarFadeDuration-int-) | | +| [setScrollBarSize(int arg0)](#setScrollBarSize-int-) | | +| [setScrollBarStyle(int arg0)](#setScrollBarStyle-int-) | | +| [setScrollCaptureCallback(ScrollCaptureCallback arg0)](#setScrollCaptureCallback-android.view.ScrollCaptureCallback-) | | +| [setScrollCaptureHint(int arg0)](#setScrollCaptureHint-int-) | | +| [setScrollContainer(boolean arg0)](#setScrollContainer-boolean-) | | +| [setScrollIndicators(int arg0)](#setScrollIndicators-int-) | | +| [setScrollIndicators(int arg0, int arg1)](#setScrollIndicators-int-int-) | | +| [setScrollX(int arg0)](#setScrollX-int-) | | +| [setScrollY(int arg0)](#setScrollY-int-) | | +| [setScrollbarFadingEnabled(boolean arg0)](#setScrollbarFadingEnabled-boolean-) | | +| [setSelected(boolean arg0)](#setSelected-boolean-) | | +| [setSoundEffectsEnabled(boolean arg0)](#setSoundEffectsEnabled-boolean-) | | +| [setStateDescription(CharSequence arg0)](#setStateDescription-java.lang.CharSequence-) | | +| [setStateListAnimator(StateListAnimator arg0)](#setStateListAnimator-android.animation.StateListAnimator-) | | +| [setSystemGestureExclusionRects(List arg0)](#setSystemGestureExclusionRects-java.util.List-android.graphics.Rect--) | | +| [setSystemUiVisibility(int arg0)](#setSystemUiVisibility-int-) | | +| [setTag(int arg0, Object arg1)](#setTag-int-java.lang.Object-) | | +| [setTag(Object arg0)](#setTag-java.lang.Object-) | | +| [setTextAlignment(int arg0)](#setTextAlignment-int-) | | +| [setTextDirection(int arg0)](#setTextDirection-int-) | | +| [setTooltipText(CharSequence arg0)](#setTooltipText-java.lang.CharSequence-) | | +| [setTop(int arg0)](#setTop-int-) | | +| [setTouchDelegate(TouchDelegate arg0)](#setTouchDelegate-android.view.TouchDelegate-) | | +| [setTransitionAlpha(float arg0)](#setTransitionAlpha-float-) | | +| [setTransitionName(String arg0)](#setTransitionName-java.lang.String-) | | +| [setTransitionVisibility(int arg0)](#setTransitionVisibility-int-) | | +| [setTranslationX(float arg0)](#setTranslationX-float-) | | +| [setTranslationY(float arg0)](#setTranslationY-float-) | | +| [setTranslationZ(float arg0)](#setTranslationZ-float-) | | +| [setVerticalFadingEdgeEnabled(boolean arg0)](#setVerticalFadingEdgeEnabled-boolean-) | | +| [setVerticalScrollBarEnabled(boolean arg0)](#setVerticalScrollBarEnabled-boolean-) | | +| [setVerticalScrollbarPosition(int arg0)](#setVerticalScrollbarPosition-int-) | | +| [setVerticalScrollbarThumbDrawable(Drawable arg0)](#setVerticalScrollbarThumbDrawable-android.graphics.drawable.Drawable-) | | +| [setVerticalScrollbarTrackDrawable(Drawable arg0)](#setVerticalScrollbarTrackDrawable-android.graphics.drawable.Drawable-) | | +| [setViewTranslationCallback(ViewTranslationCallback arg0)](#setViewTranslationCallback-android.view.translation.ViewTranslationCallback-) | | +| [setVisibility(int arg0)](#setVisibility-int-) | | +| [setWillNotCacheDrawing(boolean arg0)](#setWillNotCacheDrawing-boolean-) | | +| [setWillNotDraw(boolean arg0)](#setWillNotDraw-boolean-) | | +| [setWindowInsetsAnimationCallback(WindowInsetsAnimation.Callback arg0)](#setWindowInsetsAnimationCallback-android.view.WindowInsetsAnimation.Callback-) | | +| [setX(float arg0)](#setX-float-) | | +| [setY(float arg0)](#setY-float-) | | +| [setZ(float arg0)](#setZ-float-) | | +| [showContextMenu()](#showContextMenu--) | | +| [showContextMenu(float arg0, float arg1)](#showContextMenu-float-float-) | | +| [startActionMode(ActionMode.Callback arg0)](#startActionMode-android.view.ActionMode.Callback-) | | +| [startActionMode(ActionMode.Callback arg0, int arg1)](#startActionMode-android.view.ActionMode.Callback-int-) | | +| [startAnimation(Animation arg0)](#startAnimation-android.view.animation.Animation-) | | +| [startDrag(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3)](#startDrag-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-) | | +| [startDragAndDrop(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3)](#startDragAndDrop-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-) | | +| [startNestedScroll(int arg0)](#startNestedScroll-int-) | | +| [stopNestedScroll()](#stopNestedScroll--) | | +| [toString()](#toString--) | | +| [transformMatrixToGlobal(Matrix arg0)](#transformMatrixToGlobal-android.graphics.Matrix-) | | +| [transformMatrixToLocal(Matrix arg0)](#transformMatrixToLocal-android.graphics.Matrix-) | | +| [unscheduleDrawable(Drawable arg0)](#unscheduleDrawable-android.graphics.drawable.Drawable-) | | +| [unscheduleDrawable(Drawable arg0, Runnable arg1)](#unscheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-) | | +| [updateDragShadow(View.DragShadowBuilder arg0)](#updateDragShadow-android.view.View.DragShadowBuilder-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [willNotCacheDrawing()](#willNotCacheDrawing--) | | +| [willNotDraw()](#willNotDraw--) | | +### RecognitionMarkerView(Context context) {#RecognitionMarkerView-android.content.Context-} +``` +public RecognitionMarkerView(Context context) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| contexte | android.content.Context | | + +### ACCESSIBILITY_LIVE_REGION_ASSERTIVE {#ACCESSIBILITY-LIVE-REGION-ASSERTIVE} +``` +public static final int ACCESSIBILITY_LIVE_REGION_ASSERTIVE +``` + + +### ACCESSIBILITY_LIVE_REGION_NONE {#ACCESSIBILITY-LIVE-REGION-NONE} +``` +public static final int ACCESSIBILITY_LIVE_REGION_NONE +``` + + +### ACCESSIBILITY_LIVE_REGION_POLITE {#ACCESSIBILITY-LIVE-REGION-POLITE} +``` +public static final int ACCESSIBILITY_LIVE_REGION_POLITE +``` + + +### ALPHA {#ALPHA} +``` +public static final Property ALPHA +``` + + +### AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS {#AUTOFILL-FLAG-INCLUDE-NOT-IMPORTANT-VIEWS} +``` +public static final int AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DATE} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DAY} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-MONTH} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-YEAR} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR +``` + + +### AUTOFILL_HINT_CREDIT_CARD_NUMBER {#AUTOFILL-HINT-CREDIT-CARD-NUMBER} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_NUMBER +``` + + +### AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE {#AUTOFILL-HINT-CREDIT-CARD-SECURITY-CODE} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE +``` + + +### AUTOFILL_HINT_EMAIL_ADDRESS {#AUTOFILL-HINT-EMAIL-ADDRESS} +``` +public static final String AUTOFILL_HINT_EMAIL_ADDRESS +``` + + +### AUTOFILL_HINT_NAME {#AUTOFILL-HINT-NAME} +``` +public static final String AUTOFILL_HINT_NAME +``` + + +### AUTOFILL_HINT_PASSWORD {#AUTOFILL-HINT-PASSWORD} +``` +public static final String AUTOFILL_HINT_PASSWORD +``` + + +### AUTOFILL_HINT_PHONE {#AUTOFILL-HINT-PHONE} +``` +public static final String AUTOFILL_HINT_PHONE +``` + + +### AUTOFILL_HINT_POSTAL_ADDRESS {#AUTOFILL-HINT-POSTAL-ADDRESS} +``` +public static final String AUTOFILL_HINT_POSTAL_ADDRESS +``` + + +### AUTOFILL_HINT_POSTAL_CODE {#AUTOFILL-HINT-POSTAL-CODE} +``` +public static final String AUTOFILL_HINT_POSTAL_CODE +``` + + +### AUTOFILL_HINT_USERNAME {#AUTOFILL-HINT-USERNAME} +``` +public static final String AUTOFILL_HINT_USERNAME +``` + + +### AUTOFILL_TYPE_DATE {#AUTOFILL-TYPE-DATE} +``` +public static final int AUTOFILL_TYPE_DATE +``` + + +### AUTOFILL_TYPE_LIST {#AUTOFILL-TYPE-LIST} +``` +public static final int AUTOFILL_TYPE_LIST +``` + + +### AUTOFILL_TYPE_NONE {#AUTOFILL-TYPE-NONE} +``` +public static final int AUTOFILL_TYPE_NONE +``` + + +### AUTOFILL_TYPE_TEXT {#AUTOFILL-TYPE-TEXT} +``` +public static final int AUTOFILL_TYPE_TEXT +``` + + +### AUTOFILL_TYPE_TOGGLE {#AUTOFILL-TYPE-TOGGLE} +``` +public static final int AUTOFILL_TYPE_TOGGLE +``` + + +### DRAG_FLAG_ACCESSIBILITY_ACTION {#DRAG-FLAG-ACCESSIBILITY-ACTION} +``` +public static final int DRAG_FLAG_ACCESSIBILITY_ACTION +``` + + +### DRAG_FLAG_GLOBAL {#DRAG-FLAG-GLOBAL} +``` +public static final int DRAG_FLAG_GLOBAL +``` + + +### DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION {#DRAG-FLAG-GLOBAL-PERSISTABLE-URI-PERMISSION} +``` +public static final int DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION +``` + + +### DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION {#DRAG-FLAG-GLOBAL-PREFIX-URI-PERMISSION} +``` +public static final int DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION +``` + + +### DRAG_FLAG_GLOBAL_URI_READ {#DRAG-FLAG-GLOBAL-URI-READ} +``` +public static final int DRAG_FLAG_GLOBAL_URI_READ +``` + + +### DRAG_FLAG_GLOBAL_URI_WRITE {#DRAG-FLAG-GLOBAL-URI-WRITE} +``` +public static final int DRAG_FLAG_GLOBAL_URI_WRITE +``` + + +### DRAG_FLAG_OPAQUE {#DRAG-FLAG-OPAQUE} +``` +public static final int DRAG_FLAG_OPAQUE +``` + + +### DRAWING_CACHE_QUALITY_AUTO {#DRAWING-CACHE-QUALITY-AUTO} +``` +public static final int DRAWING_CACHE_QUALITY_AUTO +``` + + +### DRAWING_CACHE_QUALITY_HIGH {#DRAWING-CACHE-QUALITY-HIGH} +``` +public static final int DRAWING_CACHE_QUALITY_HIGH +``` + + +### DRAWING_CACHE_QUALITY_LOW {#DRAWING-CACHE-QUALITY-LOW} +``` +public static final int DRAWING_CACHE_QUALITY_LOW +``` + + +### FIND_VIEWS_WITH_CONTENT_DESCRIPTION {#FIND-VIEWS-WITH-CONTENT-DESCRIPTION} +``` +public static final int FIND_VIEWS_WITH_CONTENT_DESCRIPTION +``` + + +### FIND_VIEWS_WITH_TEXT {#FIND-VIEWS-WITH-TEXT} +``` +public static final int FIND_VIEWS_WITH_TEXT +``` + + +### FOCUSABLE {#FOCUSABLE} +``` +public static final int FOCUSABLE +``` + + +### FOCUSABLES_ALL {#FOCUSABLES-ALL} +``` +public static final int FOCUSABLES_ALL +``` + + +### FOCUSABLES_TOUCH_MODE {#FOCUSABLES-TOUCH-MODE} +``` +public static final int FOCUSABLES_TOUCH_MODE +``` + + +### FOCUSABLE_AUTO {#FOCUSABLE-AUTO} +``` +public static final int FOCUSABLE_AUTO +``` + + +### FOCUS_BACKWARD {#FOCUS-BACKWARD} +``` +public static final int FOCUS_BACKWARD +``` + + +### FOCUS_DOWN {#FOCUS-DOWN} +``` +public static final int FOCUS_DOWN +``` + + +### FOCUS_FORWARD {#FOCUS-FORWARD} +``` +public static final int FOCUS_FORWARD +``` + + +### FOCUS_LEFT {#FOCUS-LEFT} +``` +public static final int FOCUS_LEFT +``` + + +### FOCUS_RIGHT {#FOCUS-RIGHT} +``` +public static final int FOCUS_RIGHT +``` + + +### FOCUS_UP {#FOCUS-UP} +``` +public static final int FOCUS_UP +``` + + +### GONE {#GONE} +``` +public static final int GONE +``` + + +### HAPTIC_FEEDBACK_ENABLED {#HAPTIC-FEEDBACK-ENABLED} +``` +public static final int HAPTIC_FEEDBACK_ENABLED +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_AUTO {#IMPORTANT-FOR-ACCESSIBILITY-AUTO} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_AUTO +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_NO {#IMPORTANT-FOR-ACCESSIBILITY-NO} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_NO +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS {#IMPORTANT-FOR-ACCESSIBILITY-NO-HIDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_YES {#IMPORTANT-FOR-ACCESSIBILITY-YES} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_YES +``` + + +### IMPORTANT_FOR_AUTOFILL_AUTO {#IMPORTANT-FOR-AUTOFILL-AUTO} +``` +public static final int IMPORTANT_FOR_AUTOFILL_AUTO +``` + + +### IMPORTANT_FOR_AUTOFILL_NO {#IMPORTANT-FOR-AUTOFILL-NO} +``` +public static final int IMPORTANT_FOR_AUTOFILL_NO +``` + + +### IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-AUTOFILL-NO-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_AUTOFILL_YES {#IMPORTANT-FOR-AUTOFILL-YES} +``` +public static final int IMPORTANT_FOR_AUTOFILL_YES +``` + + +### IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-AUTOFILL-YES-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_AUTO {#IMPORTANT-FOR-CONTENT-CAPTURE-AUTO} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_AUTO +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_NO {#IMPORTANT-FOR-CONTENT-CAPTURE-NO} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_NO +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-CONTENT-CAPTURE-NO-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_YES {#IMPORTANT-FOR-CONTENT-CAPTURE-YES} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_YES +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-CONTENT-CAPTURE-YES-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS +``` + + +### INVISIBLE {#INVISIBLE} +``` +public static final int INVISIBLE +``` + + +### KEEP_SCREEN_ON {#KEEP-SCREEN-ON} +``` +public static final int KEEP_SCREEN_ON +``` + + +### LAYER_TYPE_HARDWARE {#LAYER-TYPE-HARDWARE} +``` +public static final int LAYER_TYPE_HARDWARE +``` + + +### LAYER_TYPE_NONE {#LAYER-TYPE-NONE} +``` +public static final int LAYER_TYPE_NONE +``` + + +### LAYER_TYPE_SOFTWARE {#LAYER-TYPE-SOFTWARE} +``` +public static final int LAYER_TYPE_SOFTWARE +``` + + +### LAYOUT_DIRECTION_INHERIT {#LAYOUT-DIRECTION-INHERIT} +``` +public static final int LAYOUT_DIRECTION_INHERIT +``` + + +### LAYOUT_DIRECTION_LOCALE {#LAYOUT-DIRECTION-LOCALE} +``` +public static final int LAYOUT_DIRECTION_LOCALE +``` + + +### LAYOUT_DIRECTION_LTR {#LAYOUT-DIRECTION-LTR} +``` +public static final int LAYOUT_DIRECTION_LTR +``` + + +### LAYOUT_DIRECTION_RTL {#LAYOUT-DIRECTION-RTL} +``` +public static final int LAYOUT_DIRECTION_RTL +``` + + +### MEASURED_HEIGHT_STATE_SHIFT {#MEASURED-HEIGHT-STATE-SHIFT} +``` +public static final int MEASURED_HEIGHT_STATE_SHIFT +``` + + +### MEASURED_SIZE_MASK {#MEASURED-SIZE-MASK} +``` +public static final int MEASURED_SIZE_MASK +``` + + +### MEASURED_STATE_MASK {#MEASURED-STATE-MASK} +``` +public static final int MEASURED_STATE_MASK +``` + + +### MEASURED_STATE_TOO_SMALL {#MEASURED-STATE-TOO-SMALL} +``` +public static final int MEASURED_STATE_TOO_SMALL +``` + + +### NOT_FOCUSABLE {#NOT-FOCUSABLE} +``` +public static final int NOT_FOCUSABLE +``` + + +### NO_ID {#NO-ID} +``` +public static final int NO_ID +``` + + +### OVER_SCROLL_ALWAYS {#OVER-SCROLL-ALWAYS} +``` +public static final int OVER_SCROLL_ALWAYS +``` + + +### OVER_SCROLL_IF_CONTENT_SCROLLS {#OVER-SCROLL-IF-CONTENT-SCROLLS} +``` +public static final int OVER_SCROLL_IF_CONTENT_SCROLLS +``` + + +### OVER_SCROLL_NEVER {#OVER-SCROLL-NEVER} +``` +public static final int OVER_SCROLL_NEVER +``` + + +### ROTATION {#ROTATION} +``` +public static final Property ROTATION +``` + + +### ROTATION_X {#ROTATION-X} +``` +public static final Property ROTATION_X +``` + + +### ROTATION_Y {#ROTATION-Y} +``` +public static final Property ROTATION_Y +``` + + +### SCALE_X {#SCALE-X} +``` +public static final Property SCALE_X +``` + + +### SCALE_Y {#SCALE-Y} +``` +public static final Property SCALE_Y +``` + + +### SCREEN_STATE_OFF {#SCREEN-STATE-OFF} +``` +public static final int SCREEN_STATE_OFF +``` + + +### SCREEN_STATE_ON {#SCREEN-STATE-ON} +``` +public static final int SCREEN_STATE_ON +``` + + +### SCROLLBARS_INSIDE_INSET {#SCROLLBARS-INSIDE-INSET} +``` +public static final int SCROLLBARS_INSIDE_INSET +``` + + +### SCROLLBARS_INSIDE_OVERLAY {#SCROLLBARS-INSIDE-OVERLAY} +``` +public static final int SCROLLBARS_INSIDE_OVERLAY +``` + + +### SCROLLBARS_OUTSIDE_INSET {#SCROLLBARS-OUTSIDE-INSET} +``` +public static final int SCROLLBARS_OUTSIDE_INSET +``` + + +### SCROLLBARS_OUTSIDE_OVERLAY {#SCROLLBARS-OUTSIDE-OVERLAY} +``` +public static final int SCROLLBARS_OUTSIDE_OVERLAY +``` + + +### SCROLLBAR_POSITION_DEFAULT {#SCROLLBAR-POSITION-DEFAULT} +``` +public static final int SCROLLBAR_POSITION_DEFAULT +``` + + +### SCROLLBAR_POSITION_LEFT {#SCROLLBAR-POSITION-LEFT} +``` +public static final int SCROLLBAR_POSITION_LEFT +``` + + +### SCROLLBAR_POSITION_RIGHT {#SCROLLBAR-POSITION-RIGHT} +``` +public static final int SCROLLBAR_POSITION_RIGHT +``` + + +### SCROLL_AXIS_HORIZONTAL {#SCROLL-AXIS-HORIZONTAL} +``` +public static final int SCROLL_AXIS_HORIZONTAL +``` + + +### SCROLL_AXIS_NONE {#SCROLL-AXIS-NONE} +``` +public static final int SCROLL_AXIS_NONE +``` + + +### SCROLL_AXIS_VERTICAL {#SCROLL-AXIS-VERTICAL} +``` +public static final int SCROLL_AXIS_VERTICAL +``` + + +### SCROLL_CAPTURE_HINT_AUTO {#SCROLL-CAPTURE-HINT-AUTO} +``` +public static final int SCROLL_CAPTURE_HINT_AUTO +``` + + +### SCROLL_CAPTURE_HINT_EXCLUDE {#SCROLL-CAPTURE-HINT-EXCLUDE} +``` +public static final int SCROLL_CAPTURE_HINT_EXCLUDE +``` + + +### SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS {#SCROLL-CAPTURE-HINT-EXCLUDE-DESCENDANTS} +``` +public static final int SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS +``` + + +### SCROLL_CAPTURE_HINT_INCLUDE {#SCROLL-CAPTURE-HINT-INCLUDE} +``` +public static final int SCROLL_CAPTURE_HINT_INCLUDE +``` + + +### SCROLL_INDICATOR_BOTTOM {#SCROLL-INDICATOR-BOTTOM} +``` +public static final int SCROLL_INDICATOR_BOTTOM +``` + + +### SCROLL_INDICATOR_END {#SCROLL-INDICATOR-END} +``` +public static final int SCROLL_INDICATOR_END +``` + + +### SCROLL_INDICATOR_LEFT {#SCROLL-INDICATOR-LEFT} +``` +public static final int SCROLL_INDICATOR_LEFT +``` + + +### SCROLL_INDICATOR_RIGHT {#SCROLL-INDICATOR-RIGHT} +``` +public static final int SCROLL_INDICATOR_RIGHT +``` + + +### SCROLL_INDICATOR_START {#SCROLL-INDICATOR-START} +``` +public static final int SCROLL_INDICATOR_START +``` + + +### SCROLL_INDICATOR_TOP {#SCROLL-INDICATOR-TOP} +``` +public static final int SCROLL_INDICATOR_TOP +``` + + +### SOUND_EFFECTS_ENABLED {#SOUND-EFFECTS-ENABLED} +``` +public static final int SOUND_EFFECTS_ENABLED +``` + + +### STATUS_BAR_HIDDEN {#STATUS-BAR-HIDDEN} +``` +public static final int STATUS_BAR_HIDDEN +``` + + +### STATUS_BAR_VISIBLE {#STATUS-BAR-VISIBLE} +``` +public static final int STATUS_BAR_VISIBLE +``` + + +### SYSTEM_UI_FLAG_FULLSCREEN {#SYSTEM-UI-FLAG-FULLSCREEN} +``` +public static final int SYSTEM_UI_FLAG_FULLSCREEN +``` + + +### SYSTEM_UI_FLAG_HIDE_NAVIGATION {#SYSTEM-UI-FLAG-HIDE-NAVIGATION} +``` +public static final int SYSTEM_UI_FLAG_HIDE_NAVIGATION +``` + + +### SYSTEM_UI_FLAG_IMMERSIVE {#SYSTEM-UI-FLAG-IMMERSIVE} +``` +public static final int SYSTEM_UI_FLAG_IMMERSIVE +``` + + +### SYSTEM_UI_FLAG_IMMERSIVE_STICKY {#SYSTEM-UI-FLAG-IMMERSIVE-STICKY} +``` +public static final int SYSTEM_UI_FLAG_IMMERSIVE_STICKY +``` + + +### SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN {#SYSTEM-UI-FLAG-LAYOUT-FULLSCREEN} +``` +public static final int SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN +``` + + +### SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION {#SYSTEM-UI-FLAG-LAYOUT-HIDE-NAVIGATION} +``` +public static final int SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION +``` + + +### SYSTEM_UI_FLAG_LAYOUT_STABLE {#SYSTEM-UI-FLAG-LAYOUT-STABLE} +``` +public static final int SYSTEM_UI_FLAG_LAYOUT_STABLE +``` + + +### SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR {#SYSTEM-UI-FLAG-LIGHT-NAVIGATION-BAR} +``` +public static final int SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR +``` + + +### SYSTEM_UI_FLAG_LIGHT_STATUS_BAR {#SYSTEM-UI-FLAG-LIGHT-STATUS-BAR} +``` +public static final int SYSTEM_UI_FLAG_LIGHT_STATUS_BAR +``` + + +### SYSTEM_UI_FLAG_LOW_PROFILE {#SYSTEM-UI-FLAG-LOW-PROFILE} +``` +public static final int SYSTEM_UI_FLAG_LOW_PROFILE +``` + + +### SYSTEM_UI_FLAG_VISIBLE {#SYSTEM-UI-FLAG-VISIBLE} +``` +public static final int SYSTEM_UI_FLAG_VISIBLE +``` + + +### SYSTEM_UI_LAYOUT_FLAGS {#SYSTEM-UI-LAYOUT-FLAGS} +``` +public static final int SYSTEM_UI_LAYOUT_FLAGS +``` + + +### TEXT_ALIGNMENT_CENTER {#TEXT-ALIGNMENT-CENTER} +``` +public static final int TEXT_ALIGNMENT_CENTER +``` + + +### TEXT_ALIGNMENT_GRAVITY {#TEXT-ALIGNMENT-GRAVITY} +``` +public static final int TEXT_ALIGNMENT_GRAVITY +``` + + +### TEXT_ALIGNMENT_INHERIT {#TEXT-ALIGNMENT-INHERIT} +``` +public static final int TEXT_ALIGNMENT_INHERIT +``` + + +### TEXT_ALIGNMENT_TEXT_END {#TEXT-ALIGNMENT-TEXT-END} +``` +public static final int TEXT_ALIGNMENT_TEXT_END +``` + + +### TEXT_ALIGNMENT_TEXT_START {#TEXT-ALIGNMENT-TEXT-START} +``` +public static final int TEXT_ALIGNMENT_TEXT_START +``` + + +### TEXT_ALIGNMENT_VIEW_END {#TEXT-ALIGNMENT-VIEW-END} +``` +public static final int TEXT_ALIGNMENT_VIEW_END +``` + + +### TEXT_ALIGNMENT_VIEW_START {#TEXT-ALIGNMENT-VIEW-START} +``` +public static final int TEXT_ALIGNMENT_VIEW_START +``` + + +### TEXT_DIRECTION_ANY_RTL {#TEXT-DIRECTION-ANY-RTL} +``` +public static final int TEXT_DIRECTION_ANY_RTL +``` + + +### TEXT_DIRECTION_FIRST_STRONG {#TEXT-DIRECTION-FIRST-STRONG} +``` +public static final int TEXT_DIRECTION_FIRST_STRONG +``` + + +### TEXT_DIRECTION_FIRST_STRONG_LTR {#TEXT-DIRECTION-FIRST-STRONG-LTR} +``` +public static final int TEXT_DIRECTION_FIRST_STRONG_LTR +``` + + +### TEXT_DIRECTION_FIRST_STRONG_RTL {#TEXT-DIRECTION-FIRST-STRONG-RTL} +``` +public static final int TEXT_DIRECTION_FIRST_STRONG_RTL +``` + + +### TEXT_DIRECTION_INHERIT {#TEXT-DIRECTION-INHERIT} +``` +public static final int TEXT_DIRECTION_INHERIT +``` + + +### TEXT_DIRECTION_LOCALE {#TEXT-DIRECTION-LOCALE} +``` +public static final int TEXT_DIRECTION_LOCALE +``` + + +### TEXT_DIRECTION_LTR {#TEXT-DIRECTION-LTR} +``` +public static final int TEXT_DIRECTION_LTR +``` + + +### TEXT_DIRECTION_RTL {#TEXT-DIRECTION-RTL} +``` +public static final int TEXT_DIRECTION_RTL +``` + + +### TRANSLATION_X {#TRANSLATION-X} +``` +public static final Property TRANSLATION_X +``` + + +### TRANSLATION_Y {#TRANSLATION-Y} +``` +public static final Property TRANSLATION_Y +``` + + +### TRANSLATION_Z {#TRANSLATION-Z} +``` +public static final Property TRANSLATION_Z +``` + + +### VISIBLE {#VISIBLE} +``` +public static final int VISIBLE +``` + + +### X {#X} +``` +public static final Property X +``` + + +### Y {#Y} +``` +public static final Property Y +``` + + +### Z {#Z} +``` +public static final Property Z +``` + + +### barcodeAreaParts {#barcodeAreaParts} +``` +public List barcodeAreaParts +``` + + +### findViewById(int arg0) {#-T-findViewById-int-} +``` +public final T findViewById(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +T +### findViewWithTag(Object arg0) {#-T-findViewWithTag-java.lang.Object-} +``` +public final T findViewWithTag(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +T +### requireViewById(int arg0) {#-T-requireViewById-int-} +``` +public final T requireViewById(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +T +### addChildrenForAccessibility(ArrayList arg0) {#addChildrenForAccessibility-java.util.ArrayList-android.view.View--} +``` +public void addChildrenForAccessibility(ArrayList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | + +### addExtraDataToAccessibilityNodeInfo(AccessibilityNodeInfo arg0, String arg1, Bundle arg2) {#addExtraDataToAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-java.lang.String-android.os.Bundle-} +``` +public void addExtraDataToAccessibilityNodeInfo(AccessibilityNodeInfo arg0, String arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityNodeInfo | | +| arg1 | java.lang.String | | +| arg2 | android.os.Bundle | | + +### addFocusables(ArrayList arg0, int arg1) {#addFocusables-java.util.ArrayList-android.view.View--int-} +``` +public void addFocusables(ArrayList arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | +| arg1 | int | | + +### addFocusables(ArrayList arg0, int arg1, int arg2) {#addFocusables-java.util.ArrayList-android.view.View--int-int-} +``` +public void addFocusables(ArrayList arg0, int arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | +| arg1 | int | | +| arg2 | int | | + +### addKeyboardNavigationClusters(Collection arg0, int arg1) {#addKeyboardNavigationClusters-java.util.Collection-android.view.View--int-} +``` +public void addKeyboardNavigationClusters(Collection arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | +| arg1 | int | | + +### addOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) {#addOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-} +``` +public void addOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnAttachStateChangeListener | | + +### addOnLayoutChangeListener(View.OnLayoutChangeListener arg0) {#addOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-} +``` +public void addOnLayoutChangeListener(View.OnLayoutChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnLayoutChangeListener | | + +### addOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) {#addOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-} +``` +public void addOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnUnhandledKeyEventListener | | + +### addTouchables(ArrayList arg0) {#addTouchables-java.util.ArrayList-android.view.View--} +``` +public void addTouchables(ArrayList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | + +### animate() {#animate--} +``` +public ViewPropertyAnimator animate() +``` + + + + +**Returns:** +android.view.ViewPropertyAnimator +### announceForAccessibility(CharSequence arg0) {#announceForAccessibility-java.lang.CharSequence-} +``` +public void announceForAccessibility(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### autofill(SparseArray arg0) {#autofill-android.util.SparseArray-android.view.autofill.AutofillValue--} +``` +public void autofill(SparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.SparseArray | | + +### autofill(AutofillValue arg0) {#autofill-android.view.autofill.AutofillValue-} +``` +public void autofill(AutofillValue arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.autofill.AutofillValue | | + +### bringToFront() {#bringToFront--} +``` +public void bringToFront() +``` + + + + +### buildDrawingCache() {#buildDrawingCache--} +``` +public void buildDrawingCache() +``` + + + + +### buildDrawingCache(boolean arg0) {#buildDrawingCache-boolean-} +``` +public void buildDrawingCache(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### buildLayer() {#buildLayer--} +``` +public void buildLayer() +``` + + + + +### callOnClick() {#callOnClick--} +``` +public boolean callOnClick() +``` + + + + +**Returns:** +boolean +### canResolveLayoutDirection() {#canResolveLayoutDirection--} +``` +public boolean canResolveLayoutDirection() +``` + + + + +**Returns:** +boolean +### canResolveTextAlignment() {#canResolveTextAlignment--} +``` +public boolean canResolveTextAlignment() +``` + + + + +**Returns:** +boolean +### canResolveTextDirection() {#canResolveTextDirection--} +``` +public boolean canResolveTextDirection() +``` + + + + +**Returns:** +boolean +### canScrollHorizontally(int arg0) {#canScrollHorizontally-int-} +``` +public boolean canScrollHorizontally(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### canScrollVertically(int arg0) {#canScrollVertically-int-} +``` +public boolean canScrollVertically(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### cancelDragAndDrop() {#cancelDragAndDrop--} +``` +public final void cancelDragAndDrop() +``` + + + + +### cancelLongPress() {#cancelLongPress--} +``` +public void cancelLongPress() +``` + + + + +### cancelPendingInputEvents() {#cancelPendingInputEvents--} +``` +public final void cancelPendingInputEvents() +``` + + + + +### checkInputConnectionProxy(View arg0) {#checkInputConnectionProxy-android.view.View-} +``` +public boolean checkInputConnectionProxy(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +**Returns:** +boolean +### clearAnimation() {#clearAnimation--} +``` +public void clearAnimation() +``` + + + + +### clearFocus() {#clearFocus--} +``` +public void clearFocus() +``` + + + + +### clearViewTranslationCallback() {#clearViewTranslationCallback--} +``` +public void clearViewTranslationCallback() +``` + + + + +### combineMeasuredStates(int arg0, int arg1) {#combineMeasuredStates-int-int-} +``` +public static int combineMeasuredStates(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +int +### computeScroll() {#computeScroll--} +``` +public void computeScroll() +``` + + + + +### computeSystemWindowInsets(WindowInsets arg0, Rect arg1) {#computeSystemWindowInsets-android.view.WindowInsets-android.graphics.Rect-} +``` +public WindowInsets computeSystemWindowInsets(WindowInsets arg0, Rect arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | +| arg1 | android.graphics.Rect | | + +**Returns:** +android.view.WindowInsets +### createAccessibilityNodeInfo() {#createAccessibilityNodeInfo--} +``` +public AccessibilityNodeInfo createAccessibilityNodeInfo() +``` + + + + +**Returns:** +android.view.accessibility.AccessibilityNodeInfo +### createContextMenu(ContextMenu arg0) {#createContextMenu-android.view.ContextMenu-} +``` +public void createContextMenu(ContextMenu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContextMenu | | + +### destroyDrawingCache() {#destroyDrawingCache--} +``` +public void destroyDrawingCache() +``` + + + + +### dispatchApplyWindowInsets(WindowInsets arg0) {#dispatchApplyWindowInsets-android.view.WindowInsets-} +``` +public WindowInsets dispatchApplyWindowInsets(WindowInsets arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | + +**Returns:** +android.view.WindowInsets +### dispatchCapturedPointerEvent(MotionEvent arg0) {#dispatchCapturedPointerEvent-android.view.MotionEvent-} +``` +public boolean dispatchCapturedPointerEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchConfigurationChanged(Configuration arg0) {#dispatchConfigurationChanged-android.content.res.Configuration-} +``` +public void dispatchConfigurationChanged(Configuration arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.Configuration | | + +### dispatchCreateViewTranslationRequest(Map arg0, int[] arg1, TranslationCapability arg2, List arg3) {#dispatchCreateViewTranslationRequest-java.util.Map-android.view.autofill.AutofillId-long----int---android.view.translation.TranslationCapability-java.util.List-android.view.translation.ViewTranslationRequest--} +``` +public void dispatchCreateViewTranslationRequest(Map arg0, int[] arg1, TranslationCapability arg2, List arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Map | | +| arg1 | int[] | | +| arg2 | android.view.translation.TranslationCapability | | +| arg3 | java.util.List | | + +### dispatchDisplayHint(int arg0) {#dispatchDisplayHint-int-} +``` +public void dispatchDisplayHint(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### dispatchDragEvent(DragEvent arg0) {#dispatchDragEvent-android.view.DragEvent-} +``` +public boolean dispatchDragEvent(DragEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.DragEvent | | + +**Returns:** +boolean +### dispatchDrawableHotspotChanged(float arg0, float arg1) {#dispatchDrawableHotspotChanged-float-float-} +``` +public void dispatchDrawableHotspotChanged(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +### dispatchFinishTemporaryDetach() {#dispatchFinishTemporaryDetach--} +``` +public void dispatchFinishTemporaryDetach() +``` + + + + +### dispatchGenericMotionEvent(MotionEvent arg0) {#dispatchGenericMotionEvent-android.view.MotionEvent-} +``` +public boolean dispatchGenericMotionEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchKeyEvent(KeyEvent arg0) {#dispatchKeyEvent-android.view.KeyEvent-} +``` +public boolean dispatchKeyEvent(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### dispatchKeyEventPreIme(KeyEvent arg0) {#dispatchKeyEventPreIme-android.view.KeyEvent-} +``` +public boolean dispatchKeyEventPreIme(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### dispatchKeyShortcutEvent(KeyEvent arg0) {#dispatchKeyShortcutEvent-android.view.KeyEvent-} +``` +public boolean dispatchKeyShortcutEvent(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### dispatchNestedFling(float arg0, float arg1, boolean arg2) {#dispatchNestedFling-float-float-boolean-} +``` +public boolean dispatchNestedFling(float arg0, float arg1, boolean arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | +| arg2 | boolean | | + +**Returns:** +boolean +### dispatchNestedPreFling(float arg0, float arg1) {#dispatchNestedPreFling-float-float-} +``` +public boolean dispatchNestedPreFling(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### dispatchNestedPrePerformAccessibilityAction(int arg0, Bundle arg1) {#dispatchNestedPrePerformAccessibilityAction-int-android.os.Bundle-} +``` +public boolean dispatchNestedPrePerformAccessibilityAction(int arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.os.Bundle | | + +**Returns:** +boolean +### dispatchNestedPreScroll(int arg0, int arg1, int[] arg2, int[] arg3) {#dispatchNestedPreScroll-int-int-int---int---} +``` +public boolean dispatchNestedPreScroll(int arg0, int arg1, int[] arg2, int[] arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int[] | | +| arg3 | int[] | | + +**Returns:** +boolean +### dispatchNestedScroll(int arg0, int arg1, int arg2, int arg3, int[] arg4) {#dispatchNestedScroll-int-int-int-int-int---} +``` +public boolean dispatchNestedScroll(int arg0, int arg1, int arg2, int arg3, int[] arg4) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | +| arg4 | int[] | | + +**Returns:** +boolean +### dispatchPointerCaptureChanged(boolean arg0) {#dispatchPointerCaptureChanged-boolean-} +``` +public void dispatchPointerCaptureChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0) {#dispatchPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-} +``` +public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +**Returns:** +boolean +### dispatchProvideAutofillStructure(ViewStructure arg0, int arg1) {#dispatchProvideAutofillStructure-android.view.ViewStructure-int-} +``` +public void dispatchProvideAutofillStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### dispatchProvideStructure(ViewStructure arg0) {#dispatchProvideStructure-android.view.ViewStructure-} +``` +public void dispatchProvideStructure(ViewStructure arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | + +### dispatchScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) {#dispatchScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--} +``` +public void dispatchScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | android.graphics.Point | | +| arg2 | java.util.function.Consumer | | + +### dispatchStartTemporaryDetach() {#dispatchStartTemporaryDetach--} +``` +public void dispatchStartTemporaryDetach() +``` + + + + +### dispatchSystemUiVisibilityChanged(int arg0) {#dispatchSystemUiVisibilityChanged-int-} +``` +public void dispatchSystemUiVisibilityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### dispatchTouchEvent(MotionEvent arg0) {#dispatchTouchEvent-android.view.MotionEvent-} +``` +public boolean dispatchTouchEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchTrackballEvent(MotionEvent arg0) {#dispatchTrackballEvent-android.view.MotionEvent-} +``` +public boolean dispatchTrackballEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchUnhandledMove(View arg0, int arg1) {#dispatchUnhandledMove-android.view.View-int-} +``` +public boolean dispatchUnhandledMove(View arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | +| arg1 | int | | + +**Returns:** +boolean +### dispatchWindowFocusChanged(boolean arg0) {#dispatchWindowFocusChanged-boolean-} +``` +public void dispatchWindowFocusChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### dispatchWindowInsetsAnimationEnd(WindowInsetsAnimation arg0) {#dispatchWindowInsetsAnimationEnd-android.view.WindowInsetsAnimation-} +``` +public void dispatchWindowInsetsAnimationEnd(WindowInsetsAnimation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation | | + +### dispatchWindowInsetsAnimationPrepare(WindowInsetsAnimation arg0) {#dispatchWindowInsetsAnimationPrepare-android.view.WindowInsetsAnimation-} +``` +public void dispatchWindowInsetsAnimationPrepare(WindowInsetsAnimation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation | | + +### dispatchWindowInsetsAnimationProgress(WindowInsets arg0, List arg1) {#dispatchWindowInsetsAnimationProgress-android.view.WindowInsets-java.util.List-android.view.WindowInsetsAnimation--} +``` +public WindowInsets dispatchWindowInsetsAnimationProgress(WindowInsets arg0, List arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | +| arg1 | java.util.List | | + +**Returns:** +android.view.WindowInsets +### dispatchWindowInsetsAnimationStart(WindowInsetsAnimation arg0, WindowInsetsAnimation.Bounds arg1) {#dispatchWindowInsetsAnimationStart-android.view.WindowInsetsAnimation-android.view.WindowInsetsAnimation.Bounds-} +``` +public WindowInsetsAnimation.Bounds dispatchWindowInsetsAnimationStart(WindowInsetsAnimation arg0, WindowInsetsAnimation.Bounds arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation | | +| arg1 | android.view.WindowInsetsAnimation.Bounds | | + +**Returns:** +android.view.WindowInsetsAnimation.Bounds +### dispatchWindowSystemUiVisiblityChanged(int arg0) {#dispatchWindowSystemUiVisiblityChanged-int-} +``` +public void dispatchWindowSystemUiVisiblityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### dispatchWindowVisibilityChanged(int arg0) {#dispatchWindowVisibilityChanged-int-} +``` +public void dispatchWindowVisibilityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### draw(Canvas arg0) {#draw-android.graphics.Canvas-} +``` +public void draw(Canvas arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Canvas | | + +### drawableHotspotChanged(float arg0, float arg1) {#drawableHotspotChanged-float-float-} +``` +public void drawableHotspotChanged(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### findFocus() {#findFocus--} +``` +public View findFocus() +``` + + + + +**Returns:** +android.view.View +### findOnBackInvokedDispatcher() {#findOnBackInvokedDispatcher--} +``` +public final OnBackInvokedDispatcher findOnBackInvokedDispatcher() +``` + + + + +**Returns:** +android.window.OnBackInvokedDispatcher +### findViewsWithText(ArrayList arg0, CharSequence arg1, int arg2) {#findViewsWithText-java.util.ArrayList-android.view.View--java.lang.CharSequence-int-} +``` +public void findViewsWithText(ArrayList arg0, CharSequence arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | +| arg1 | java.lang.CharSequence | | +| arg2 | int | | + +### focusSearch(int arg0) {#focusSearch-int-} +``` +public View focusSearch(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +android.view.View +### forceHasOverlappingRendering(boolean arg0) {#forceHasOverlappingRendering-boolean-} +``` +public void forceHasOverlappingRendering(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### forceLayout() {#forceLayout--} +``` +public void forceLayout() +``` + + + + +### gatherTransparentRegion(Region arg0) {#gatherTransparentRegion-android.graphics.Region-} +``` +public boolean gatherTransparentRegion(Region arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Region | | + +**Returns:** +boolean +### generateDisplayHash(String arg0, Rect arg1, Executor arg2, DisplayHashResultCallback arg3) {#generateDisplayHash-java.lang.String-android.graphics.Rect-java.util.concurrent.Executor-android.view.displayhash.DisplayHashResultCallback-} +``` +public void generateDisplayHash(String arg0, Rect arg1, Executor arg2, DisplayHashResultCallback arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | android.graphics.Rect | | +| arg2 | java.util.concurrent.Executor | | +| arg3 | android.view.displayhash.DisplayHashResultCallback | | + +### generateViewId() {#generateViewId--} +``` +public static int generateViewId() +``` + + + + +**Returns:** +int +### getAccessibilityClassName() {#getAccessibilityClassName--} +``` +public CharSequence getAccessibilityClassName() +``` + + + + +**Returns:** +java.lang.CharSequence +### getAccessibilityDelegate() {#getAccessibilityDelegate--} +``` +public View.AccessibilityDelegate getAccessibilityDelegate() +``` + + + + +**Returns:** +android.view.View.AccessibilityDelegate +### getAccessibilityLiveRegion() {#getAccessibilityLiveRegion--} +``` +public int getAccessibilityLiveRegion() +``` + + + + +**Returns:** +int +### getAccessibilityNodeProvider() {#getAccessibilityNodeProvider--} +``` +public AccessibilityNodeProvider getAccessibilityNodeProvider() +``` + + + + +**Returns:** +android.view.accessibility.AccessibilityNodeProvider +### getAccessibilityPaneTitle() {#getAccessibilityPaneTitle--} +``` +public CharSequence getAccessibilityPaneTitle() +``` + + + + +**Returns:** +java.lang.CharSequence +### getAccessibilityTraversalAfter() {#getAccessibilityTraversalAfter--} +``` +public int getAccessibilityTraversalAfter() +``` + + + + +**Returns:** +int +### getAccessibilityTraversalBefore() {#getAccessibilityTraversalBefore--} +``` +public int getAccessibilityTraversalBefore() +``` + + + + +**Returns:** +int +### getAlpha() {#getAlpha--} +``` +public float getAlpha() +``` + + + + +**Returns:** +float +### getAnimation() {#getAnimation--} +``` +public Animation getAnimation() +``` + + + + +**Returns:** +android.view.animation.Animation +### getAnimationMatrix() {#getAnimationMatrix--} +``` +public Matrix getAnimationMatrix() +``` + + + + +**Returns:** +android.graphics.Matrix +### getApplicationWindowToken() {#getApplicationWindowToken--} +``` +public IBinder getApplicationWindowToken() +``` + + + + +**Returns:** +android.os.IBinder +### getAttributeResolutionStack(int arg0) {#getAttributeResolutionStack-int-} +``` +public int[] getAttributeResolutionStack(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +int[] +### getAttributeSourceResourceMap() {#getAttributeSourceResourceMap--} +``` +public Map getAttributeSourceResourceMap() +``` + + + + +**Returns:** +java.util.Map +### getAutofillHints() {#getAutofillHints--} +``` +public String[] getAutofillHints() +``` + + + + +**Returns:** +java.lang.String[] +### getAutofillId() {#getAutofillId--} +``` +public final AutofillId getAutofillId() +``` + + + + +**Returns:** +android.view.autofill.AutofillId +### getAutofillType() {#getAutofillType--} +``` +public int getAutofillType() +``` + + + + +**Returns:** +int +### getAutofillValue() {#getAutofillValue--} +``` +public AutofillValue getAutofillValue() +``` + + + + +**Returns:** +android.view.autofill.AutofillValue +### getBackground() {#getBackground--} +``` +public Drawable getBackground() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getBackgroundTintBlendMode() {#getBackgroundTintBlendMode--} +``` +public BlendMode getBackgroundTintBlendMode() +``` + + + + +**Returns:** +android.graphics.BlendMode +### getBackgroundTintList() {#getBackgroundTintList--} +``` +public ColorStateList getBackgroundTintList() +``` + + + + +**Returns:** +android.content.res.ColorStateList +### getBackgroundTintMode() {#getBackgroundTintMode--} +``` +public PorterDuff.Mode getBackgroundTintMode() +``` + + + + +**Returns:** +android.graphics.PorterDuff.Mode +### getBaseline() {#getBaseline--} +``` +public int getBaseline() +``` + + + + +**Returns:** +int +### getBottom() {#getBottom--} +``` +public final int getBottom() +``` + + + + +**Returns:** +int +### getCameraDistance() {#getCameraDistance--} +``` +public float getCameraDistance() +``` + + + + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getClipBounds() {#getClipBounds--} +``` +public Rect getClipBounds() +``` + + + + +**Returns:** +android.graphics.Rect +### getClipBounds(Rect arg0) {#getClipBounds-android.graphics.Rect-} +``` +public boolean getClipBounds(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### getClipToOutline() {#getClipToOutline--} +``` +public final boolean getClipToOutline() +``` + + + + +**Returns:** +boolean +### getContentCaptureSession() {#getContentCaptureSession--} +``` +public final ContentCaptureSession getContentCaptureSession() +``` + + + + +**Returns:** +android.view.contentcapture.ContentCaptureSession +### getContentDescription() {#getContentDescription--} +``` +public CharSequence getContentDescription() +``` + + + + +**Returns:** +java.lang.CharSequence +### getContext() {#getContext--} +``` +public final Context getContext() +``` + + + + +**Returns:** +android.content.Context +### getDefaultFocusHighlightEnabled() {#getDefaultFocusHighlightEnabled--} +``` +public final boolean getDefaultFocusHighlightEnabled() +``` + + + + +**Returns:** +boolean +### getDefaultSize(int arg0, int arg1) {#getDefaultSize-int-int-} +``` +public static int getDefaultSize(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +int +### getDisplay() {#getDisplay--} +``` +public Display getDisplay() +``` + + + + +**Returns:** +android.view.Display +### getDrawableState() {#getDrawableState--} +``` +public final int[] getDrawableState() +``` + + + + +**Returns:** +int[] +### getDrawingCache() {#getDrawingCache--} +``` +public Bitmap getDrawingCache() +``` + + + + +**Returns:** +android.graphics.Bitmap +### getDrawingCache(boolean arg0) {#getDrawingCache-boolean-} +``` +public Bitmap getDrawingCache(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +**Returns:** +android.graphics.Bitmap +### getDrawingCacheBackgroundColor() {#getDrawingCacheBackgroundColor--} +``` +public int getDrawingCacheBackgroundColor() +``` + + + + +**Returns:** +int +### getDrawingCacheQuality() {#getDrawingCacheQuality--} +``` +public int getDrawingCacheQuality() +``` + + + + +**Returns:** +int +### getDrawingRect(Rect arg0) {#getDrawingRect-android.graphics.Rect-} +``` +public void getDrawingRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getDrawingTime() {#getDrawingTime--} +``` +public long getDrawingTime() +``` + + + + +**Returns:** +long +### getElevation() {#getElevation--} +``` +public float getElevation() +``` + + + + +**Returns:** +float +### getExplicitStyle() {#getExplicitStyle--} +``` +public int getExplicitStyle() +``` + + + + +**Returns:** +int +### getFilterTouchesWhenObscured() {#getFilterTouchesWhenObscured--} +``` +public boolean getFilterTouchesWhenObscured() +``` + + + + +**Returns:** +boolean +### getFitsSystemWindows() {#getFitsSystemWindows--} +``` +public boolean getFitsSystemWindows() +``` + + + + +**Returns:** +boolean +### getFocusable() {#getFocusable--} +``` +public int getFocusable() +``` + + + + +**Returns:** +int +### getFocusables(int arg0) {#getFocusables-int-} +``` +public ArrayList getFocusables(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.util.ArrayList +### getFocusedRect(Rect arg0) {#getFocusedRect-android.graphics.Rect-} +``` +public void getFocusedRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getForeground() {#getForeground--} +``` +public Drawable getForeground() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getForegroundGravity() {#getForegroundGravity--} +``` +public int getForegroundGravity() +``` + + + + +**Returns:** +int +### getForegroundTintBlendMode() {#getForegroundTintBlendMode--} +``` +public BlendMode getForegroundTintBlendMode() +``` + + + + +**Returns:** +android.graphics.BlendMode +### getForegroundTintList() {#getForegroundTintList--} +``` +public ColorStateList getForegroundTintList() +``` + + + + +**Returns:** +android.content.res.ColorStateList +### getForegroundTintMode() {#getForegroundTintMode--} +``` +public PorterDuff.Mode getForegroundTintMode() +``` + + + + +**Returns:** +android.graphics.PorterDuff.Mode +### getGlobalVisibleRect(Rect arg0) {#getGlobalVisibleRect-android.graphics.Rect-} +``` +public final boolean getGlobalVisibleRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### getGlobalVisibleRect(Rect arg0, Point arg1) {#getGlobalVisibleRect-android.graphics.Rect-android.graphics.Point-} +``` +public boolean getGlobalVisibleRect(Rect arg0, Point arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | android.graphics.Point | | + +**Returns:** +boolean +### getHandler() {#getHandler--} +``` +public Handler getHandler() +``` + + + + +**Returns:** +android.os.Handler +### getHasOverlappingRendering() {#getHasOverlappingRendering--} +``` +public final boolean getHasOverlappingRendering() +``` + + + + +**Returns:** +boolean +### getHeight() {#getHeight--} +``` +public final int getHeight() +``` + + + + +**Returns:** +int +### getHitRect(Rect arg0) {#getHitRect-android.graphics.Rect-} +``` +public void getHitRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getHorizontalFadingEdgeLength() {#getHorizontalFadingEdgeLength--} +``` +public int getHorizontalFadingEdgeLength() +``` + + + + +**Returns:** +int +### getHorizontalScrollbarThumbDrawable() {#getHorizontalScrollbarThumbDrawable--} +``` +public Drawable getHorizontalScrollbarThumbDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getHorizontalScrollbarTrackDrawable() {#getHorizontalScrollbarTrackDrawable--} +``` +public Drawable getHorizontalScrollbarTrackDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getId() {#getId--} +``` +public int getId() +``` + + + + +**Returns:** +int +### getImportantForAccessibility() {#getImportantForAccessibility--} +``` +public int getImportantForAccessibility() +``` + + + + +**Returns:** +int +### getImportantForAutofill() {#getImportantForAutofill--} +``` +public int getImportantForAutofill() +``` + + + + +**Returns:** +int +### getImportantForContentCapture() {#getImportantForContentCapture--} +``` +public int getImportantForContentCapture() +``` + + + + +**Returns:** +int +### getKeepScreenOn() {#getKeepScreenOn--} +``` +public boolean getKeepScreenOn() +``` + + + + +**Returns:** +boolean +### getKeyDispatcherState() {#getKeyDispatcherState--} +``` +public KeyEvent.DispatcherState getKeyDispatcherState() +``` + + + + +**Returns:** +android.view.KeyEvent.DispatcherState +### getLabelFor() {#getLabelFor--} +``` +public int getLabelFor() +``` + + + + +**Returns:** +int +### getLayerType() {#getLayerType--} +``` +public int getLayerType() +``` + + + + +**Returns:** +int +### getLayoutDirection() {#getLayoutDirection--} +``` +public int getLayoutDirection() +``` + + + + +**Returns:** +int +### getLayoutParams() {#getLayoutParams--} +``` +public ViewGroup.LayoutParams getLayoutParams() +``` + + + + +**Returns:** +android.view.ViewGroup.LayoutParams +### getLeft() {#getLeft--} +``` +public final int getLeft() +``` + + + + +**Returns:** +int +### getLocalVisibleRect(Rect arg0) {#getLocalVisibleRect-android.graphics.Rect-} +``` +public final boolean getLocalVisibleRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### getLocationInSurface(int[] arg0) {#getLocationInSurface-int---} +``` +public void getLocationInSurface(int[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | + +### getLocationInWindow(int[] arg0) {#getLocationInWindow-int---} +``` +public void getLocationInWindow(int[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | + +### getLocationOnScreen(int[] arg0) {#getLocationOnScreen-int---} +``` +public void getLocationOnScreen(int[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | + +### getMatrix() {#getMatrix--} +``` +public Matrix getMatrix() +``` + + + + +**Returns:** +android.graphics.Matrix +### getMeasuredHeight() {#getMeasuredHeight--} +``` +public final int getMeasuredHeight() +``` + + + + +**Returns:** +int +### getMeasuredHeightAndState() {#getMeasuredHeightAndState--} +``` +public final int getMeasuredHeightAndState() +``` + + + + +**Returns:** +int +### getMeasuredState() {#getMeasuredState--} +``` +public final int getMeasuredState() +``` + + + + +**Returns:** +int +### getMeasuredWidth() {#getMeasuredWidth--} +``` +public final int getMeasuredWidth() +``` + + + + +**Returns:** +int +### getMeasuredWidthAndState() {#getMeasuredWidthAndState--} +``` +public final int getMeasuredWidthAndState() +``` + + + + +**Returns:** +int +### getMinimumHeight() {#getMinimumHeight--} +``` +public int getMinimumHeight() +``` + + + + +**Returns:** +int +### getMinimumWidth() {#getMinimumWidth--} +``` +public int getMinimumWidth() +``` + + + + +**Returns:** +int +### getNextClusterForwardId() {#getNextClusterForwardId--} +``` +public int getNextClusterForwardId() +``` + + + + +**Returns:** +int +### getNextFocusDownId() {#getNextFocusDownId--} +``` +public int getNextFocusDownId() +``` + + + + +**Returns:** +int +### getNextFocusForwardId() {#getNextFocusForwardId--} +``` +public int getNextFocusForwardId() +``` + + + + +**Returns:** +int +### getNextFocusLeftId() {#getNextFocusLeftId--} +``` +public int getNextFocusLeftId() +``` + + + + +**Returns:** +int +### getNextFocusRightId() {#getNextFocusRightId--} +``` +public int getNextFocusRightId() +``` + + + + +**Returns:** +int +### getNextFocusUpId() {#getNextFocusUpId--} +``` +public int getNextFocusUpId() +``` + + + + +**Returns:** +int +### getOnFocusChangeListener() {#getOnFocusChangeListener--} +``` +public View.OnFocusChangeListener getOnFocusChangeListener() +``` + + + + +**Returns:** +android.view.View.OnFocusChangeListener +### getOutlineAmbientShadowColor() {#getOutlineAmbientShadowColor--} +``` +public int getOutlineAmbientShadowColor() +``` + + + + +**Returns:** +int +### getOutlineProvider() {#getOutlineProvider--} +``` +public ViewOutlineProvider getOutlineProvider() +``` + + + + +**Returns:** +android.view.ViewOutlineProvider +### getOutlineSpotShadowColor() {#getOutlineSpotShadowColor--} +``` +public int getOutlineSpotShadowColor() +``` + + + + +**Returns:** +int +### getOverScrollMode() {#getOverScrollMode--} +``` +public int getOverScrollMode() +``` + + + + +**Returns:** +int +### getOverlay() {#getOverlay--} +``` +public ViewOverlay getOverlay() +``` + + + + +**Returns:** +android.view.ViewOverlay +### getPaddingBottom() {#getPaddingBottom--} +``` +public int getPaddingBottom() +``` + + + + +**Returns:** +int +### getPaddingEnd() {#getPaddingEnd--} +``` +public int getPaddingEnd() +``` + + + + +**Returns:** +int +### getPaddingLeft() {#getPaddingLeft--} +``` +public int getPaddingLeft() +``` + + + + +**Returns:** +int +### getPaddingRight() {#getPaddingRight--} +``` +public int getPaddingRight() +``` + + + + +**Returns:** +int +### getPaddingStart() {#getPaddingStart--} +``` +public int getPaddingStart() +``` + + + + +**Returns:** +int +### getPaddingTop() {#getPaddingTop--} +``` +public int getPaddingTop() +``` + + + + +**Returns:** +int +### getParent() {#getParent--} +``` +public final ViewParent getParent() +``` + + + + +**Returns:** +android.view.ViewParent +### getParentForAccessibility() {#getParentForAccessibility--} +``` +public ViewParent getParentForAccessibility() +``` + + + + +**Returns:** +android.view.ViewParent +### getPivotX() {#getPivotX--} +``` +public float getPivotX() +``` + + + + +**Returns:** +float +### getPivotY() {#getPivotY--} +``` +public float getPivotY() +``` + + + + +**Returns:** +float +### getPointerIcon() {#getPointerIcon--} +``` +public PointerIcon getPointerIcon() +``` + + + + +**Returns:** +android.view.PointerIcon +### getPreferKeepClearRects() {#getPreferKeepClearRects--} +``` +public final List getPreferKeepClearRects() +``` + + + + +**Returns:** +java.util.List +### getReceiveContentMimeTypes() {#getReceiveContentMimeTypes--} +``` +public String[] getReceiveContentMimeTypes() +``` + + + + +**Returns:** +java.lang.String[] +### getResources() {#getResources--} +``` +public Resources getResources() +``` + + + + +**Returns:** +android.content.res.Resources +### getRevealOnFocusHint() {#getRevealOnFocusHint--} +``` +public final boolean getRevealOnFocusHint() +``` + + + + +**Returns:** +boolean +### getRight() {#getRight--} +``` +public final int getRight() +``` + + + + +**Returns:** +int +### getRootSurfaceControl() {#getRootSurfaceControl--} +``` +public AttachedSurfaceControl getRootSurfaceControl() +``` + + + + +**Returns:** +android.view.AttachedSurfaceControl +### getRootView() {#getRootView--} +``` +public View getRootView() +``` + + + + +**Returns:** +android.view.View +### getRootWindowInsets() {#getRootWindowInsets--} +``` +public WindowInsets getRootWindowInsets() +``` + + + + +**Returns:** +android.view.WindowInsets +### getRotation() {#getRotation--} +``` +public float getRotation() +``` + + + + +**Returns:** +float +### getRotationX() {#getRotationX--} +``` +public float getRotationX() +``` + + + + +**Returns:** +float +### getRotationY() {#getRotationY--} +``` +public float getRotationY() +``` + + + + +**Returns:** +float +### getScaleX() {#getScaleX--} +``` +public float getScaleX() +``` + + + + +**Returns:** +float +### getScaleY() {#getScaleY--} +``` +public float getScaleY() +``` + + + + +**Returns:** +float +### getScrollBarDefaultDelayBeforeFade() {#getScrollBarDefaultDelayBeforeFade--} +``` +public int getScrollBarDefaultDelayBeforeFade() +``` + + + + +**Returns:** +int +### getScrollBarFadeDuration() {#getScrollBarFadeDuration--} +``` +public int getScrollBarFadeDuration() +``` + + + + +**Returns:** +int +### getScrollBarSize() {#getScrollBarSize--} +``` +public int getScrollBarSize() +``` + + + + +**Returns:** +int +### getScrollBarStyle() {#getScrollBarStyle--} +``` +public int getScrollBarStyle() +``` + + + + +**Returns:** +int +### getScrollCaptureHint() {#getScrollCaptureHint--} +``` +public int getScrollCaptureHint() +``` + + + + +**Returns:** +int +### getScrollIndicators() {#getScrollIndicators--} +``` +public int getScrollIndicators() +``` + + + + +**Returns:** +int +### getScrollX() {#getScrollX--} +``` +public final int getScrollX() +``` + + + + +**Returns:** +int +### getScrollY() {#getScrollY--} +``` +public final int getScrollY() +``` + + + + +**Returns:** +int +### getSolidColor() {#getSolidColor--} +``` +public int getSolidColor() +``` + + + + +**Returns:** +int +### getSourceLayoutResId() {#getSourceLayoutResId--} +``` +public int getSourceLayoutResId() +``` + + + + +**Returns:** +int +### getStateDescription() {#getStateDescription--} +``` +public final CharSequence getStateDescription() +``` + + + + +**Returns:** +java.lang.CharSequence +### getStateListAnimator() {#getStateListAnimator--} +``` +public StateListAnimator getStateListAnimator() +``` + + + + +**Returns:** +android.animation.StateListAnimator +### getSystemGestureExclusionRects() {#getSystemGestureExclusionRects--} +``` +public List getSystemGestureExclusionRects() +``` + + + + +**Returns:** +java.util.List +### getSystemUiVisibility() {#getSystemUiVisibility--} +``` +public int getSystemUiVisibility() +``` + + + + +**Returns:** +int +### getTag() {#getTag--} +``` +public Object getTag() +``` + + + + +**Returns:** +java.lang.Object +### getTag(int arg0) {#getTag-int-} +``` +public Object getTag(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.Object +### getTextAlignment() {#getTextAlignment--} +``` +public int getTextAlignment() +``` + + + + +**Returns:** +int +### getTextDirection() {#getTextDirection--} +``` +public int getTextDirection() +``` + + + + +**Returns:** +int +### getTooltipText() {#getTooltipText--} +``` +public CharSequence getTooltipText() +``` + + + + +**Returns:** +java.lang.CharSequence +### getTop() {#getTop--} +``` +public final int getTop() +``` + + + + +**Returns:** +int +### getTouchDelegate() {#getTouchDelegate--} +``` +public TouchDelegate getTouchDelegate() +``` + + + + +**Returns:** +android.view.TouchDelegate +### getTouchables() {#getTouchables--} +``` +public ArrayList getTouchables() +``` + + + + +**Returns:** +java.util.ArrayList +### getTransitionAlpha() {#getTransitionAlpha--} +``` +public float getTransitionAlpha() +``` + + + + +**Returns:** +float +### getTransitionName() {#getTransitionName--} +``` +public String getTransitionName() +``` + + + + +**Returns:** +java.lang.String +### getTranslationX() {#getTranslationX--} +``` +public float getTranslationX() +``` + + + + +**Returns:** +float +### getTranslationY() {#getTranslationY--} +``` +public float getTranslationY() +``` + + + + +**Returns:** +float +### getTranslationZ() {#getTranslationZ--} +``` +public float getTranslationZ() +``` + + + + +**Returns:** +float +### getUniqueDrawingId() {#getUniqueDrawingId--} +``` +public long getUniqueDrawingId() +``` + + + + +**Returns:** +long +### getVerticalFadingEdgeLength() {#getVerticalFadingEdgeLength--} +``` +public int getVerticalFadingEdgeLength() +``` + + + + +**Returns:** +int +### getVerticalScrollbarPosition() {#getVerticalScrollbarPosition--} +``` +public int getVerticalScrollbarPosition() +``` + + + + +**Returns:** +int +### getVerticalScrollbarThumbDrawable() {#getVerticalScrollbarThumbDrawable--} +``` +public Drawable getVerticalScrollbarThumbDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getVerticalScrollbarTrackDrawable() {#getVerticalScrollbarTrackDrawable--} +``` +public Drawable getVerticalScrollbarTrackDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getVerticalScrollbarWidth() {#getVerticalScrollbarWidth--} +``` +public int getVerticalScrollbarWidth() +``` + + + + +**Returns:** +int +### getViewTranslationResponse() {#getViewTranslationResponse--} +``` +public ViewTranslationResponse getViewTranslationResponse() +``` + + + + +**Returns:** +android.view.translation.ViewTranslationResponse +### getViewTreeObserver() {#getViewTreeObserver--} +``` +public ViewTreeObserver getViewTreeObserver() +``` + + + + +**Returns:** +android.view.ViewTreeObserver +### getVisibility() {#getVisibility--} +``` +public int getVisibility() +``` + + + + +**Returns:** +int +### getWidth() {#getWidth--} +``` +public final int getWidth() +``` + + + + +**Returns:** +int +### getWindowId() {#getWindowId--} +``` +public WindowId getWindowId() +``` + + + + +**Returns:** +android.view.WindowId +### getWindowInsetsController() {#getWindowInsetsController--} +``` +public WindowInsetsController getWindowInsetsController() +``` + + + + +**Returns:** +android.view.WindowInsetsController +### getWindowSystemUiVisibility() {#getWindowSystemUiVisibility--} +``` +public int getWindowSystemUiVisibility() +``` + + + + +**Returns:** +int +### getWindowToken() {#getWindowToken--} +``` +public IBinder getWindowToken() +``` + + + + +**Returns:** +android.os.IBinder +### getWindowVisibility() {#getWindowVisibility--} +``` +public int getWindowVisibility() +``` + + + + +**Returns:** +int +### getWindowVisibleDisplayFrame(Rect arg0) {#getWindowVisibleDisplayFrame-android.graphics.Rect-} +``` +public void getWindowVisibleDisplayFrame(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getX() {#getX--} +``` +public float getX() +``` + + + + +**Returns:** +float +### getY() {#getY--} +``` +public float getY() +``` + + + + +**Returns:** +float +### getZ() {#getZ--} +``` +public float getZ() +``` + + + + +**Returns:** +float +### hasExplicitFocusable() {#hasExplicitFocusable--} +``` +public boolean hasExplicitFocusable() +``` + + + + +**Returns:** +boolean +### hasFocus() {#hasFocus--} +``` +public boolean hasFocus() +``` + + + + +**Returns:** +boolean +### hasFocusable() {#hasFocusable--} +``` +public boolean hasFocusable() +``` + + + + +**Returns:** +boolean +### hasNestedScrollingParent() {#hasNestedScrollingParent--} +``` +public boolean hasNestedScrollingParent() +``` + + + + +**Returns:** +boolean +### hasOnClickListeners() {#hasOnClickListeners--} +``` +public boolean hasOnClickListeners() +``` + + + + +**Returns:** +boolean +### hasOnLongClickListeners() {#hasOnLongClickListeners--} +``` +public boolean hasOnLongClickListeners() +``` + + + + +**Returns:** +boolean +### hasOverlappingRendering() {#hasOverlappingRendering--} +``` +public boolean hasOverlappingRendering() +``` + + + + +**Returns:** +boolean +### hasPointerCapture() {#hasPointerCapture--} +``` +public boolean hasPointerCapture() +``` + + + + +**Returns:** +boolean +### hasTransientState() {#hasTransientState--} +``` +public boolean hasTransientState() +``` + + + + +**Returns:** +boolean +### hasWindowFocus() {#hasWindowFocus--} +``` +public boolean hasWindowFocus() +``` + + + + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### inflate(Context arg0, int arg1, ViewGroup arg2) {#inflate-android.content.Context-int-android.view.ViewGroup-} +``` +public static View inflate(Context arg0, int arg1, ViewGroup arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | int | | +| arg2 | android.view.ViewGroup | | + +**Returns:** +android.view.View +### invalidate() {#invalidate--} +``` +public void invalidate() +``` + + + + +### invalidate(Rect arg0) {#invalidate-android.graphics.Rect-} +``` +public void invalidate(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### invalidate(int arg0, int arg1, int arg2, int arg3) {#invalidate-int-int-int-int-} +``` +public void invalidate(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### invalidateDrawable(Drawable arg0) {#invalidateDrawable-android.graphics.drawable.Drawable-} +``` +public void invalidateDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### invalidateOutline() {#invalidateOutline--} +``` +public void invalidateOutline() +``` + + + + +### isAccessibilityFocused() {#isAccessibilityFocused--} +``` +public boolean isAccessibilityFocused() +``` + + + + +**Returns:** +boolean +### isAccessibilityHeading() {#isAccessibilityHeading--} +``` +public boolean isAccessibilityHeading() +``` + + + + +**Returns:** +boolean +### isActivated() {#isActivated--} +``` +public boolean isActivated() +``` + + + + +**Returns:** +boolean +### isAttachedToWindow() {#isAttachedToWindow--} +``` +public boolean isAttachedToWindow() +``` + + + + +**Returns:** +boolean +### isAutoHandwritingEnabled() {#isAutoHandwritingEnabled--} +``` +public boolean isAutoHandwritingEnabled() +``` + + + + +**Returns:** +boolean +### isClickable() {#isClickable--} +``` +public boolean isClickable() +``` + + + + +**Returns:** +boolean +### isContextClickable() {#isContextClickable--} +``` +public boolean isContextClickable() +``` + + + + +**Returns:** +boolean +### isDirty() {#isDirty--} +``` +public boolean isDirty() +``` + + + + +**Returns:** +boolean +### isDrawingCacheEnabled() {#isDrawingCacheEnabled--} +``` +public boolean isDrawingCacheEnabled() +``` + + + + +**Returns:** +boolean +### isDuplicateParentStateEnabled() {#isDuplicateParentStateEnabled--} +``` +public boolean isDuplicateParentStateEnabled() +``` + + + + +**Returns:** +boolean +### isEnabled() {#isEnabled--} +``` +public boolean isEnabled() +``` + + + + +**Returns:** +boolean +### isFocusable() {#isFocusable--} +``` +public final boolean isFocusable() +``` + + + + +**Returns:** +boolean +### isFocusableInTouchMode() {#isFocusableInTouchMode--} +``` +public final boolean isFocusableInTouchMode() +``` + + + + +**Returns:** +boolean +### isFocused() {#isFocused--} +``` +public boolean isFocused() +``` + + + + +**Returns:** +boolean +### isFocusedByDefault() {#isFocusedByDefault--} +``` +public final boolean isFocusedByDefault() +``` + + + + +**Returns:** +boolean +### isForceDarkAllowed() {#isForceDarkAllowed--} +``` +public boolean isForceDarkAllowed() +``` + + + + +**Returns:** +boolean +### isHapticFeedbackEnabled() {#isHapticFeedbackEnabled--} +``` +public boolean isHapticFeedbackEnabled() +``` + + + + +**Returns:** +boolean +### isHardwareAccelerated() {#isHardwareAccelerated--} +``` +public boolean isHardwareAccelerated() +``` + + + + +**Returns:** +boolean +### isHorizontalFadingEdgeEnabled() {#isHorizontalFadingEdgeEnabled--} +``` +public boolean isHorizontalFadingEdgeEnabled() +``` + + + + +**Returns:** +boolean +### isHorizontalScrollBarEnabled() {#isHorizontalScrollBarEnabled--} +``` +public boolean isHorizontalScrollBarEnabled() +``` + + + + +**Returns:** +boolean +### isHovered() {#isHovered--} +``` +public boolean isHovered() +``` + + + + +**Returns:** +boolean +### isImportantForAccessibility() {#isImportantForAccessibility--} +``` +public boolean isImportantForAccessibility() +``` + + + + +**Returns:** +boolean +### isImportantForAutofill() {#isImportantForAutofill--} +``` +public final boolean isImportantForAutofill() +``` + + + + +**Returns:** +boolean +### isImportantForContentCapture() {#isImportantForContentCapture--} +``` +public final boolean isImportantForContentCapture() +``` + + + + +**Returns:** +boolean +### isInEditMode() {#isInEditMode--} +``` +public boolean isInEditMode() +``` + + + + +**Returns:** +boolean +### isInLayout() {#isInLayout--} +``` +public boolean isInLayout() +``` + + + + +**Returns:** +boolean +### isInTouchMode() {#isInTouchMode--} +``` +public boolean isInTouchMode() +``` + + + + +**Returns:** +boolean +### isKeyboardNavigationCluster() {#isKeyboardNavigationCluster--} +``` +public final boolean isKeyboardNavigationCluster() +``` + + + + +**Returns:** +boolean +### isLaidOut() {#isLaidOut--} +``` +public boolean isLaidOut() +``` + + + + +**Returns:** +boolean +### isLayoutDirectionResolved() {#isLayoutDirectionResolved--} +``` +public boolean isLayoutDirectionResolved() +``` + + + + +**Returns:** +boolean +### isLayoutRequested() {#isLayoutRequested--} +``` +public boolean isLayoutRequested() +``` + + + + +**Returns:** +boolean +### isLongClickable() {#isLongClickable--} +``` +public boolean isLongClickable() +``` + + + + +**Returns:** +boolean +### isNestedScrollingEnabled() {#isNestedScrollingEnabled--} +``` +public boolean isNestedScrollingEnabled() +``` + + + + +**Returns:** +boolean +### isOpaque() {#isOpaque--} +``` +public boolean isOpaque() +``` + + + + +**Returns:** +boolean +### isPaddingRelative() {#isPaddingRelative--} +``` +public boolean isPaddingRelative() +``` + + + + +**Returns:** +boolean +### isPivotSet() {#isPivotSet--} +``` +public boolean isPivotSet() +``` + + + + +**Returns:** +boolean +### isPreferKeepClear() {#isPreferKeepClear--} +``` +public final boolean isPreferKeepClear() +``` + + + + +**Returns:** +boolean +### isPressed() {#isPressed--} +``` +public boolean isPressed() +``` + + + + +**Returns:** +boolean +### isSaveEnabled() {#isSaveEnabled--} +``` +public boolean isSaveEnabled() +``` + + + + +**Returns:** +boolean +### isSaveFromParentEnabled() {#isSaveFromParentEnabled--} +``` +public boolean isSaveFromParentEnabled() +``` + + + + +**Returns:** +boolean +### isScreenReaderFocusable() {#isScreenReaderFocusable--} +``` +public boolean isScreenReaderFocusable() +``` + + + + +**Returns:** +boolean +### isScrollContainer() {#isScrollContainer--} +``` +public boolean isScrollContainer() +``` + + + + +**Returns:** +boolean +### isScrollbarFadingEnabled() {#isScrollbarFadingEnabled--} +``` +public boolean isScrollbarFadingEnabled() +``` + + + + +**Returns:** +boolean +### isSelected() {#isSelected--} +``` +public boolean isSelected() +``` + + + + +**Returns:** +boolean +### isShowingLayoutBounds() {#isShowingLayoutBounds--} +``` +public final boolean isShowingLayoutBounds() +``` + + + + +**Returns:** +boolean +### isShown() {#isShown--} +``` +public boolean isShown() +``` + + + + +**Returns:** +boolean +### isSoundEffectsEnabled() {#isSoundEffectsEnabled--} +``` +public boolean isSoundEffectsEnabled() +``` + + + + +**Returns:** +boolean +### isTemporarilyDetached() {#isTemporarilyDetached--} +``` +public final boolean isTemporarilyDetached() +``` + + + + +**Returns:** +boolean +### isTextAlignmentResolved() {#isTextAlignmentResolved--} +``` +public boolean isTextAlignmentResolved() +``` + + + + +**Returns:** +boolean +### isTextDirectionResolved() {#isTextDirectionResolved--} +``` +public boolean isTextDirectionResolved() +``` + + + + +**Returns:** +boolean +### isVerticalFadingEdgeEnabled() {#isVerticalFadingEdgeEnabled--} +``` +public boolean isVerticalFadingEdgeEnabled() +``` + + + + +**Returns:** +boolean +### isVerticalScrollBarEnabled() {#isVerticalScrollBarEnabled--} +``` +public boolean isVerticalScrollBarEnabled() +``` + + + + +**Returns:** +boolean +### isVisibleToUserForAutofill(int arg0) {#isVisibleToUserForAutofill-int-} +``` +public boolean isVisibleToUserForAutofill(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### jumpDrawablesToCurrentState() {#jumpDrawablesToCurrentState--} +``` +public void jumpDrawablesToCurrentState() +``` + + + + +### keyboardNavigationClusterSearch(View arg0, int arg1) {#keyboardNavigationClusterSearch-android.view.View-int-} +``` +public View keyboardNavigationClusterSearch(View arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | +| arg1 | int | | + +**Returns:** +android.view.View +### layout(int arg0, int arg1, int arg2, int arg3) {#layout-int-int-int-int-} +``` +public void layout(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### measure(int arg0, int arg1) {#measure-int-int-} +``` +public final void measure(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### offsetLeftAndRight(int arg0) {#offsetLeftAndRight-int-} +``` +public void offsetLeftAndRight(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### offsetTopAndBottom(int arg0) {#offsetTopAndBottom-int-} +``` +public void offsetTopAndBottom(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### onApplyWindowInsets(WindowInsets arg0) {#onApplyWindowInsets-android.view.WindowInsets-} +``` +public WindowInsets onApplyWindowInsets(WindowInsets arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | + +**Returns:** +android.view.WindowInsets +### onCancelPendingInputEvents() {#onCancelPendingInputEvents--} +``` +public void onCancelPendingInputEvents() +``` + + + + +### onCapturedPointerEvent(MotionEvent arg0) {#onCapturedPointerEvent-android.view.MotionEvent-} +``` +public boolean onCapturedPointerEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onCheckIsTextEditor() {#onCheckIsTextEditor--} +``` +public boolean onCheckIsTextEditor() +``` + + + + +**Returns:** +boolean +### onCreateInputConnection(EditorInfo arg0) {#onCreateInputConnection-android.view.inputmethod.EditorInfo-} +``` +public InputConnection onCreateInputConnection(EditorInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.inputmethod.EditorInfo | | + +**Returns:** +android.view.inputmethod.InputConnection +### onCreateViewTranslationRequest(int[] arg0, Consumer arg1) {#onCreateViewTranslationRequest-int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--} +``` +public void onCreateViewTranslationRequest(int[] arg0, Consumer arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | +| arg1 | java.util.function.Consumer | | + +### onCreateVirtualViewTranslationRequests(long[] arg0, int[] arg1, Consumer arg2) {#onCreateVirtualViewTranslationRequests-long---int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--} +``` +public void onCreateVirtualViewTranslationRequests(long[] arg0, int[] arg1, Consumer arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long[] | | +| arg1 | int[] | | +| arg2 | java.util.function.Consumer | | + +### onDragEvent(DragEvent arg0) {#onDragEvent-android.view.DragEvent-} +``` +public boolean onDragEvent(DragEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.DragEvent | | + +**Returns:** +boolean +### onDraw(Canvas canvas) {#onDraw-android.graphics.Canvas-} +``` +public void onDraw(Canvas canvas) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| toile | android.graphics.Canvas | | + +### onDrawForeground(Canvas arg0) {#onDrawForeground-android.graphics.Canvas-} +``` +public void onDrawForeground(Canvas arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Canvas | | + +### onFilterTouchEventForSecurity(MotionEvent arg0) {#onFilterTouchEventForSecurity-android.view.MotionEvent-} +``` +public boolean onFilterTouchEventForSecurity(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onFinishTemporaryDetach() {#onFinishTemporaryDetach--} +``` +public void onFinishTemporaryDetach() +``` + + + + +### onGenericMotionEvent(MotionEvent arg0) {#onGenericMotionEvent-android.view.MotionEvent-} +``` +public boolean onGenericMotionEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onHoverChanged(boolean arg0) {#onHoverChanged-boolean-} +``` +public void onHoverChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onHoverEvent(MotionEvent arg0) {#onHoverEvent-android.view.MotionEvent-} +``` +public boolean onHoverEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onInitializeAccessibilityEvent(AccessibilityEvent arg0) {#onInitializeAccessibilityEvent-android.view.accessibility.AccessibilityEvent-} +``` +public void onInitializeAccessibilityEvent(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +### onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo arg0) {#onInitializeAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-} +``` +public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityNodeInfo | | + +### onKeyDown(int arg0, KeyEvent arg1) {#onKeyDown-int-android.view.KeyEvent-} +``` +public boolean onKeyDown(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyLongPress(int arg0, KeyEvent arg1) {#onKeyLongPress-int-android.view.KeyEvent-} +``` +public boolean onKeyLongPress(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyMultiple(int arg0, int arg1, KeyEvent arg2) {#onKeyMultiple-int-int-android.view.KeyEvent-} +``` +public boolean onKeyMultiple(int arg0, int arg1, KeyEvent arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyPreIme(int arg0, KeyEvent arg1) {#onKeyPreIme-int-android.view.KeyEvent-} +``` +public boolean onKeyPreIme(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyShortcut(int arg0, KeyEvent arg1) {#onKeyShortcut-int-android.view.KeyEvent-} +``` +public boolean onKeyShortcut(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyUp(int arg0, KeyEvent arg1) {#onKeyUp-int-android.view.KeyEvent-} +``` +public boolean onKeyUp(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onPointerCaptureChange(boolean arg0) {#onPointerCaptureChange-boolean-} +``` +public void onPointerCaptureChange(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onPopulateAccessibilityEvent(AccessibilityEvent arg0) {#onPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-} +``` +public void onPopulateAccessibilityEvent(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +### onProvideAutofillStructure(ViewStructure arg0, int arg1) {#onProvideAutofillStructure-android.view.ViewStructure-int-} +``` +public void onProvideAutofillStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### onProvideAutofillVirtualStructure(ViewStructure arg0, int arg1) {#onProvideAutofillVirtualStructure-android.view.ViewStructure-int-} +``` +public void onProvideAutofillVirtualStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### onProvideContentCaptureStructure(ViewStructure arg0, int arg1) {#onProvideContentCaptureStructure-android.view.ViewStructure-int-} +``` +public void onProvideContentCaptureStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### onProvideStructure(ViewStructure arg0) {#onProvideStructure-android.view.ViewStructure-} +``` +public void onProvideStructure(ViewStructure arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | + +### onProvideVirtualStructure(ViewStructure arg0) {#onProvideVirtualStructure-android.view.ViewStructure-} +``` +public void onProvideVirtualStructure(ViewStructure arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | + +### onReceiveContent(ContentInfo arg0) {#onReceiveContent-android.view.ContentInfo-} +``` +public ContentInfo onReceiveContent(ContentInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContentInfo | | + +**Returns:** +android.view.ContentInfo +### onResolvePointerIcon(MotionEvent arg0, int arg1) {#onResolvePointerIcon-android.view.MotionEvent-int-} +``` +public PointerIcon onResolvePointerIcon(MotionEvent arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | +| arg1 | int | | + +**Returns:** +android.view.PointerIcon +### onRtlPropertiesChanged(int arg0) {#onRtlPropertiesChanged-int-} +``` +public void onRtlPropertiesChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### onScreenStateChanged(int arg0) {#onScreenStateChanged-int-} +``` +public void onScreenStateChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### onScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) {#onScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--} +``` +public void onScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | android.graphics.Point | | +| arg2 | java.util.function.Consumer | | + +### onStartTemporaryDetach() {#onStartTemporaryDetach--} +``` +public void onStartTemporaryDetach() +``` + + + + +### onTouchEvent(MotionEvent arg0) {#onTouchEvent-android.view.MotionEvent-} +``` +public boolean onTouchEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onTrackballEvent(MotionEvent arg0) {#onTrackballEvent-android.view.MotionEvent-} +``` +public boolean onTrackballEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onViewTranslationResponse(ViewTranslationResponse arg0) {#onViewTranslationResponse-android.view.translation.ViewTranslationResponse-} +``` +public void onViewTranslationResponse(ViewTranslationResponse arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.translation.ViewTranslationResponse | | + +### onVirtualViewTranslationResponses(LongSparseArray arg0) {#onVirtualViewTranslationResponses-android.util.LongSparseArray-android.view.translation.ViewTranslationResponse--} +``` +public void onVirtualViewTranslationResponses(LongSparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.LongSparseArray | | + +### onVisibilityAggregated(boolean arg0) {#onVisibilityAggregated-boolean-} +``` +public void onVisibilityAggregated(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onWindowFocusChanged(boolean arg0) {#onWindowFocusChanged-boolean-} +``` +public void onWindowFocusChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onWindowSystemUiVisibilityChanged(int arg0) {#onWindowSystemUiVisibilityChanged-int-} +``` +public void onWindowSystemUiVisibilityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### performAccessibilityAction(int arg0, Bundle arg1) {#performAccessibilityAction-int-android.os.Bundle-} +``` +public boolean performAccessibilityAction(int arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.os.Bundle | | + +**Returns:** +boolean +### performClick() {#performClick--} +``` +public boolean performClick() +``` + + + + +**Returns:** +boolean +### performContextClick() {#performContextClick--} +``` +public boolean performContextClick() +``` + + + + +**Returns:** +boolean +### performContextClick(float arg0, float arg1) {#performContextClick-float-float-} +``` +public boolean performContextClick(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### performHapticFeedback(int arg0) {#performHapticFeedback-int-} +``` +public boolean performHapticFeedback(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### performHapticFeedback(int arg0, int arg1) {#performHapticFeedback-int-int-} +``` +public boolean performHapticFeedback(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +boolean +### performLongClick() {#performLongClick--} +``` +public boolean performLongClick() +``` + + + + +**Returns:** +boolean +### performLongClick(float arg0, float arg1) {#performLongClick-float-float-} +``` +public boolean performLongClick(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### performReceiveContent(ContentInfo arg0) {#performReceiveContent-android.view.ContentInfo-} +``` +public ContentInfo performReceiveContent(ContentInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContentInfo | | + +**Returns:** +android.view.ContentInfo +### playSoundEffect(int arg0) {#playSoundEffect-int-} +``` +public void playSoundEffect(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### post(Runnable arg0) {#post-java.lang.Runnable-} +``` +public boolean post(Runnable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | + +**Returns:** +boolean +### postDelayed(Runnable arg0, long arg1) {#postDelayed-java.lang.Runnable-long-} +``` +public boolean postDelayed(Runnable arg0, long arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | +| arg1 | long | | + +**Returns:** +boolean +### postInvalidate() {#postInvalidate--} +``` +public void postInvalidate() +``` + + + + +### postInvalidate(int arg0, int arg1, int arg2, int arg3) {#postInvalidate-int-int-int-int-} +``` +public void postInvalidate(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### postInvalidateDelayed(long arg0) {#postInvalidateDelayed-long-} +``` +public void postInvalidateDelayed(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### postInvalidateDelayed(long arg0, int arg1, int arg2, int arg3, int arg4) {#postInvalidateDelayed-long-int-int-int-int-} +``` +public void postInvalidateDelayed(long arg0, int arg1, int arg2, int arg3, int arg4) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | +| arg4 | int | | + +### postInvalidateOnAnimation() {#postInvalidateOnAnimation--} +``` +public void postInvalidateOnAnimation() +``` + + + + +### postInvalidateOnAnimation(int arg0, int arg1, int arg2, int arg3) {#postInvalidateOnAnimation-int-int-int-int-} +``` +public void postInvalidateOnAnimation(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### postOnAnimation(Runnable arg0) {#postOnAnimation-java.lang.Runnable-} +``` +public void postOnAnimation(Runnable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | + +### postOnAnimationDelayed(Runnable arg0, long arg1) {#postOnAnimationDelayed-java.lang.Runnable-long-} +``` +public void postOnAnimationDelayed(Runnable arg0, long arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | +| arg1 | long | | + +### refreshDrawableState() {#refreshDrawableState--} +``` +public void refreshDrawableState() +``` + + + + +### releasePointerCapture() {#releasePointerCapture--} +``` +public void releasePointerCapture() +``` + + + + +### removeCallbacks(Runnable arg0) {#removeCallbacks-java.lang.Runnable-} +``` +public boolean removeCallbacks(Runnable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | + +**Returns:** +boolean +### removeOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) {#removeOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-} +``` +public void removeOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnAttachStateChangeListener | | + +### removeOnLayoutChangeListener(View.OnLayoutChangeListener arg0) {#removeOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-} +``` +public void removeOnLayoutChangeListener(View.OnLayoutChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnLayoutChangeListener | | + +### removeOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) {#removeOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-} +``` +public void removeOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnUnhandledKeyEventListener | | + +### requestApplyInsets() {#requestApplyInsets--} +``` +public void requestApplyInsets() +``` + + + + +### requestFitSystemWindows() {#requestFitSystemWindows--} +``` +public void requestFitSystemWindows() +``` + + + + +### requestFocus() {#requestFocus--} +``` +public final boolean requestFocus() +``` + + + + +**Returns:** +boolean +### requestFocus(int arg0) {#requestFocus-int-} +``` +public final boolean requestFocus(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### requestFocus(int arg0, Rect arg1) {#requestFocus-int-android.graphics.Rect-} +``` +public boolean requestFocus(int arg0, Rect arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.graphics.Rect | | + +**Returns:** +boolean +### requestFocusFromTouch() {#requestFocusFromTouch--} +``` +public final boolean requestFocusFromTouch() +``` + + + + +**Returns:** +boolean +### requestLayout() {#requestLayout--} +``` +public void requestLayout() +``` + + + + +### requestPointerCapture() {#requestPointerCapture--} +``` +public void requestPointerCapture() +``` + + + + +### requestRectangleOnScreen(Rect arg0) {#requestRectangleOnScreen-android.graphics.Rect-} +``` +public boolean requestRectangleOnScreen(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### requestRectangleOnScreen(Rect arg0, boolean arg1) {#requestRectangleOnScreen-android.graphics.Rect-boolean-} +``` +public boolean requestRectangleOnScreen(Rect arg0, boolean arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | boolean | | + +**Returns:** +boolean +### requestUnbufferedDispatch(MotionEvent arg0) {#requestUnbufferedDispatch-android.view.MotionEvent-} +``` +public final void requestUnbufferedDispatch(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +### requestUnbufferedDispatch(int arg0) {#requestUnbufferedDispatch-int-} +``` +public final void requestUnbufferedDispatch(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### resetPivot() {#resetPivot--} +``` +public void resetPivot() +``` + + + + +### resolveSize(int arg0, int arg1) {#resolveSize-int-int-} +``` +public static int resolveSize(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +int +### resolveSizeAndState(int arg0, int arg1, int arg2) {#resolveSizeAndState-int-int-int-} +``` +public static int resolveSizeAndState(int arg0, int arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | + +**Returns:** +int +### restoreDefaultFocus() {#restoreDefaultFocus--} +``` +public boolean restoreDefaultFocus() +``` + + + + +**Returns:** +boolean +### restoreHierarchyState(SparseArray arg0) {#restoreHierarchyState-android.util.SparseArray-android.os.Parcelable--} +``` +public void restoreHierarchyState(SparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.SparseArray | | + +### saveAttributeDataForStyleable(Context arg0, int[] arg1, AttributeSet arg2, TypedArray arg3, int arg4, int arg5) {#saveAttributeDataForStyleable-android.content.Context-int---android.util.AttributeSet-android.content.res.TypedArray-int-int-} +``` +public final void saveAttributeDataForStyleable(Context arg0, int[] arg1, AttributeSet arg2, TypedArray arg3, int arg4, int arg5) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | int[] | | +| arg2 | android.util.AttributeSet | | +| arg3 | android.content.res.TypedArray | | +| arg4 | int | | +| arg5 | int | | + +### saveHierarchyState(SparseArray arg0) {#saveHierarchyState-android.util.SparseArray-android.os.Parcelable--} +``` +public void saveHierarchyState(SparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.SparseArray | | + +### scheduleDrawable(Drawable arg0, Runnable arg1, long arg2) {#scheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-long-} +``` +public void scheduleDrawable(Drawable arg0, Runnable arg1, long arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | +| arg1 | java.lang.Runnable | | +| arg2 | long | | + +### scrollBy(int arg0, int arg1) {#scrollBy-int-int-} +``` +public void scrollBy(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### scrollTo(int arg0, int arg1) {#scrollTo-int-int-} +``` +public void scrollTo(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### sendAccessibilityEvent(int arg0) {#sendAccessibilityEvent-int-} +``` +public void sendAccessibilityEvent(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### sendAccessibilityEventUnchecked(AccessibilityEvent arg0) {#sendAccessibilityEventUnchecked-android.view.accessibility.AccessibilityEvent-} +``` +public void sendAccessibilityEventUnchecked(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +### setAccessibilityDelegate(View.AccessibilityDelegate arg0) {#setAccessibilityDelegate-android.view.View.AccessibilityDelegate-} +``` +public void setAccessibilityDelegate(View.AccessibilityDelegate arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.AccessibilityDelegate | | + +### setAccessibilityHeading(boolean arg0) {#setAccessibilityHeading-boolean-} +``` +public void setAccessibilityHeading(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAccessibilityLiveRegion(int arg0) {#setAccessibilityLiveRegion-int-} +``` +public void setAccessibilityLiveRegion(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setAccessibilityPaneTitle(CharSequence arg0) {#setAccessibilityPaneTitle-java.lang.CharSequence-} +``` +public void setAccessibilityPaneTitle(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setAccessibilityTraversalAfter(int arg0) {#setAccessibilityTraversalAfter-int-} +``` +public void setAccessibilityTraversalAfter(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setAccessibilityTraversalBefore(int arg0) {#setAccessibilityTraversalBefore-int-} +``` +public void setAccessibilityTraversalBefore(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setActivated(boolean arg0) {#setActivated-boolean-} +``` +public void setActivated(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAllowClickWhenDisabled(boolean arg0) {#setAllowClickWhenDisabled-boolean-} +``` +public void setAllowClickWhenDisabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAlpha(float arg0) {#setAlpha-float-} +``` +public void setAlpha(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setAnimation(Animation arg0) {#setAnimation-android.view.animation.Animation-} +``` +public void setAnimation(Animation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.animation.Animation | | + +### setAnimationMatrix(Matrix arg0) {#setAnimationMatrix-android.graphics.Matrix-} +``` +public void setAnimationMatrix(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### setAutoHandwritingEnabled(boolean arg0) {#setAutoHandwritingEnabled-boolean-} +``` +public void setAutoHandwritingEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAutofillHints(String[] arg0) {#setAutofillHints-java.lang.String...-} +``` +public void setAutofillHints(String[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String[] | | + +### setAutofillId(AutofillId arg0) {#setAutofillId-android.view.autofill.AutofillId-} +``` +public void setAutofillId(AutofillId arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.autofill.AutofillId | | + +### setBackground(Drawable arg0) {#setBackground-android.graphics.drawable.Drawable-} +``` +public void setBackground(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setBackgroundColor(int arg0) {#setBackgroundColor-int-} +``` +public void setBackgroundColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setBackgroundDrawable(Drawable arg0) {#setBackgroundDrawable-android.graphics.drawable.Drawable-} +``` +public void setBackgroundDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setBackgroundResource(int arg0) {#setBackgroundResource-int-} +``` +public void setBackgroundResource(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setBackgroundTintBlendMode(BlendMode arg0) {#setBackgroundTintBlendMode-android.graphics.BlendMode-} +``` +public void setBackgroundTintBlendMode(BlendMode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.BlendMode | | + +### setBackgroundTintList(ColorStateList arg0) {#setBackgroundTintList-android.content.res.ColorStateList-} +``` +public void setBackgroundTintList(ColorStateList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.ColorStateList | | + +### setBackgroundTintMode(PorterDuff.Mode arg0) {#setBackgroundTintMode-android.graphics.PorterDuff.Mode-} +``` +public void setBackgroundTintMode(PorterDuff.Mode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.PorterDuff.Mode | | + +### setBottom(int arg0) {#setBottom-int-} +``` +public final void setBottom(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setCameraDistance(float arg0) {#setCameraDistance-float-} +``` +public void setCameraDistance(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setClickable(boolean arg0) {#setClickable-boolean-} +``` +public void setClickable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setClipBounds(Rect arg0) {#setClipBounds-android.graphics.Rect-} +``` +public void setClipBounds(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### setClipToOutline(boolean arg0) {#setClipToOutline-boolean-} +``` +public void setClipToOutline(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setContentCaptureSession(ContentCaptureSession arg0) {#setContentCaptureSession-android.view.contentcapture.ContentCaptureSession-} +``` +public void setContentCaptureSession(ContentCaptureSession arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.contentcapture.ContentCaptureSession | | + +### setContentDescription(CharSequence arg0) {#setContentDescription-java.lang.CharSequence-} +``` +public void setContentDescription(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setContextClickable(boolean arg0) {#setContextClickable-boolean-} +``` +public void setContextClickable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setDefaultFocusHighlightEnabled(boolean arg0) {#setDefaultFocusHighlightEnabled-boolean-} +``` +public void setDefaultFocusHighlightEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setDrawingCacheBackgroundColor(int arg0) {#setDrawingCacheBackgroundColor-int-} +``` +public void setDrawingCacheBackgroundColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setDrawingCacheEnabled(boolean arg0) {#setDrawingCacheEnabled-boolean-} +``` +public void setDrawingCacheEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setDrawingCacheQuality(int arg0) {#setDrawingCacheQuality-int-} +``` +public void setDrawingCacheQuality(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setDuplicateParentStateEnabled(boolean arg0) {#setDuplicateParentStateEnabled-boolean-} +``` +public void setDuplicateParentStateEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setElevation(float arg0) {#setElevation-float-} +``` +public void setElevation(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setEnabled(boolean arg0) {#setEnabled-boolean-} +``` +public void setEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFadingEdgeLength(int arg0) {#setFadingEdgeLength-int-} +``` +public void setFadingEdgeLength(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setFilterTouchesWhenObscured(boolean arg0) {#setFilterTouchesWhenObscured-boolean-} +``` +public void setFilterTouchesWhenObscured(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFitsSystemWindows(boolean arg0) {#setFitsSystemWindows-boolean-} +``` +public void setFitsSystemWindows(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFocusable(boolean arg0) {#setFocusable-boolean-} +``` +public void setFocusable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFocusable(int arg0) {#setFocusable-int-} +``` +public void setFocusable(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setFocusableInTouchMode(boolean arg0) {#setFocusableInTouchMode-boolean-} +``` +public void setFocusableInTouchMode(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFocusedByDefault(boolean arg0) {#setFocusedByDefault-boolean-} +``` +public void setFocusedByDefault(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setForceDarkAllowed(boolean arg0) {#setForceDarkAllowed-boolean-} +``` +public void setForceDarkAllowed(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setForeground(Drawable arg0) {#setForeground-android.graphics.drawable.Drawable-} +``` +public void setForeground(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setForegroundGravity(int arg0) {#setForegroundGravity-int-} +``` +public void setForegroundGravity(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setForegroundTintBlendMode(BlendMode arg0) {#setForegroundTintBlendMode-android.graphics.BlendMode-} +``` +public void setForegroundTintBlendMode(BlendMode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.BlendMode | | + +### setForegroundTintList(ColorStateList arg0) {#setForegroundTintList-android.content.res.ColorStateList-} +``` +public void setForegroundTintList(ColorStateList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.ColorStateList | | + +### setForegroundTintMode(PorterDuff.Mode arg0) {#setForegroundTintMode-android.graphics.PorterDuff.Mode-} +``` +public void setForegroundTintMode(PorterDuff.Mode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.PorterDuff.Mode | | + +### setHapticFeedbackEnabled(boolean arg0) {#setHapticFeedbackEnabled-boolean-} +``` +public void setHapticFeedbackEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHasTransientState(boolean arg0) {#setHasTransientState-boolean-} +``` +public void setHasTransientState(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHorizontalFadingEdgeEnabled(boolean arg0) {#setHorizontalFadingEdgeEnabled-boolean-} +``` +public void setHorizontalFadingEdgeEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHorizontalScrollBarEnabled(boolean arg0) {#setHorizontalScrollBarEnabled-boolean-} +``` +public void setHorizontalScrollBarEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHorizontalScrollbarThumbDrawable(Drawable arg0) {#setHorizontalScrollbarThumbDrawable-android.graphics.drawable.Drawable-} +``` +public void setHorizontalScrollbarThumbDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setHorizontalScrollbarTrackDrawable(Drawable arg0) {#setHorizontalScrollbarTrackDrawable-android.graphics.drawable.Drawable-} +``` +public void setHorizontalScrollbarTrackDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setHovered(boolean arg0) {#setHovered-boolean-} +``` +public void setHovered(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setId(int arg0) {#setId-int-} +``` +public void setId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImportantForAccessibility(int arg0) {#setImportantForAccessibility-int-} +``` +public void setImportantForAccessibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImportantForAutofill(int arg0) {#setImportantForAutofill-int-} +``` +public void setImportantForAutofill(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImportantForContentCapture(int arg0) {#setImportantForContentCapture-int-} +``` +public void setImportantForContentCapture(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setKeepScreenOn(boolean arg0) {#setKeepScreenOn-boolean-} +``` +public void setKeepScreenOn(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setKeyboardNavigationCluster(boolean arg0) {#setKeyboardNavigationCluster-boolean-} +``` +public void setKeyboardNavigationCluster(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setLabelFor(int arg0) {#setLabelFor-int-} +``` +public void setLabelFor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setLayerPaint(Paint arg0) {#setLayerPaint-android.graphics.Paint-} +``` +public void setLayerPaint(Paint arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Paint | | + +### setLayerType(int arg0, Paint arg1) {#setLayerType-int-android.graphics.Paint-} +``` +public void setLayerType(int arg0, Paint arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.graphics.Paint | | + +### setLayoutDirection(int arg0) {#setLayoutDirection-int-} +``` +public void setLayoutDirection(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setLayoutParams(ViewGroup.LayoutParams arg0) {#setLayoutParams-android.view.ViewGroup.LayoutParams-} +``` +public void setLayoutParams(ViewGroup.LayoutParams arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewGroup.LayoutParams | | + +### setLeft(int arg0) {#setLeft-int-} +``` +public final void setLeft(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setLeftTopRightBottom(int arg0, int arg1, int arg2, int arg3) {#setLeftTopRightBottom-int-int-int-int-} +``` +public final void setLeftTopRightBottom(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### setLongClickable(boolean arg0) {#setLongClickable-boolean-} +``` +public void setLongClickable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setMinimumHeight(int arg0) {#setMinimumHeight-int-} +``` +public void setMinimumHeight(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setMinimumWidth(int arg0) {#setMinimumWidth-int-} +``` +public void setMinimumWidth(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNestedScrollingEnabled(boolean arg0) {#setNestedScrollingEnabled-boolean-} +``` +public void setNestedScrollingEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setNextClusterForwardId(int arg0) {#setNextClusterForwardId-int-} +``` +public void setNextClusterForwardId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusDownId(int arg0) {#setNextFocusDownId-int-} +``` +public void setNextFocusDownId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusForwardId(int arg0) {#setNextFocusForwardId-int-} +``` +public void setNextFocusForwardId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusLeftId(int arg0) {#setNextFocusLeftId-int-} +``` +public void setNextFocusLeftId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusRightId(int arg0) {#setNextFocusRightId-int-} +``` +public void setNextFocusRightId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusUpId(int arg0) {#setNextFocusUpId-int-} +``` +public void setNextFocusUpId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setOnApplyWindowInsetsListener(View.OnApplyWindowInsetsListener arg0) {#setOnApplyWindowInsetsListener-android.view.View.OnApplyWindowInsetsListener-} +``` +public void setOnApplyWindowInsetsListener(View.OnApplyWindowInsetsListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnApplyWindowInsetsListener | | + +### setOnCapturedPointerListener(View.OnCapturedPointerListener arg0) {#setOnCapturedPointerListener-android.view.View.OnCapturedPointerListener-} +``` +public void setOnCapturedPointerListener(View.OnCapturedPointerListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnCapturedPointerListener | | + +### setOnClickListener(View.OnClickListener arg0) {#setOnClickListener-android.view.View.OnClickListener-} +``` +public void setOnClickListener(View.OnClickListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnClickListener | | + +### setOnContextClickListener(View.OnContextClickListener arg0) {#setOnContextClickListener-android.view.View.OnContextClickListener-} +``` +public void setOnContextClickListener(View.OnContextClickListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnContextClickListener | | + +### setOnCreateContextMenuListener(View.OnCreateContextMenuListener arg0) {#setOnCreateContextMenuListener-android.view.View.OnCreateContextMenuListener-} +``` +public void setOnCreateContextMenuListener(View.OnCreateContextMenuListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnCreateContextMenuListener | | + +### setOnDragListener(View.OnDragListener arg0) {#setOnDragListener-android.view.View.OnDragListener-} +``` +public void setOnDragListener(View.OnDragListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnDragListener | | + +### setOnFocusChangeListener(View.OnFocusChangeListener arg0) {#setOnFocusChangeListener-android.view.View.OnFocusChangeListener-} +``` +public void setOnFocusChangeListener(View.OnFocusChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnFocusChangeListener | | + +### setOnGenericMotionListener(View.OnGenericMotionListener arg0) {#setOnGenericMotionListener-android.view.View.OnGenericMotionListener-} +``` +public void setOnGenericMotionListener(View.OnGenericMotionListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnGenericMotionListener | | + +### setOnHoverListener(View.OnHoverListener arg0) {#setOnHoverListener-android.view.View.OnHoverListener-} +``` +public void setOnHoverListener(View.OnHoverListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnHoverListener | | + +### setOnKeyListener(View.OnKeyListener arg0) {#setOnKeyListener-android.view.View.OnKeyListener-} +``` +public void setOnKeyListener(View.OnKeyListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnKeyListener | | + +### setOnLongClickListener(View.OnLongClickListener arg0) {#setOnLongClickListener-android.view.View.OnLongClickListener-} +``` +public void setOnLongClickListener(View.OnLongClickListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnLongClickListener | | + +### setOnReceiveContentListener(String[] arg0, OnReceiveContentListener arg1) {#setOnReceiveContentListener-java.lang.String---android.view.OnReceiveContentListener-} +``` +public void setOnReceiveContentListener(String[] arg0, OnReceiveContentListener arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String[] | | +| arg1 | android.view.OnReceiveContentListener | | + +### setOnScrollChangeListener(View.OnScrollChangeListener arg0) {#setOnScrollChangeListener-android.view.View.OnScrollChangeListener-} +``` +public void setOnScrollChangeListener(View.OnScrollChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnScrollChangeListener | | + +### setOnSystemUiVisibilityChangeListener(View.OnSystemUiVisibilityChangeListener arg0) {#setOnSystemUiVisibilityChangeListener-android.view.View.OnSystemUiVisibilityChangeListener-} +``` +public void setOnSystemUiVisibilityChangeListener(View.OnSystemUiVisibilityChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnSystemUiVisibilityChangeListener | | + +### setOnTouchListener(View.OnTouchListener arg0) {#setOnTouchListener-android.view.View.OnTouchListener-} +``` +public void setOnTouchListener(View.OnTouchListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnTouchListener | | + +### setOutlineAmbientShadowColor(int arg0) {#setOutlineAmbientShadowColor-int-} +``` +public void setOutlineAmbientShadowColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setOutlineProvider(ViewOutlineProvider arg0) {#setOutlineProvider-android.view.ViewOutlineProvider-} +``` +public void setOutlineProvider(ViewOutlineProvider arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewOutlineProvider | | + +### setOutlineSpotShadowColor(int arg0) {#setOutlineSpotShadowColor-int-} +``` +public void setOutlineSpotShadowColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setOverScrollMode(int arg0) {#setOverScrollMode-int-} +``` +public void setOverScrollMode(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setPadding(int arg0, int arg1, int arg2, int arg3) {#setPadding-int-int-int-int-} +``` +public void setPadding(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### setPaddingRelative(int arg0, int arg1, int arg2, int arg3) {#setPaddingRelative-int-int-int-int-} +``` +public void setPaddingRelative(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### setPivotX(float arg0) {#setPivotX-float-} +``` +public void setPivotX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setPivotY(float arg0) {#setPivotY-float-} +``` +public void setPivotY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setPointerIcon(PointerIcon arg0) {#setPointerIcon-android.view.PointerIcon-} +``` +public void setPointerIcon(PointerIcon arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.PointerIcon | | + +### setPreferKeepClear(boolean arg0) {#setPreferKeepClear-boolean-} +``` +public final void setPreferKeepClear(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setPreferKeepClearRects(List arg0) {#setPreferKeepClearRects-java.util.List-android.graphics.Rect--} +``` +public final void setPreferKeepClearRects(List arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.List | | + +### setPressed(boolean arg0) {#setPressed-boolean-} +``` +public void setPressed(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setRenderEffect(RenderEffect arg0) {#setRenderEffect-android.graphics.RenderEffect-} +``` +public void setRenderEffect(RenderEffect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.RenderEffect | | + +### setRevealOnFocusHint(boolean arg0) {#setRevealOnFocusHint-boolean-} +``` +public final void setRevealOnFocusHint(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setRight(int arg0) {#setRight-int-} +``` +public final void setRight(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setRotation(float arg0) {#setRotation-float-} +``` +public void setRotation(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setRotationX(float arg0) {#setRotationX-float-} +``` +public void setRotationX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setRotationY(float arg0) {#setRotationY-float-} +``` +public void setRotationY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setSaveEnabled(boolean arg0) {#setSaveEnabled-boolean-} +``` +public void setSaveEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSaveFromParentEnabled(boolean arg0) {#setSaveFromParentEnabled-boolean-} +``` +public void setSaveFromParentEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setScaleX(float arg0) {#setScaleX-float-} +``` +public void setScaleX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setScaleY(float arg0) {#setScaleY-float-} +``` +public void setScaleY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setScreenReaderFocusable(boolean arg0) {#setScreenReaderFocusable-boolean-} +``` +public void setScreenReaderFocusable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setScrollBarDefaultDelayBeforeFade(int arg0) {#setScrollBarDefaultDelayBeforeFade-int-} +``` +public void setScrollBarDefaultDelayBeforeFade(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollBarFadeDuration(int arg0) {#setScrollBarFadeDuration-int-} +``` +public void setScrollBarFadeDuration(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollBarSize(int arg0) {#setScrollBarSize-int-} +``` +public void setScrollBarSize(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollBarStyle(int arg0) {#setScrollBarStyle-int-} +``` +public void setScrollBarStyle(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollCaptureCallback(ScrollCaptureCallback arg0) {#setScrollCaptureCallback-android.view.ScrollCaptureCallback-} +``` +public final void setScrollCaptureCallback(ScrollCaptureCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ScrollCaptureCallback | | + +### setScrollCaptureHint(int arg0) {#setScrollCaptureHint-int-} +``` +public void setScrollCaptureHint(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollContainer(boolean arg0) {#setScrollContainer-boolean-} +``` +public void setScrollContainer(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setScrollIndicators(int arg0) {#setScrollIndicators-int-} +``` +public void setScrollIndicators(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollIndicators(int arg0, int arg1) {#setScrollIndicators-int-int-} +``` +public void setScrollIndicators(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### setScrollX(int arg0) {#setScrollX-int-} +``` +public void setScrollX(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollY(int arg0) {#setScrollY-int-} +``` +public void setScrollY(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollbarFadingEnabled(boolean arg0) {#setScrollbarFadingEnabled-boolean-} +``` +public void setScrollbarFadingEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSelected(boolean arg0) {#setSelected-boolean-} +``` +public void setSelected(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSoundEffectsEnabled(boolean arg0) {#setSoundEffectsEnabled-boolean-} +``` +public void setSoundEffectsEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setStateDescription(CharSequence arg0) {#setStateDescription-java.lang.CharSequence-} +``` +public void setStateDescription(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setStateListAnimator(StateListAnimator arg0) {#setStateListAnimator-android.animation.StateListAnimator-} +``` +public void setStateListAnimator(StateListAnimator arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.animation.StateListAnimator | | + +### setSystemGestureExclusionRects(List arg0) {#setSystemGestureExclusionRects-java.util.List-android.graphics.Rect--} +``` +public void setSystemGestureExclusionRects(List arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.List | | + +### setSystemUiVisibility(int arg0) {#setSystemUiVisibility-int-} +``` +public void setSystemUiVisibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTag(int arg0, Object arg1) {#setTag-int-java.lang.Object-} +``` +public void setTag(int arg0, Object arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.Object | | + +### setTag(Object arg0) {#setTag-java.lang.Object-} +``` +public void setTag(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setTextAlignment(int arg0) {#setTextAlignment-int-} +``` +public void setTextAlignment(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTextDirection(int arg0) {#setTextDirection-int-} +``` +public void setTextDirection(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTooltipText(CharSequence arg0) {#setTooltipText-java.lang.CharSequence-} +``` +public void setTooltipText(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setTop(int arg0) {#setTop-int-} +``` +public final void setTop(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTouchDelegate(TouchDelegate arg0) {#setTouchDelegate-android.view.TouchDelegate-} +``` +public void setTouchDelegate(TouchDelegate arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.TouchDelegate | | + +### setTransitionAlpha(float arg0) {#setTransitionAlpha-float-} +``` +public void setTransitionAlpha(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setTransitionName(String arg0) {#setTransitionName-java.lang.String-} +``` +public final void setTransitionName(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +### setTransitionVisibility(int arg0) {#setTransitionVisibility-int-} +``` +public void setTransitionVisibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTranslationX(float arg0) {#setTranslationX-float-} +``` +public void setTranslationX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setTranslationY(float arg0) {#setTranslationY-float-} +``` +public void setTranslationY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setTranslationZ(float arg0) {#setTranslationZ-float-} +``` +public void setTranslationZ(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setVerticalFadingEdgeEnabled(boolean arg0) {#setVerticalFadingEdgeEnabled-boolean-} +``` +public void setVerticalFadingEdgeEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setVerticalScrollBarEnabled(boolean arg0) {#setVerticalScrollBarEnabled-boolean-} +``` +public void setVerticalScrollBarEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setVerticalScrollbarPosition(int arg0) {#setVerticalScrollbarPosition-int-} +``` +public void setVerticalScrollbarPosition(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setVerticalScrollbarThumbDrawable(Drawable arg0) {#setVerticalScrollbarThumbDrawable-android.graphics.drawable.Drawable-} +``` +public void setVerticalScrollbarThumbDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setVerticalScrollbarTrackDrawable(Drawable arg0) {#setVerticalScrollbarTrackDrawable-android.graphics.drawable.Drawable-} +``` +public void setVerticalScrollbarTrackDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setViewTranslationCallback(ViewTranslationCallback arg0) {#setViewTranslationCallback-android.view.translation.ViewTranslationCallback-} +``` +public void setViewTranslationCallback(ViewTranslationCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.translation.ViewTranslationCallback | | + +### setVisibility(int arg0) {#setVisibility-int-} +``` +public void setVisibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setWillNotCacheDrawing(boolean arg0) {#setWillNotCacheDrawing-boolean-} +``` +public void setWillNotCacheDrawing(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setWillNotDraw(boolean arg0) {#setWillNotDraw-boolean-} +``` +public void setWillNotDraw(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setWindowInsetsAnimationCallback(WindowInsetsAnimation.Callback arg0) {#setWindowInsetsAnimationCallback-android.view.WindowInsetsAnimation.Callback-} +``` +public void setWindowInsetsAnimationCallback(WindowInsetsAnimation.Callback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation.Callback | | + +### setX(float arg0) {#setX-float-} +``` +public void setX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setY(float arg0) {#setY-float-} +``` +public void setY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setZ(float arg0) {#setZ-float-} +``` +public void setZ(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### showContextMenu() {#showContextMenu--} +``` +public boolean showContextMenu() +``` + + + + +**Returns:** +boolean +### showContextMenu(float arg0, float arg1) {#showContextMenu-float-float-} +``` +public boolean showContextMenu(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### startActionMode(ActionMode.Callback arg0) {#startActionMode-android.view.ActionMode.Callback-} +``` +public ActionMode startActionMode(ActionMode.Callback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode.Callback | | + +**Returns:** +android.view.ActionMode +### startActionMode(ActionMode.Callback arg0, int arg1) {#startActionMode-android.view.ActionMode.Callback-int-} +``` +public ActionMode startActionMode(ActionMode.Callback arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode.Callback | | +| arg1 | int | | + +**Returns:** +android.view.ActionMode +### startAnimation(Animation arg0) {#startAnimation-android.view.animation.Animation-} +``` +public void startAnimation(Animation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.animation.Animation | | + +### startDrag(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) {#startDrag-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-} +``` +public final boolean startDrag(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ClipData | | +| arg1 | android.view.View.DragShadowBuilder | | +| arg2 | java.lang.Object | | +| arg3 | int | | + +**Returns:** +boolean +### startDragAndDrop(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) {#startDragAndDrop-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-} +``` +public final boolean startDragAndDrop(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ClipData | | +| arg1 | android.view.View.DragShadowBuilder | | +| arg2 | java.lang.Object | | +| arg3 | int | | + +**Returns:** +boolean +### startNestedScroll(int arg0) {#startNestedScroll-int-} +``` +public boolean startNestedScroll(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### stopNestedScroll() {#stopNestedScroll--} +``` +public void stopNestedScroll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### transformMatrixToGlobal(Matrix arg0) {#transformMatrixToGlobal-android.graphics.Matrix-} +``` +public void transformMatrixToGlobal(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### transformMatrixToLocal(Matrix arg0) {#transformMatrixToLocal-android.graphics.Matrix-} +``` +public void transformMatrixToLocal(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### unscheduleDrawable(Drawable arg0) {#unscheduleDrawable-android.graphics.drawable.Drawable-} +``` +public void unscheduleDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### unscheduleDrawable(Drawable arg0, Runnable arg1) {#unscheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-} +``` +public void unscheduleDrawable(Drawable arg0, Runnable arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | +| arg1 | java.lang.Runnable | | + +### updateDragShadow(View.DragShadowBuilder arg0) {#updateDragShadow-android.view.View.DragShadowBuilder-} +``` +public final void updateDragShadow(View.DragShadowBuilder arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.DragShadowBuilder | | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### willNotCacheDrawing() {#willNotCacheDrawing--} +``` +public boolean willNotCacheDrawing() +``` + + + + +**Returns:** +boolean +### willNotDraw() {#willNotDraw--} +``` +public boolean willNotDraw() +``` + + + + +**Returns:** +boolean diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/shapedrawer/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/shapedrawer/_index.md new file mode 100644 index 000000000..9aa5c03c9 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/shapedrawer/_index.md @@ -0,0 +1,147 @@ +--- +title: ShapeDrawer +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 11 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/shapedrawer/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract class ShapeDrawer +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [ShapeDrawer()](#ShapeDrawer--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [drawShape(Canvas canvas)](#drawShape-android.graphics.Canvas-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ShapeDrawer() {#ShapeDrawer--} +``` +public ShapeDrawer() +``` + + +### drawShape(Canvas canvas) {#drawShape-android.graphics.Canvas-} +``` +public abstract void drawShape(Canvas canvas) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| toile | android.graphics.Canvas | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/twodareastyle/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/twodareastyle/_index.md new file mode 100644 index 000000000..b2a3804f2 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/twodareastyle/_index.md @@ -0,0 +1,250 @@ +--- +title: TwoDAreaStyle +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Style du rectangle rendu autour de la zone de reconnaissance 2D +type: docs +weight: 13 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner.recognitionareaview/twodareastyle/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum TwoDAreaStyle extends Enum +``` + +Style du rectangle rendu autour de la zone de reconnaissance 2D +## Champs + +| Champ | Description | +| --- | --- | +| [CORNERS](#CORNERS) | Rend uniquement les coins | +| [LINE](#LINE) | Rend un rectangle | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CORNERS {#CORNERS} +``` +public static final TwoDAreaStyle CORNERS +``` + + +Rend uniquement les coins + +### LINE {#LINE} +``` +public static final TwoDAreaStyle LINE +``` + + +Rend un rectangle + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static TwoDAreaStyle valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +com.aspose.barcode.component.barcodescanner.recognitionareaview.TwoDAreaStyle +### values() {#values--} +``` +public static TwoDAreaStyle[] values() +``` + + + + +**Returns:** +com.aspose.barcode.component.barcodescanner.recognitionareaview.TwoDAreaStyle[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/_index.md new file mode 100644 index 000000000..ec192babc --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/_index.md @@ -0,0 +1,46 @@ +--- +title: com.aspose.barcode.component.barcodescanner +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 13 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/ +--- + +## Classes + +| Classe | Description | +| --- | --- | +| [BarcodeRecognitionContract](../com.aspose.barcode.component.barcodescanner/barcoderecognitioncontract) | Interne BarcodeRecognitionContract nécessaire pour configurer l'appel de BarcodeScannerActivity depuis l'activité cliente | +| [BarcodeRecognitionSettings](../com.aspose.barcode.component.barcodescanner/barcoderecognitionsettings) | BarcodeRecognitionSettings contient l'API permettant de personnaliser BarcodeRecognitionFragment et les paramètres de reconnaissance de code-barres, l'ajout de RecognitionResultsHandler doit être appelé avant le démarrage du processus de reconnaissance dans BarcodeScannerFragment. | +| [BarcodeScanner](../com.aspose.barcode.component.barcodescanner/barcodescanner) | BarcodeScanner contient les fonctionnalités liées à la reconnaissance de codes-barres à partir de la caméra d'un appareil Android. | +| [BarcodeScannerActivity](../com.aspose.barcode.component.barcodescanner/barcodescanneractivity) | Activité qui contient BarcodeScannerFragment. C'est une classe interne et le client ne doit pas appeler cette classe, mais le client doit enregistrer BarcodeScannerActivity dans AndroidManifest.xml | +| [BarcodeScannerFragment](../com.aspose.barcode.component.barcodescanner/barcodescannerfragment) | Fragment pour la reconnaissance des codes-barres. | +| [BarcodeScannerFragmentSettings](../com.aspose.barcode.component.barcodescanner/barcodescannerfragmentsettings) | Paramètres pour BarcodeScannerFragmentSettings | +| [BarcodeScannerPreferences](../com.aspose.barcode.component.barcodescanner/barcodescannerpreferences) | Les préférences de BarcodeScanner. | +| [BarcodeScannerPreferencesFragment](../com.aspose.barcode.component.barcodescanner/barcodescannerpreferencesfragment) | PreferencesFragment peut être utilisé pour personnaliser le processus de reconnaissance de codes-barres à l'aide d'une interface graphique personnalisée. | +| [BarcodeScannerView](../com.aspose.barcode.component.barcodescanner/barcodescannerview) | | +| [CameraProcessingFragment](../com.aspose.barcode.component.barcodescanner/cameraprocessingfragment) | Interne | +| [CameraProcessingFragmentSettings](../com.aspose.barcode.component.barcodescanner/cameraprocessingfragmentsettings) | Paramètres pour CameraProcessingFragment | +| [RecognitionAreaSettings](../com.aspose.barcode.component.barcodescanner/recognitionareasettings) | | +| [RecognitionAreaView](../com.aspose.barcode.component.barcodescanner/recognitionareaview) | | +| [RecognitionProcessFragmentBitmapBackground](../com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentbitmapbackground) | Représente l'arrière-plan de l'image qui sera rendu pendant le processus de reconnaissance. | +| [RecognitionProcessFragmentCameraPhotoBackground](../com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentcameraphotobackground) | Représente l'arrière-plan de l'image obtenu de la caméra qui sera rendu pendant le processus de reconnaissance. | +| [RecognitionProcessFragmentColorBackground](../com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentcolorbackground) | Représente le fond d'une seule couleur qui sera rendu pendant le processus de reconnaissance | +| [RecognitionProcessingFragment](../com.aspose.barcode.component.barcodescanner/recognitionprocessingfragment) | Interne contient l'interface graphique qui est rendue pendant le processus de reconnaissance | +| [RecognitionProcessingFragmentSettings](../com.aspose.barcode.component.barcodescanner/recognitionprocessingfragmentsettings) | | + +## Interfaces + +| Interface | Description | +| --- | --- | +| [BarcodeRecognitionResultsHandler](../com.aspose.barcode.component.barcodescanner/barcoderecognitionresultshandler) | Gestionnaire pour le traitement des résultats de reconnaissance. Utilisé du côté de l'activité de reconnaissance. | +| [BarcodeRecognitionResultsHandlerParcelable](../com.aspose.barcode.component.barcodescanner/barcoderecognitionresultshandlerparcelable) | Implémentation de OnScannerRecognitionFinishedListener qui implémente l'interface Parcelable. | +| [OnBarcodeScannerCompletedCallback](../com.aspose.barcode.component.barcodescanner/onbarcodescannercompletedcallback) | Définition d'interface pour un rappel qui sera invoqué lorsqu'un processus de numérisation est terminé. | +| [OnRecognitionPreferencesChangedListener](../com.aspose.barcode.component.barcodescanner/onrecognitionpreferenceschangedlistener) | | + +## Énumérations + +| Énum | Description | +| --- | --- | +| [CameraMode](../com.aspose.barcode.component.barcodescanner/cameramode) | Contient les modes d'obtention d'images depuis la caméra | diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitioncontract/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitioncontract/_index.md new file mode 100644 index 000000000..bf85d5455 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitioncontract/_index.md @@ -0,0 +1,203 @@ +--- +title: BarcodeRecognitionContract +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Interne BarcodeRecognitionContract nécessaire pour configurer l’appel de BarcodeScannerActivity depuis une activité. +type: docs +weight: 10 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitioncontract/ +--- +**Inheritance:** +java.lang.Object, androidx.activity.result.contract.ActivityResultContract +``` +public class BarcodeRecognitionContract extends ActivityResultContract +``` + +Interne BarcodeRecognitionContract nécessaire pour configurer l'appel de BarcodeScannerActivity depuis l'activité cliente +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarcodeRecognitionContract()](#BarcodeRecognitionContract--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [createIntent(Context arg0, I arg1)](#createIntent-android.content.Context-I-) | | +| [createIntent(Context context, BarcodeScannerPreferences barcodeScannerPreferences)](#createIntent-android.content.Context-com.aspose.barcode.component.barcodescanner.BarcodeScannerPreferences-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getSynchronousResult(Context arg0, I arg1)](#getSynchronousResult-android.content.Context-I-) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parseResult(int resultCode, Intent intent)](#parseResult-int-android.content.Intent-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarcodeRecognitionContract() {#BarcodeRecognitionContract--} +``` +public BarcodeRecognitionContract() +``` + + +### createIntent(Context arg0, I arg1) {#createIntent-android.content.Context-I-} +``` +public abstract Intent createIntent(Context arg0, I arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | I | | + +**Returns:** +android.content.Intent +### createIntent(Context context, BarcodeScannerPreferences barcodeScannerPreferences) {#createIntent-android.content.Context-com.aspose.barcode.component.barcodescanner.BarcodeScannerPreferences-} +``` +public Intent createIntent(Context context, BarcodeScannerPreferences barcodeScannerPreferences) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| contexte | android.content.Context | | +| barcodeScannerPreferences | com.aspose.barcode.component.barcodescanner.BarcodeScannerPreferences | | + +**Returns:** +android.content.Intent +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getSynchronousResult(Context arg0, I arg1) {#getSynchronousResult-android.content.Context-I-} +``` +public ActivityResultContract.SynchronousResult getSynchronousResult(Context arg0, I arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | I | | + +**Returns:** +androidx.activity.result.contract.ActivityResultContract.SynchronousResult +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parseResult(int resultCode, Intent intent) {#parseResult-int-android.content.Intent-} +``` +public BarcodeRecognitionResultsHandlerParcelable parseResult(int resultCode, Intent intent) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| resultCode | int | | +| intention | android.content.Intent | | + +**Returns:** +com.aspose.barcode.component.barcodescanner.BarcodeRecognitionResultsHandlerParcelable +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionresultshandler/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionresultshandler/_index.md new file mode 100644 index 000000000..9b3f66167 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionresultshandler/_index.md @@ -0,0 +1,34 @@ +--- +title: BarcodeRecognitionResultsHandler +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Gestionnaire pour le traitement des résultats de reconnaissance. Utilisé du côté de l'activité de reconnaissance. +type: docs +weight: 28 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionresultshandler/ +---``` +public interface BarcodeRecognitionResultsHandler +``` + +Handler for processing the recognition results Use on recognition activity side. Implements Parcelable to return the userdata from recognition activity side. +## Methods + +| Method | Description | +| --- | --- | +| [processResult(Context context, BarCodeResult[] results, BarcodeSettings settings)](#processResult-android.content.Context-com.aspose.barcode.barcoderecognition.BarCodeResult---com.aspose.barcode.barcoderecognition.BarcodeSettings-) | Process the recognition results. | +### processResult(Context context, BarCodeResult[] results, BarcodeSettings settings) {#processResult-android.content.Context-com.aspose.barcode.barcoderecognition.BarCodeResult---com.aspose.barcode.barcoderecognition.BarcodeSettings-} +``` +public abstract boolean processResult(Context context, BarCodeResult[] results, BarcodeSettings settings) +``` + + +Process the recognition results. If repeat flag = false, finishes the recognition process and closes recognition activity and the device camera + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| context | android.content.Context | | +| results | [BarCodeResult\[\]](../../com.aspose.barcode.barcoderecognition/barcoderesult) | array of the recognized results. null - not recognized | +| settings | [BarcodeSettings](../../com.aspose.barcode.barcoderecognition/barcodesettings) | | + +**Returns:** +boolean - need repeat diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionresultshandlerparcelable/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionresultshandlerparcelable/_index.md new file mode 100644 index 000000000..f2a3f622b --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionresultshandlerparcelable/_index.md @@ -0,0 +1,15 @@ +--- +title: BarcodeRecognitionResultsHandlerParcelable +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Implémentation de OnScannerRecognitionFinishedListener qui implémente l'interface Parcelable. +type: docs +weight: 29 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionresultshandlerparcelable/ +--- +**All Implemented Interfaces:** +com.aspose.barcode.component.barcodescanner.BarcodeRecognitionResultsHandler, android.os.Parcelable +``` +public interface BarcodeRecognitionResultsHandlerParcelable extends BarcodeRecognitionResultsHandler, Parcelable +``` + +Implémentation de OnScannerRecognitionFinishedListener qui implémente l'interface Parcelable. L'interface OnScannerRecognitionFinishedListener doit être utilisée avec la méthode BarcodeScanner.setOnScanFinishedHandler, car l'implémentation de l'interface Parcelable peut transmettre des données entre les activités. diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionsettings/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionsettings/_index.md new file mode 100644 index 000000000..1e7f048f8 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionsettings/_index.md @@ -0,0 +1,289 @@ +--- +title: BarcodeRecognitionSettings +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: BarcodeRecognitionSettings contient l'API pour personnaliser BarcodeRecognitionFragment et les paramètres de reconnaissance de code-barres en ajoutant RecognitionResultsHandler. Doit être appelé avant le démarrage du processus de reconnaissance dans BarcodeScannerFragment. +type: docs +weight: 11 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionsettings/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +android.os.Parcelable +``` +public class BarcodeRecognitionSettings implements Parcelable +``` + +BarcodeRecognitionSettings contient l'API pour personnaliser BarcodeRecognitionFragment et les paramètres de reconnaissance de code-barres, l'ajout de RecognitionResultsHandler doit être appelé avant le démarrage du processus de reconnaissance dans BarcodeScannerFragment. //TODO discuter de la méthode applyChanges ou importSettings +## Champs + +| Champ | Description | +| --- | --- | +| [CREATOR](#CREATOR) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [describeContents()](#describeContents--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBarCodeReadType()](#getBarCodeReadType--) | | +| [getBarcodeReaderSettings()](#getBarcodeReaderSettings--) | interne | +| [getBarcodeScannerFragmentSettings()](#getBarcodeScannerFragmentSettings--) | | +| [getBarcodeSettings()](#getBarcodeSettings--) | Les principaux paramètres de décodage BarCode. | +| [getClass()](#getClass--) | | +| [getQualitySettings()](#getQualitySettings--) | Non implémenté | +| [hashCode()](#hashCode--) | | +| [importSettingsFromXml(InputStream barcodeReaderExportedToXml)](#importSettingsFromXml-java.io.InputStream-) | Importe les propriétés BarCode depuis le flux xml spécifié et les applique à l'instance actuelle de BarCodeReader. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBarCodeReadType(BaseDecodeType type)](#setBarCodeReadType-com.aspose.barcode.barcoderecognition.BaseDecodeType-) | Définit le type de décodage pour la reconnaissance. | +| [setBarCodeReadType(SingleDecodeType[] barcodeTypes)](#setBarCodeReadType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-) | Définit le tableau de type SingleDecodeType pour la reconnaissance. | +| [setBarcodeRecognitionResultHandler(BarcodeRecognitionResultsHandler recognitionResultsHandler)](#setBarcodeRecognitionResultHandler-com.aspose.barcode.component.barcodescanner.BarcodeRecognitionResultsHandler-) | Définit une implémentation personnalisée de OnRecognitionFinishedListener. Le OnRecognitionFinishedListener personnalisé sera appelé après la fin du processus de reconnaissance dans BarcodeScannerFragment. | +| [setQualitySettings(QualitySettings qualitySettings)](#setQualitySettings-com.aspose.barcode.barcoderecognition.QualitySettings-) | QualitySettings permet de configurer manuellement la qualité et la vitesse de reconnaissance. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [writeToParcel(Parcel dest, int flags)](#writeToParcel-android.os.Parcel-int-) | | +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### describeContents() {#describeContents--} +``` +public int describeContents() +``` + + + + +**Returns:** +int +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBarCodeReadType() {#getBarCodeReadType--} +``` +public BaseDecodeType getBarCodeReadType() +``` + + + + +**Returns:** +[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) +### getBarcodeReaderSettings() {#getBarcodeReaderSettings--} +``` +public InputStream getBarcodeReaderSettings() +``` + + +interne + +**Returns:** +java.io.InputStream - +### getBarcodeScannerFragmentSettings() {#getBarcodeScannerFragmentSettings--} +``` +public BarcodeScannerFragmentSettings getBarcodeScannerFragmentSettings() +``` + + + + +**Returns:** +com.aspose.barcode.component.barcodescanner.BarcodeScannerFragmentSettings +### getBarcodeSettings() {#getBarcodeSettings--} +``` +public BarcodeSettings getBarcodeSettings() +``` + + +Les principaux paramètres de décodage BarCode. Contient des paramètres qui influencent les données reconnues. + +**Returns:** +[BarcodeSettings](../../com.aspose.barcode.barcoderecognition/barcodesettings) - The main BarCode decoding parameters +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getQualitySettings() {#getQualitySettings--} +``` +public QualitySettings getQualitySettings() +``` + + +Non implémenté + +**Returns:** +[QualitySettings](../../com.aspose.barcode.barcoderecognition/qualitysettings) - quality settings +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### importSettingsFromXml(InputStream barcodeReaderExportedToXml) {#importSettingsFromXml-java.io.InputStream-} +``` +public void importSettingsFromXml(InputStream barcodeReaderExportedToXml) +``` + + +Importe les propriétés BarCode depuis le flux xml spécifié et les applique à l'instance actuelle de BarCodeReader. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeReaderExportedToXml | java.io.InputStream | Le flux xml pour le chargement | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBarCodeReadType(BaseDecodeType type) {#setBarCodeReadType-com.aspose.barcode.barcoderecognition.BaseDecodeType-} +``` +public void setBarCodeReadType(BaseDecodeType type) +``` + + +Définit le type de décodage pour la reconnaissance. Doit être appelé avant la méthode ReadBarCodes(). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| type | [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Le type de code-barres à lire. | + +### setBarCodeReadType(SingleDecodeType[] barcodeTypes) {#setBarCodeReadType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-} +``` +public void setBarCodeReadType(SingleDecodeType[] barcodeTypes) +``` + + +Définit le tableau de type SingleDecodeType pour la reconnaissance. Doit être appelé avant le démarrage du processus de reconnaissance dans BarcodeScannerFragment. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeTypes | [SingleDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Le tableau de type SingleDecodeType à lire. | + +### setBarcodeRecognitionResultHandler(BarcodeRecognitionResultsHandler recognitionResultsHandler) {#setBarcodeRecognitionResultHandler-com.aspose.barcode.component.barcodescanner.BarcodeRecognitionResultsHandler-} +``` +public void setBarcodeRecognitionResultHandler(BarcodeRecognitionResultsHandler recognitionResultsHandler) +``` + + +Définit une implémentation personnalisée de OnRecognitionFinishedListener. Le OnRecognitionFinishedListener personnalisé sera appelé après la fin du processus de reconnaissance dans BarcodeScannerFragment. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionResultsHandler | com.aspose.barcode.component.barcodescanner.BarcodeRecognitionResultsHandler | | + +### setQualitySettings(QualitySettings qualitySettings) {#setQualitySettings-com.aspose.barcode.barcoderecognition.QualitySettings-} +``` +public void setQualitySettings(QualitySettings qualitySettings) +``` + + +QualitySettings permet de configurer manuellement la qualité et la vitesse de reconnaissance. Vous pouvez configurer rapidement QualitySettings à l'aide des préréglages intégrés : HighPerformance, NormalQuality, HighQuality, MaxBarCodes ou vous pouvez configurer manuellement des options séparées. La valeur par défaut de QualitySettings est NormalQuality. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| qualitySettings | [QualitySettings](../../com.aspose.barcode.barcoderecognition/qualitysettings) | pour configurer la qualité et la vitesse de reconnaissance. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### writeToParcel(Parcel dest, int flags) {#writeToParcel-android.os.Parcel-int-} +``` +public void writeToParcel(Parcel dest, int flags) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dest | android.os.Parcel | | +| flags | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescanner/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescanner/_index.md new file mode 100644 index 000000000..9765e0db7 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescanner/_index.md @@ -0,0 +1,212 @@ +--- +title: BarcodeScanner +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: BarcodeScanner contient les fonctionnalités liées à la reconnaissance de codes-barres à partir de la caméra d'un appareil Android. +type: docs +weight: 12 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/barcodescanner/ +--- +**Inheritance:** +java.lang.Object +``` +public class BarcodeScanner +``` + +BarcodeScanner contient les fonctionnalités liées à la reconnaissance de codes-barres à partir de la caméra d'un appareil Android. + +``` +This sample shows how to use BarcodeScanner. + + // BarcodeScanner should be initialized in custom Activity in onCreate method, + because BarcodeScanner must to initialize BarcodeScannerActivity in application + BarcodeScanner scanner = new BarcodeScanner(getActivity()); + // Sets OnScanFinishedHandler that takes custom implementation of OnScannerRecognitionFinishedListener. + // This OnScanFinishedHandler will be called after return from BarcodeScannerActivity + scanner.setOnScanFinishedHandler(recognitionHandler -> { + AlertDialog.Builder dialog = new AlertDialog.Builder(requireContext()); + dialog.setMessage(((ClientResultsListener)recognitionHandler).resultString); + dialog.create().show(); + }); + // Initialize custom implementation of OnScannerRecognitionFinishedListener + ClientResultsListener listener = new ClientResultsListener(); + // Launch BarcodeScannerActivity + scanner.launchBarcodeScanner(listener); + + // Custom implementation of OnScannerRecognitionFinishedListener that process barcode recognition result + on BarcodeScannerActivity side + private class CustomResultsListener implements OnScannerRecognitionFinishedListener + { + public String resultString; + + public ClientResultsListener() {} + + protected ClientResultsListener(Parcel in) { + resultString = in.readString(); + } +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarcodeScanner(ComponentActivity parentActivity)](#BarcodeScanner-androidx.activity.ComponentActivity-) | Initialise une nouvelle instance de la classe BarcodeScanner. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getPreferences()](#getPreferences--) | | +| [hashCode()](#hashCode--) | | +| [launchBarcodeScanner(BarcodeRecognitionResultsHandlerParcelable barcodeRecognitionResultsHandler)](#launchBarcodeScanner-com.aspose.barcode.component.barcodescanner.BarcodeRecognitionResultsHandlerParcelable-) | Lance la vue de la caméra et gère le processus de reconnaissance | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setOnBarcodeScannerCompletedCallback(OnBarcodeScannerCompletedCallback onBarcodeScannerCompletedCallback)](#setOnBarcodeScannerCompletedCallback-com.aspose.barcode.component.barcodescanner.OnBarcodeScannerCompletedCallback-) | Écouteur de fin de reconnaissance | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarcodeScanner(ComponentActivity parentActivity) {#BarcodeScanner-androidx.activity.ComponentActivity-} +``` +public BarcodeScanner(ComponentActivity parentActivity) +``` + + +Initialise une nouvelle instance de la classe BarcodeScanner. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parentActivity | androidx.activity.ComponentActivity | activité depuis laquelle BarcodeScanner est appelé. Doit être initialisée avant que la vue de l'activité parente ne soit créée | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getPreferences() {#getPreferences--} +``` +public BarcodeScannerPreferences getPreferences() +``` + + + + +**Returns:** +com.aspose.barcode.component.barcodescanner.BarcodeScannerPreferences - préférences du scanner de code-barres +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### launchBarcodeScanner(BarcodeRecognitionResultsHandlerParcelable barcodeRecognitionResultsHandler) {#launchBarcodeScanner-com.aspose.barcode.component.barcodescanner.BarcodeRecognitionResultsHandlerParcelable-} +``` +public void launchBarcodeScanner(BarcodeRecognitionResultsHandlerParcelable barcodeRecognitionResultsHandler) +``` + + +Lance la vue de la caméra et gère le processus de reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeRecognitionResultsHandler | com.aspose.barcode.component.barcodescanner.BarcodeRecognitionResultsHandlerParcelable | Instance personnalisée de la classe abstraite OnScannerRecognitionFinishedListener qui traite le résultat de la reconnaissance | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setOnBarcodeScannerCompletedCallback(OnBarcodeScannerCompletedCallback onBarcodeScannerCompletedCallback) {#setOnBarcodeScannerCompletedCallback-com.aspose.barcode.component.barcodescanner.OnBarcodeScannerCompletedCallback-} +``` +public void setOnBarcodeScannerCompletedCallback(OnBarcodeScannerCompletedCallback onBarcodeScannerCompletedCallback) +``` + + +Écouteur de fin de reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| onBarcodeScannerCompletedCallback | com.aspose.barcode.component.barcodescanner.OnBarcodeScannerCompletedCallback | écouteur | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescanneractivity/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescanneractivity/_index.md new file mode 100644 index 000000000..d47ca14e3 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescanneractivity/_index.md @@ -0,0 +1,7219 @@ +--- +title: BarcodeScannerActivity +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Activité qui contient BarcodeScannerFragment Il s'agit d'une classe interne et le client ne doit pas appeler cette classe mais le client doit enregistrer BarcodeScannerActivity dans AndroidManifest.xml +type: docs +weight: 13 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/barcodescanneractivity/ +--- +**Inheritance:** +java.lang.Object, android.content.Context, android.content.ContextWrapper, android.view.ContextThemeWrapper, android.app.Activity, androidx.core.app.ComponentActivity, androidx.activity.ComponentActivity, androidx.fragment.app.FragmentActivity, androidx.appcompat.app.AppCompatActivity +``` +public class BarcodeScannerActivity extends AppCompatActivity +``` + +Activité qui contient BarcodeScannerFragment. C'est une classe interne et le client ne doit pas appeler cette classe, mais le client doit enregistrer BarcodeScannerActivity dans AndroidManifest.xml +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarcodeScannerActivity()](#BarcodeScannerActivity--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [ACCESSIBILITY_SERVICE](#ACCESSIBILITY-SERVICE) | | +| [ACCOUNT_SERVICE](#ACCOUNT-SERVICE) | | +| [ACTIVITY_SERVICE](#ACTIVITY-SERVICE) | | +| [ALARM_SERVICE](#ALARM-SERVICE) | | +| [APPWIDGET_SERVICE](#APPWIDGET-SERVICE) | | +| [APP_OPS_SERVICE](#APP-OPS-SERVICE) | | +| [APP_SEARCH_SERVICE](#APP-SEARCH-SERVICE) | | +| [AUDIO_SERVICE](#AUDIO-SERVICE) | | +| [BATTERY_SERVICE](#BATTERY-SERVICE) | | +| [BIND_ABOVE_CLIENT](#BIND-ABOVE-CLIENT) | | +| [BIND_ADJUST_WITH_ACTIVITY](#BIND-ADJUST-WITH-ACTIVITY) | | +| [BIND_ALLOW_OOM_MANAGEMENT](#BIND-ALLOW-OOM-MANAGEMENT) | | +| [BIND_AUTO_CREATE](#BIND-AUTO-CREATE) | | +| [BIND_DEBUG_UNBIND](#BIND-DEBUG-UNBIND) | | +| [BIND_EXTERNAL_SERVICE](#BIND-EXTERNAL-SERVICE) | | +| [BIND_IMPORTANT](#BIND-IMPORTANT) | | +| [BIND_INCLUDE_CAPABILITIES](#BIND-INCLUDE-CAPABILITIES) | | +| [BIND_NOT_FOREGROUND](#BIND-NOT-FOREGROUND) | | +| [BIND_NOT_PERCEPTIBLE](#BIND-NOT-PERCEPTIBLE) | | +| [BIND_WAIVE_PRIORITY](#BIND-WAIVE-PRIORITY) | | +| [BIOMETRIC_SERVICE](#BIOMETRIC-SERVICE) | | +| [BLOB_STORE_SERVICE](#BLOB-STORE-SERVICE) | | +| [BLUETOOTH_SERVICE](#BLUETOOTH-SERVICE) | | +| [BUGREPORT_SERVICE](#BUGREPORT-SERVICE) | | +| [CAMERA_SERVICE](#CAMERA-SERVICE) | | +| [CAPTIONING_SERVICE](#CAPTIONING-SERVICE) | | +| [CARRIER_CONFIG_SERVICE](#CARRIER-CONFIG-SERVICE) | | +| [CLIPBOARD_SERVICE](#CLIPBOARD-SERVICE) | | +| [COMPANION_DEVICE_SERVICE](#COMPANION-DEVICE-SERVICE) | | +| [CONNECTIVITY_DIAGNOSTICS_SERVICE](#CONNECTIVITY-DIAGNOSTICS-SERVICE) | | +| [CONNECTIVITY_SERVICE](#CONNECTIVITY-SERVICE) | | +| [CONSUMER_IR_SERVICE](#CONSUMER-IR-SERVICE) | | +| [CONTEXT_IGNORE_SECURITY](#CONTEXT-IGNORE-SECURITY) | | +| [CONTEXT_INCLUDE_CODE](#CONTEXT-INCLUDE-CODE) | | +| [CONTEXT_RESTRICTED](#CONTEXT-RESTRICTED) | | +| [CROSS_PROFILE_APPS_SERVICE](#CROSS-PROFILE-APPS-SERVICE) | | +| [DEFAULT_KEYS_DIALER](#DEFAULT-KEYS-DIALER) | | +| [DEFAULT_KEYS_DISABLE](#DEFAULT-KEYS-DISABLE) | | +| [DEFAULT_KEYS_SEARCH_GLOBAL](#DEFAULT-KEYS-SEARCH-GLOBAL) | | +| [DEFAULT_KEYS_SEARCH_LOCAL](#DEFAULT-KEYS-SEARCH-LOCAL) | | +| [DEFAULT_KEYS_SHORTCUT](#DEFAULT-KEYS-SHORTCUT) | | +| [DEVICE_POLICY_SERVICE](#DEVICE-POLICY-SERVICE) | | +| [DISPLAY_HASH_SERVICE](#DISPLAY-HASH-SERVICE) | | +| [DISPLAY_SERVICE](#DISPLAY-SERVICE) | | +| [DOMAIN_VERIFICATION_SERVICE](#DOMAIN-VERIFICATION-SERVICE) | | +| [DOWNLOAD_SERVICE](#DOWNLOAD-SERVICE) | | +| [DROPBOX_SERVICE](#DROPBOX-SERVICE) | | +| [EUICC_SERVICE](#EUICC-SERVICE) | | +| [FILE_INTEGRITY_SERVICE](#FILE-INTEGRITY-SERVICE) | | +| [FINGERPRINT_SERVICE](#FINGERPRINT-SERVICE) | | +| [GAME_SERVICE](#GAME-SERVICE) | | +| [HARDWARE_PROPERTIES_SERVICE](#HARDWARE-PROPERTIES-SERVICE) | | +| [INPUT_METHOD_SERVICE](#INPUT-METHOD-SERVICE) | | +| [INPUT_SERVICE](#INPUT-SERVICE) | | +| [IPSEC_SERVICE](#IPSEC-SERVICE) | | +| [JOB_SCHEDULER_SERVICE](#JOB-SCHEDULER-SERVICE) | | +| [KEYGUARD_SERVICE](#KEYGUARD-SERVICE) | | +| [LAUNCHER_APPS_SERVICE](#LAUNCHER-APPS-SERVICE) | | +| [LAYOUT_INFLATER_SERVICE](#LAYOUT-INFLATER-SERVICE) | | +| [LOCALE_SERVICE](#LOCALE-SERVICE) | | +| [LOCATION_SERVICE](#LOCATION-SERVICE) | | +| [MEDIA_COMMUNICATION_SERVICE](#MEDIA-COMMUNICATION-SERVICE) | | +| [MEDIA_METRICS_SERVICE](#MEDIA-METRICS-SERVICE) | | +| [MEDIA_PROJECTION_SERVICE](#MEDIA-PROJECTION-SERVICE) | | +| [MEDIA_ROUTER_SERVICE](#MEDIA-ROUTER-SERVICE) | | +| [MEDIA_SESSION_SERVICE](#MEDIA-SESSION-SERVICE) | | +| [MIDI_SERVICE](#MIDI-SERVICE) | | +| [MODE_APPEND](#MODE-APPEND) | | +| [MODE_ENABLE_WRITE_AHEAD_LOGGING](#MODE-ENABLE-WRITE-AHEAD-LOGGING) | | +| [MODE_MULTI_PROCESS](#MODE-MULTI-PROCESS) | | +| [MODE_NO_LOCALIZED_COLLATORS](#MODE-NO-LOCALIZED-COLLATORS) | | +| [MODE_PRIVATE](#MODE-PRIVATE) | | +| [MODE_WORLD_READABLE](#MODE-WORLD-READABLE) | | +| [MODE_WORLD_WRITEABLE](#MODE-WORLD-WRITEABLE) | | +| [NETWORK_STATS_SERVICE](#NETWORK-STATS-SERVICE) | | +| [NFC_SERVICE](#NFC-SERVICE) | | +| [NOTIFICATION_SERVICE](#NOTIFICATION-SERVICE) | | +| [NSD_SERVICE](#NSD-SERVICE) | | +| [PEOPLE_SERVICE](#PEOPLE-SERVICE) | | +| [PERFORMANCE_HINT_SERVICE](#PERFORMANCE-HINT-SERVICE) | | +| [POWER_SERVICE](#POWER-SERVICE) | | +| [PRINT_SERVICE](#PRINT-SERVICE) | | +| [RECEIVER_EXPORTED](#RECEIVER-EXPORTED) | | +| [RECEIVER_NOT_EXPORTED](#RECEIVER-NOT-EXPORTED) | | +| [RECEIVER_VISIBLE_TO_INSTANT_APPS](#RECEIVER-VISIBLE-TO-INSTANT-APPS) | | +| [RESTRICTIONS_SERVICE](#RESTRICTIONS-SERVICE) | | +| [RESULT_CANCELED](#RESULT-CANCELED) | | +| [RESULT_FIRST_USER](#RESULT-FIRST-USER) | | +| [RESULT_OK](#RESULT-OK) | | +| [ROLE_SERVICE](#ROLE-SERVICE) | | +| [SEARCH_SERVICE](#SEARCH-SERVICE) | | +| [SENSOR_SERVICE](#SENSOR-SERVICE) | | +| [SHORTCUT_SERVICE](#SHORTCUT-SERVICE) | | +| [STATUS_BAR_SERVICE](#STATUS-BAR-SERVICE) | | +| [STORAGE_SERVICE](#STORAGE-SERVICE) | | +| [STORAGE_STATS_SERVICE](#STORAGE-STATS-SERVICE) | | +| [SYSTEM_HEALTH_SERVICE](#SYSTEM-HEALTH-SERVICE) | | +| [TELECOM_SERVICE](#TELECOM-SERVICE) | | +| [TELEPHONY_IMS_SERVICE](#TELEPHONY-IMS-SERVICE) | | +| [TELEPHONY_SERVICE](#TELEPHONY-SERVICE) | | +| [TELEPHONY_SUBSCRIPTION_SERVICE](#TELEPHONY-SUBSCRIPTION-SERVICE) | | +| [TEXT_CLASSIFICATION_SERVICE](#TEXT-CLASSIFICATION-SERVICE) | | +| [TEXT_SERVICES_MANAGER_SERVICE](#TEXT-SERVICES-MANAGER-SERVICE) | | +| [TV_INPUT_SERVICE](#TV-INPUT-SERVICE) | | +| [TV_INTERACTIVE_APP_SERVICE](#TV-INTERACTIVE-APP-SERVICE) | | +| [UI_MODE_SERVICE](#UI-MODE-SERVICE) | | +| [USAGE_STATS_SERVICE](#USAGE-STATS-SERVICE) | | +| [USB_SERVICE](#USB-SERVICE) | | +| [USER_SERVICE](#USER-SERVICE) | | +| [VIBRATOR_MANAGER_SERVICE](#VIBRATOR-MANAGER-SERVICE) | | +| [VIBRATOR_SERVICE](#VIBRATOR-SERVICE) | | +| [VPN_MANAGEMENT_SERVICE](#VPN-MANAGEMENT-SERVICE) | | +| [WALLPAPER_SERVICE](#WALLPAPER-SERVICE) | | +| [WIFI_AWARE_SERVICE](#WIFI-AWARE-SERVICE) | | +| [WIFI_P2P_SERVICE](#WIFI-P2P-SERVICE) | | +| [WIFI_RTT_RANGING_SERVICE](#WIFI-RTT-RANGING-SERVICE) | | +| [WIFI_SERVICE](#WIFI-SERVICE) | | +| [WINDOW_SERVICE](#WINDOW-SERVICE) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1)](#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultCallback-O--) | | +| [registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2)](#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultRegistry-androidx.activity.result.ActivityResultCallback-O--) | | +| [findViewById(int arg0)](#-T-findViewById-int-) | | +| [getExtraData(Class arg0)](#-T-getExtraData-java.lang.Class-T--) | | +| [getSystemService(Class arg0)](#-T-getSystemService-java.lang.Class-T--) | | +| [requireViewById(int arg0)](#-T-requireViewById-int-) | | +| [addContentView(View arg0, ViewGroup.LayoutParams arg1)](#addContentView-android.view.View-android.view.ViewGroup.LayoutParams-) | | +| [addMenuProvider(MenuProvider arg0)](#addMenuProvider-androidx.core.view.MenuProvider-) | | +| [addMenuProvider(MenuProvider arg0, LifecycleOwner arg1)](#addMenuProvider-androidx.core.view.MenuProvider-androidx.lifecycle.LifecycleOwner-) | | +| [addMenuProvider(MenuProvider arg0, LifecycleOwner arg1, Lifecycle.State arg2)](#addMenuProvider-androidx.core.view.MenuProvider-androidx.lifecycle.LifecycleOwner-androidx.lifecycle.Lifecycle.State-) | | +| [addOnConfigurationChangedListener(Consumer arg0)](#addOnConfigurationChangedListener-androidx.core.util.Consumer-android.content.res.Configuration--) | | +| [addOnContextAvailableListener(OnContextAvailableListener arg0)](#addOnContextAvailableListener-androidx.activity.contextaware.OnContextAvailableListener-) | | +| [addOnMultiWindowModeChangedListener(Consumer arg0)](#addOnMultiWindowModeChangedListener-androidx.core.util.Consumer-androidx.core.app.MultiWindowModeChangedInfo--) | | +| [addOnNewIntentListener(Consumer arg0)](#addOnNewIntentListener-androidx.core.util.Consumer-android.content.Intent--) | | +| [addOnPictureInPictureModeChangedListener(Consumer arg0)](#addOnPictureInPictureModeChangedListener-androidx.core.util.Consumer-androidx.core.app.PictureInPictureModeChangedInfo--) | | +| [addOnTrimMemoryListener(Consumer arg0)](#addOnTrimMemoryListener-androidx.core.util.Consumer-java.lang.Integer--) | | +| [applyOverrideConfiguration(Configuration arg0)](#applyOverrideConfiguration-android.content.res.Configuration-) | | +| [bindIsolatedService(Intent arg0, int arg1, String arg2, Executor arg3, ServiceConnection arg4)](#bindIsolatedService-android.content.Intent-int-java.lang.String-java.util.concurrent.Executor-android.content.ServiceConnection-) | | +| [bindService(Intent arg0, ServiceConnection arg1, int arg2)](#bindService-android.content.Intent-android.content.ServiceConnection-int-) | | +| [bindService(Intent arg0, int arg1, Executor arg2, ServiceConnection arg3)](#bindService-android.content.Intent-int-java.util.concurrent.Executor-android.content.ServiceConnection-) | | +| [bindServiceAsUser(Intent arg0, ServiceConnection arg1, int arg2, UserHandle arg3)](#bindServiceAsUser-android.content.Intent-android.content.ServiceConnection-int-android.os.UserHandle-) | | +| [checkCallingOrSelfPermission(String arg0)](#checkCallingOrSelfPermission-java.lang.String-) | | +| [checkCallingOrSelfUriPermission(Uri arg0, int arg1)](#checkCallingOrSelfUriPermission-android.net.Uri-int-) | | +| [checkCallingOrSelfUriPermissions(List arg0, int arg1)](#checkCallingOrSelfUriPermissions-java.util.List-android.net.Uri--int-) | | +| [checkCallingPermission(String arg0)](#checkCallingPermission-java.lang.String-) | | +| [checkCallingUriPermission(Uri arg0, int arg1)](#checkCallingUriPermission-android.net.Uri-int-) | | +| [checkCallingUriPermissions(List arg0, int arg1)](#checkCallingUriPermissions-java.util.List-android.net.Uri--int-) | | +| [checkPermission(String arg0, int arg1, int arg2)](#checkPermission-java.lang.String-int-int-) | | +| [checkSelfPermission(String arg0)](#checkSelfPermission-java.lang.String-) | | +| [checkUriPermission(Uri arg0, int arg1, int arg2, int arg3)](#checkUriPermission-android.net.Uri-int-int-int-) | | +| [checkUriPermission(Uri arg0, String arg1, String arg2, int arg3, int arg4, int arg5)](#checkUriPermission-android.net.Uri-java.lang.String-java.lang.String-int-int-int-) | | +| [checkUriPermissions(List arg0, int arg1, int arg2, int arg3)](#checkUriPermissions-java.util.List-android.net.Uri--int-int-int-) | | +| [clearWallpaper()](#clearWallpaper--) | | +| [closeContextMenu()](#closeContextMenu--) | | +| [closeOptionsMenu()](#closeOptionsMenu--) | | +| [createAttributionContext(String arg0)](#createAttributionContext-java.lang.String-) | | +| [createConfigurationContext(Configuration arg0)](#createConfigurationContext-android.content.res.Configuration-) | | +| [createContext(ContextParams arg0)](#createContext-android.content.ContextParams-) | | +| [createContextForSplit(String arg0)](#createContextForSplit-java.lang.String-) | | +| [createDeviceProtectedStorageContext()](#createDeviceProtectedStorageContext--) | | +| [createDisplayContext(Display arg0)](#createDisplayContext-android.view.Display-) | | +| [createPackageContext(String arg0, int arg1)](#createPackageContext-java.lang.String-int-) | | +| [createPendingResult(int arg0, Intent arg1, int arg2)](#createPendingResult-int-android.content.Intent-int-) | | +| [createWindowContext(Display arg0, int arg1, Bundle arg2)](#createWindowContext-android.view.Display-int-android.os.Bundle-) | | +| [createWindowContext(int arg0, Bundle arg1)](#createWindowContext-int-android.os.Bundle-) | | +| [databaseList()](#databaseList--) | | +| [deleteDatabase(String arg0)](#deleteDatabase-java.lang.String-) | | +| [deleteFile(String arg0)](#deleteFile-java.lang.String-) | | +| [deleteSharedPreferences(String arg0)](#deleteSharedPreferences-java.lang.String-) | | +| [dismissDialog(int arg0)](#dismissDialog-int-) | | +| [dismissKeyboardShortcutsHelper()](#dismissKeyboardShortcutsHelper--) | | +| [dispatchGenericMotionEvent(MotionEvent arg0)](#dispatchGenericMotionEvent-android.view.MotionEvent-) | | +| [dispatchKeyEvent(KeyEvent arg0)](#dispatchKeyEvent-android.view.KeyEvent-) | | +| [dispatchKeyShortcutEvent(KeyEvent arg0)](#dispatchKeyShortcutEvent-android.view.KeyEvent-) | | +| [dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0)](#dispatchPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-) | | +| [dispatchTouchEvent(MotionEvent arg0)](#dispatchTouchEvent-android.view.MotionEvent-) | | +| [dispatchTrackballEvent(MotionEvent arg0)](#dispatchTrackballEvent-android.view.MotionEvent-) | | +| [dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3)](#dump-java.lang.String-java.io.FileDescriptor-java.io.PrintWriter-java.lang.String---) | | +| [enforceCallingOrSelfPermission(String arg0, String arg1)](#enforceCallingOrSelfPermission-java.lang.String-java.lang.String-) | | +| [enforceCallingOrSelfUriPermission(Uri arg0, int arg1, String arg2)](#enforceCallingOrSelfUriPermission-android.net.Uri-int-java.lang.String-) | | +| [enforceCallingPermission(String arg0, String arg1)](#enforceCallingPermission-java.lang.String-java.lang.String-) | | +| [enforceCallingUriPermission(Uri arg0, int arg1, String arg2)](#enforceCallingUriPermission-android.net.Uri-int-java.lang.String-) | | +| [enforcePermission(String arg0, int arg1, int arg2, String arg3)](#enforcePermission-java.lang.String-int-int-java.lang.String-) | | +| [enforceUriPermission(Uri arg0, int arg1, int arg2, int arg3, String arg4)](#enforceUriPermission-android.net.Uri-int-int-int-java.lang.String-) | | +| [enforceUriPermission(Uri arg0, String arg1, String arg2, int arg3, int arg4, int arg5, String arg6)](#enforceUriPermission-android.net.Uri-java.lang.String-java.lang.String-int-int-int-java.lang.String-) | | +| [enterPictureInPictureMode()](#enterPictureInPictureMode--) | | +| [enterPictureInPictureMode(PictureInPictureParams arg0)](#enterPictureInPictureMode-android.app.PictureInPictureParams-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fileList()](#fileList--) | | +| [finish()](#finish--) | | +| [finishActivity(int arg0)](#finishActivity-int-) | | +| [finishActivityFromChild(Activity arg0, int arg1)](#finishActivityFromChild-android.app.Activity-int-) | | +| [finishAffinity()](#finishAffinity--) | | +| [finishAfterTransition()](#finishAfterTransition--) | | +| [finishAndRemoveTask()](#finishAndRemoveTask--) | | +| [finishFromChild(Activity arg0)](#finishFromChild-android.app.Activity-) | | +| [getActionBar()](#getActionBar--) | | +| [getActivityResultRegistry()](#getActivityResultRegistry--) | | +| [getApplication()](#getApplication--) | | +| [getApplicationContext()](#getApplicationContext--) | | +| [getApplicationInfo()](#getApplicationInfo--) | | +| [getAssets()](#getAssets--) | | +| [getAttributionSource()](#getAttributionSource--) | | +| [getAttributionTag()](#getAttributionTag--) | | +| [getBaseContext()](#getBaseContext--) | | +| [getCacheDir()](#getCacheDir--) | | +| [getCallingActivity()](#getCallingActivity--) | | +| [getCallingPackage()](#getCallingPackage--) | | +| [getChangingConfigurations()](#getChangingConfigurations--) | | +| [getClass()](#getClass--) | | +| [getClassLoader()](#getClassLoader--) | | +| [getCodeCacheDir()](#getCodeCacheDir--) | | +| [getColor(int arg0)](#getColor-int-) | | +| [getColorStateList(int arg0)](#getColorStateList-int-) | | +| [getComponentName()](#getComponentName--) | | +| [getContentResolver()](#getContentResolver--) | | +| [getContentScene()](#getContentScene--) | | +| [getContentTransitionManager()](#getContentTransitionManager--) | | +| [getCurrentFocus()](#getCurrentFocus--) | | +| [getDataDir()](#getDataDir--) | | +| [getDatabasePath(String arg0)](#getDatabasePath-java.lang.String-) | | +| [getDefaultViewModelCreationExtras()](#getDefaultViewModelCreationExtras--) | | +| [getDefaultViewModelProviderFactory()](#getDefaultViewModelProviderFactory--) | | +| [getDelegate()](#getDelegate--) | | +| [getDir(String arg0, int arg1)](#getDir-java.lang.String-int-) | | +| [getDisplay()](#getDisplay--) | | +| [getDrawable(int arg0)](#getDrawable-int-) | | +| [getDrawerToggleDelegate()](#getDrawerToggleDelegate--) | | +| [getExternalCacheDir()](#getExternalCacheDir--) | | +| [getExternalCacheDirs()](#getExternalCacheDirs--) | | +| [getExternalFilesDir(String arg0)](#getExternalFilesDir-java.lang.String-) | | +| [getExternalFilesDirs(String arg0)](#getExternalFilesDirs-java.lang.String-) | | +| [getExternalMediaDirs()](#getExternalMediaDirs--) | | +| [getFileStreamPath(String arg0)](#getFileStreamPath-java.lang.String-) | | +| [getFilesDir()](#getFilesDir--) | | +| [getFragmentManager()](#getFragmentManager--) | | +| [getIntent()](#getIntent--) | | +| [getLastCustomNonConfigurationInstance()](#getLastCustomNonConfigurationInstance--) | | +| [getLastNonConfigurationInstance()](#getLastNonConfigurationInstance--) | | +| [getLayoutInflater()](#getLayoutInflater--) | | +| [getLifecycle()](#getLifecycle--) | | +| [getLoaderManager()](#getLoaderManager--) | | +| [getLocalClassName()](#getLocalClassName--) | | +| [getMainExecutor()](#getMainExecutor--) | | +| [getMainLooper()](#getMainLooper--) | | +| [getMaxNumPictureInPictureActions()](#getMaxNumPictureInPictureActions--) | | +| [getMediaController()](#getMediaController--) | | +| [getMenuInflater()](#getMenuInflater--) | | +| [getNoBackupFilesDir()](#getNoBackupFilesDir--) | | +| [getObbDir()](#getObbDir--) | | +| [getObbDirs()](#getObbDirs--) | | +| [getOnBackInvokedDispatcher()](#getOnBackInvokedDispatcher--) | | +| [getOnBackPressedDispatcher()](#getOnBackPressedDispatcher--) | | +| [getOpPackageName()](#getOpPackageName--) | | +| [getPackageCodePath()](#getPackageCodePath--) | | +| [getPackageManager()](#getPackageManager--) | | +| [getPackageName()](#getPackageName--) | | +| [getPackageResourcePath()](#getPackageResourcePath--) | | +| [getParams()](#getParams--) | | +| [getParent()](#getParent--) | | +| [getParentActivityIntent()](#getParentActivityIntent--) | | +| [getPreferences(int arg0)](#getPreferences-int-) | | +| [getReferrer()](#getReferrer--) | | +| [getRequestedOrientation()](#getRequestedOrientation--) | | +| [getResources()](#getResources--) | | +| [getSavedStateRegistry()](#getSavedStateRegistry--) | | +| [getSearchEvent()](#getSearchEvent--) | | +| [getSharedPreferences(String arg0, int arg1)](#getSharedPreferences-java.lang.String-int-) | | +| [getSplashScreen()](#getSplashScreen--) | | +| [getString(int arg0)](#getString-int-) | | +| [getString(int arg0, Object[] arg1)](#getString-int-java.lang.Object...-) | | +| [getSupportActionBar()](#getSupportActionBar--) | | +| [getSupportFragmentManager()](#getSupportFragmentManager--) | | +| [getSupportLoaderManager()](#getSupportLoaderManager--) | | +| [getSupportParentActivityIntent()](#getSupportParentActivityIntent--) | | +| [getSystemService(String arg0)](#getSystemService-java.lang.String-) | | +| [getSystemServiceName(Class arg0)](#getSystemServiceName-java.lang.Class----) | | +| [getTaskId()](#getTaskId--) | | +| [getText(int arg0)](#getText-int-) | | +| [getTheme()](#getTheme--) | | +| [getTitle()](#getTitle--) | | +| [getTitleColor()](#getTitleColor--) | | +| [getViewModelStore()](#getViewModelStore--) | | +| [getVoiceInteractor()](#getVoiceInteractor--) | | +| [getVolumeControlStream()](#getVolumeControlStream--) | | +| [getWallpaper()](#getWallpaper--) | | +| [getWallpaperDesiredMinimumHeight()](#getWallpaperDesiredMinimumHeight--) | | +| [getWallpaperDesiredMinimumWidth()](#getWallpaperDesiredMinimumWidth--) | | +| [getWindow()](#getWindow--) | | +| [getWindowManager()](#getWindowManager--) | | +| [grantUriPermission(String arg0, Uri arg1, int arg2)](#grantUriPermission-java.lang.String-android.net.Uri-int-) | | +| [hasWindowFocus()](#hasWindowFocus--) | | +| [hashCode()](#hashCode--) | | +| [invalidateMenu()](#invalidateMenu--) | | +| [invalidateOptionsMenu()](#invalidateOptionsMenu--) | | +| [isActivityTransitionRunning()](#isActivityTransitionRunning--) | | +| [isChangingConfigurations()](#isChangingConfigurations--) | | +| [isChild()](#isChild--) | | +| [isDestroyed()](#isDestroyed--) | | +| [isDeviceProtectedStorage()](#isDeviceProtectedStorage--) | | +| [isFinishing()](#isFinishing--) | | +| [isImmersive()](#isImmersive--) | | +| [isInMultiWindowMode()](#isInMultiWindowMode--) | | +| [isInPictureInPictureMode()](#isInPictureInPictureMode--) | | +| [isLaunchedFromBubble()](#isLaunchedFromBubble--) | | +| [isLocalVoiceInteractionSupported()](#isLocalVoiceInteractionSupported--) | | +| [isRestricted()](#isRestricted--) | | +| [isTaskRoot()](#isTaskRoot--) | | +| [isUiContext()](#isUiContext--) | | +| [isVoiceInteraction()](#isVoiceInteraction--) | | +| [isVoiceInteractionRoot()](#isVoiceInteractionRoot--) | | +| [managedQuery(Uri arg0, String[] arg1, String arg2, String[] arg3, String arg4)](#managedQuery-android.net.Uri-java.lang.String---java.lang.String-java.lang.String---java.lang.String-) | | +| [moveDatabaseFrom(Context arg0, String arg1)](#moveDatabaseFrom-android.content.Context-java.lang.String-) | | +| [moveSharedPreferencesFrom(Context arg0, String arg1)](#moveSharedPreferencesFrom-android.content.Context-java.lang.String-) | | +| [moveTaskToBack(boolean arg0)](#moveTaskToBack-boolean-) | | +| [navigateUpTo(Intent arg0)](#navigateUpTo-android.content.Intent-) | | +| [navigateUpToFromChild(Activity arg0, Intent arg1)](#navigateUpToFromChild-android.app.Activity-android.content.Intent-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [obtainStyledAttributes(AttributeSet arg0, int[] arg1)](#obtainStyledAttributes-android.util.AttributeSet-int---) | | +| [obtainStyledAttributes(AttributeSet arg0, int[] arg1, int arg2, int arg3)](#obtainStyledAttributes-android.util.AttributeSet-int---int-int-) | | +| [obtainStyledAttributes(int arg0, int[] arg1)](#obtainStyledAttributes-int-int---) | | +| [obtainStyledAttributes(int[] arg0)](#obtainStyledAttributes-int---) | | +| [onActionModeFinished(ActionMode arg0)](#onActionModeFinished-android.view.ActionMode-) | | +| [onActionModeStarted(ActionMode arg0)](#onActionModeStarted-android.view.ActionMode-) | | +| [onActivityReenter(int arg0, Intent arg1)](#onActivityReenter-int-android.content.Intent-) | | +| [onAttachFragment(Fragment arg0)](#onAttachFragment-android.app.Fragment-) | | +| [onAttachFragment(Fragment arg0)](#onAttachFragment-androidx.fragment.app.Fragment-) | | +| [onAttachedToWindow()](#onAttachedToWindow--) | | +| [onBackPressed()](#onBackPressed--) | | +| [onConfigurationChanged(Configuration arg0)](#onConfigurationChanged-android.content.res.Configuration-) | | +| [onContentChanged()](#onContentChanged--) | | +| [onContextItemSelected(MenuItem arg0)](#onContextItemSelected-android.view.MenuItem-) | | +| [onContextMenuClosed(Menu arg0)](#onContextMenuClosed-android.view.Menu-) | | +| [onCreate(Bundle arg0, PersistableBundle arg1)](#onCreate-android.os.Bundle-android.os.PersistableBundle-) | | +| [onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2)](#onCreateContextMenu-android.view.ContextMenu-android.view.View-android.view.ContextMenu.ContextMenuInfo-) | | +| [onCreateDescription()](#onCreateDescription--) | | +| [onCreateNavigateUpTaskStack(TaskStackBuilder arg0)](#onCreateNavigateUpTaskStack-android.app.TaskStackBuilder-) | | +| [onCreateOptionsMenu(Menu arg0)](#onCreateOptionsMenu-android.view.Menu-) | | +| [onCreatePanelMenu(int arg0, Menu arg1)](#onCreatePanelMenu-int-android.view.Menu-) | | +| [onCreatePanelView(int arg0)](#onCreatePanelView-int-) | | +| [onCreateSupportNavigateUpTaskStack(TaskStackBuilder arg0)](#onCreateSupportNavigateUpTaskStack-androidx.core.app.TaskStackBuilder-) | | +| [onCreateThumbnail(Bitmap arg0, Canvas arg1)](#onCreateThumbnail-android.graphics.Bitmap-android.graphics.Canvas-) | | +| [onCreateView(View arg0, String arg1, Context arg2, AttributeSet arg3)](#onCreateView-android.view.View-java.lang.String-android.content.Context-android.util.AttributeSet-) | | +| [onCreateView(String arg0, Context arg1, AttributeSet arg2)](#onCreateView-java.lang.String-android.content.Context-android.util.AttributeSet-) | | +| [onDetachedFromWindow()](#onDetachedFromWindow--) | | +| [onEnterAnimationComplete()](#onEnterAnimationComplete--) | | +| [onGenericMotionEvent(MotionEvent arg0)](#onGenericMotionEvent-android.view.MotionEvent-) | | +| [onGetDirectActions(CancellationSignal arg0, Consumer> arg1)](#onGetDirectActions-android.os.CancellationSignal-java.util.function.Consumer-java.util.List-android.app.DirectAction---) | | +| [onKeyDown(int arg0, KeyEvent arg1)](#onKeyDown-int-android.view.KeyEvent-) | | +| [onKeyLongPress(int arg0, KeyEvent arg1)](#onKeyLongPress-int-android.view.KeyEvent-) | | +| [onKeyMultiple(int arg0, int arg1, KeyEvent arg2)](#onKeyMultiple-int-int-android.view.KeyEvent-) | | +| [onKeyShortcut(int arg0, KeyEvent arg1)](#onKeyShortcut-int-android.view.KeyEvent-) | | +| [onKeyUp(int arg0, KeyEvent arg1)](#onKeyUp-int-android.view.KeyEvent-) | | +| [onLocalVoiceInteractionStarted()](#onLocalVoiceInteractionStarted--) | | +| [onLocalVoiceInteractionStopped()](#onLocalVoiceInteractionStopped--) | | +| [onLowMemory()](#onLowMemory--) | | +| [onMenuItemSelected(int arg0, MenuItem arg1)](#onMenuItemSelected-int-android.view.MenuItem-) | | +| [onMenuOpened(int arg0, Menu arg1)](#onMenuOpened-int-android.view.Menu-) | | +| [onMultiWindowModeChanged(boolean arg0)](#onMultiWindowModeChanged-boolean-) | | +| [onMultiWindowModeChanged(boolean arg0, Configuration arg1)](#onMultiWindowModeChanged-boolean-android.content.res.Configuration-) | | +| [onNavigateUp()](#onNavigateUp--) | | +| [onNavigateUpFromChild(Activity arg0)](#onNavigateUpFromChild-android.app.Activity-) | | +| [onOptionsItemSelected(MenuItem arg0)](#onOptionsItemSelected-android.view.MenuItem-) | | +| [onOptionsMenuClosed(Menu arg0)](#onOptionsMenuClosed-android.view.Menu-) | | +| [onPanelClosed(int arg0, Menu arg1)](#onPanelClosed-int-android.view.Menu-) | | +| [onPerformDirectAction(String arg0, Bundle arg1, CancellationSignal arg2, Consumer arg3)](#onPerformDirectAction-java.lang.String-android.os.Bundle-android.os.CancellationSignal-java.util.function.Consumer-android.os.Bundle--) | | +| [onPictureInPictureModeChanged(boolean arg0)](#onPictureInPictureModeChanged-boolean-) | | +| [onPictureInPictureModeChanged(boolean arg0, Configuration arg1)](#onPictureInPictureModeChanged-boolean-android.content.res.Configuration-) | | +| [onPictureInPictureRequested()](#onPictureInPictureRequested--) | | +| [onPictureInPictureUiStateChanged(PictureInPictureUiState arg0)](#onPictureInPictureUiStateChanged-android.app.PictureInPictureUiState-) | | +| [onPostCreate(Bundle arg0, PersistableBundle arg1)](#onPostCreate-android.os.Bundle-android.os.PersistableBundle-) | | +| [onPrepareNavigateUpTaskStack(TaskStackBuilder arg0)](#onPrepareNavigateUpTaskStack-android.app.TaskStackBuilder-) | | +| [onPrepareOptionsMenu(Menu arg0)](#onPrepareOptionsMenu-android.view.Menu-) | | +| [onPreparePanel(int arg0, View arg1, Menu arg2)](#onPreparePanel-int-android.view.View-android.view.Menu-) | | +| [onPrepareSupportNavigateUpTaskStack(TaskStackBuilder arg0)](#onPrepareSupportNavigateUpTaskStack-androidx.core.app.TaskStackBuilder-) | | +| [onProvideAssistContent(AssistContent arg0)](#onProvideAssistContent-android.app.assist.AssistContent-) | | +| [onProvideAssistData(Bundle arg0)](#onProvideAssistData-android.os.Bundle-) | | +| [onProvideKeyboardShortcuts(List arg0, Menu arg1, int arg2)](#onProvideKeyboardShortcuts-java.util.List-android.view.KeyboardShortcutGroup--android.view.Menu-int-) | | +| [onProvideReferrer()](#onProvideReferrer--) | | +| [onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults)](#onRequestPermissionsResult-int-java.lang.String---int---) | | +| [onRestoreInstanceState(Bundle arg0, PersistableBundle arg1)](#onRestoreInstanceState-android.os.Bundle-android.os.PersistableBundle-) | | +| [onRetainCustomNonConfigurationInstance()](#onRetainCustomNonConfigurationInstance--) | | +| [onRetainNonConfigurationInstance()](#onRetainNonConfigurationInstance--) | | +| [onSaveInstanceState(Bundle arg0, PersistableBundle arg1)](#onSaveInstanceState-android.os.Bundle-android.os.PersistableBundle-) | | +| [onSearchRequested()](#onSearchRequested--) | | +| [onSearchRequested(SearchEvent arg0)](#onSearchRequested-android.view.SearchEvent-) | | +| [onStateNotSaved()](#onStateNotSaved--) | | +| [onSupportActionModeFinished(ActionMode arg0)](#onSupportActionModeFinished-androidx.appcompat.view.ActionMode-) | | +| [onSupportActionModeStarted(ActionMode arg0)](#onSupportActionModeStarted-androidx.appcompat.view.ActionMode-) | | +| [onSupportContentChanged()](#onSupportContentChanged--) | | +| [onSupportNavigateUp()](#onSupportNavigateUp--) | | +| [onTopResumedActivityChanged(boolean arg0)](#onTopResumedActivityChanged-boolean-) | | +| [onTouchEvent(MotionEvent arg0)](#onTouchEvent-android.view.MotionEvent-) | | +| [onTrackballEvent(MotionEvent arg0)](#onTrackballEvent-android.view.MotionEvent-) | | +| [onTrimMemory(int arg0)](#onTrimMemory-int-) | | +| [onUserInteraction()](#onUserInteraction--) | | +| [onVisibleBehindCanceled()](#onVisibleBehindCanceled--) | | +| [onWindowAttributesChanged(WindowManager.LayoutParams arg0)](#onWindowAttributesChanged-android.view.WindowManager.LayoutParams-) | | +| [onWindowFocusChanged(boolean arg0)](#onWindowFocusChanged-boolean-) | | +| [onWindowStartingActionMode(ActionMode.Callback arg0)](#onWindowStartingActionMode-android.view.ActionMode.Callback-) | | +| [onWindowStartingActionMode(ActionMode.Callback arg0, int arg1)](#onWindowStartingActionMode-android.view.ActionMode.Callback-int-) | | +| [onWindowStartingSupportActionMode(ActionMode.Callback arg0)](#onWindowStartingSupportActionMode-androidx.appcompat.view.ActionMode.Callback-) | | +| [openContextMenu(View arg0)](#openContextMenu-android.view.View-) | | +| [openFileInput(String arg0)](#openFileInput-java.lang.String-) | | +| [openFileOutput(String arg0, int arg1)](#openFileOutput-java.lang.String-int-) | | +| [openOptionsMenu()](#openOptionsMenu--) | | +| [openOrCreateDatabase(String arg0, int arg1, SQLiteDatabase.CursorFactory arg2)](#openOrCreateDatabase-java.lang.String-int-android.database.sqlite.SQLiteDatabase.CursorFactory-) | | +| [openOrCreateDatabase(String arg0, int arg1, SQLiteDatabase.CursorFactory arg2, DatabaseErrorHandler arg3)](#openOrCreateDatabase-java.lang.String-int-android.database.sqlite.SQLiteDatabase.CursorFactory-android.database.DatabaseErrorHandler-) | | +| [overridePendingTransition(int arg0, int arg1)](#overridePendingTransition-int-int-) | | +| [overridePendingTransition(int arg0, int arg1, int arg2)](#overridePendingTransition-int-int-int-) | | +| [peekAvailableContext()](#peekAvailableContext--) | | +| [peekWallpaper()](#peekWallpaper--) | | +| [postponeEnterTransition()](#postponeEnterTransition--) | | +| [putExtraData(ComponentActivity.ExtraData arg0)](#putExtraData-androidx.core.app.ComponentActivity.ExtraData-) | | +| [recreate()](#recreate--) | | +| [registerActivityLifecycleCallbacks(Application.ActivityLifecycleCallbacks arg0)](#registerActivityLifecycleCallbacks-android.app.Application.ActivityLifecycleCallbacks-) | | +| [registerComponentCallbacks(ComponentCallbacks arg0)](#registerComponentCallbacks-android.content.ComponentCallbacks-) | | +| [registerForContextMenu(View arg0)](#registerForContextMenu-android.view.View-) | | +| [registerReceiver(BroadcastReceiver arg0, IntentFilter arg1)](#registerReceiver-android.content.BroadcastReceiver-android.content.IntentFilter-) | | +| [registerReceiver(BroadcastReceiver arg0, IntentFilter arg1, int arg2)](#registerReceiver-android.content.BroadcastReceiver-android.content.IntentFilter-int-) | | +| [registerReceiver(BroadcastReceiver arg0, IntentFilter arg1, String arg2, Handler arg3)](#registerReceiver-android.content.BroadcastReceiver-android.content.IntentFilter-java.lang.String-android.os.Handler-) | | +| [registerReceiver(BroadcastReceiver arg0, IntentFilter arg1, String arg2, Handler arg3, int arg4)](#registerReceiver-android.content.BroadcastReceiver-android.content.IntentFilter-java.lang.String-android.os.Handler-int-) | | +| [releaseInstance()](#releaseInstance--) | | +| [removeDialog(int arg0)](#removeDialog-int-) | | +| [removeMenuProvider(MenuProvider arg0)](#removeMenuProvider-androidx.core.view.MenuProvider-) | | +| [removeOnConfigurationChangedListener(Consumer arg0)](#removeOnConfigurationChangedListener-androidx.core.util.Consumer-android.content.res.Configuration--) | | +| [removeOnContextAvailableListener(OnContextAvailableListener arg0)](#removeOnContextAvailableListener-androidx.activity.contextaware.OnContextAvailableListener-) | | +| [removeOnMultiWindowModeChangedListener(Consumer arg0)](#removeOnMultiWindowModeChangedListener-androidx.core.util.Consumer-androidx.core.app.MultiWindowModeChangedInfo--) | | +| [removeOnNewIntentListener(Consumer arg0)](#removeOnNewIntentListener-androidx.core.util.Consumer-android.content.Intent--) | | +| [removeOnPictureInPictureModeChangedListener(Consumer arg0)](#removeOnPictureInPictureModeChangedListener-androidx.core.util.Consumer-androidx.core.app.PictureInPictureModeChangedInfo--) | | +| [removeOnTrimMemoryListener(Consumer arg0)](#removeOnTrimMemoryListener-androidx.core.util.Consumer-java.lang.Integer--) | | +| [removeStickyBroadcast(Intent arg0)](#removeStickyBroadcast-android.content.Intent-) | | +| [removeStickyBroadcastAsUser(Intent arg0, UserHandle arg1)](#removeStickyBroadcastAsUser-android.content.Intent-android.os.UserHandle-) | | +| [reportFullyDrawn()](#reportFullyDrawn--) | | +| [requestDragAndDropPermissions(DragEvent arg0)](#requestDragAndDropPermissions-android.view.DragEvent-) | | +| [requestPermissions(String[] arg0, int arg1)](#requestPermissions-java.lang.String---int-) | | +| [requestShowKeyboardShortcuts()](#requestShowKeyboardShortcuts--) | | +| [requestVisibleBehind(boolean arg0)](#requestVisibleBehind-boolean-) | | +| [requestWindowFeature(int arg0)](#requestWindowFeature-int-) | | +| [revokeSelfPermissionOnKill(String arg0)](#revokeSelfPermissionOnKill-java.lang.String-) | | +| [revokeSelfPermissionsOnKill(Collection arg0)](#revokeSelfPermissionsOnKill-java.util.Collection-java.lang.String--) | | +| [revokeUriPermission(Uri arg0, int arg1)](#revokeUriPermission-android.net.Uri-int-) | | +| [revokeUriPermission(String arg0, Uri arg1, int arg2)](#revokeUriPermission-java.lang.String-android.net.Uri-int-) | | +| [runOnUiThread(Runnable arg0)](#runOnUiThread-java.lang.Runnable-) | | +| [sendBroadcast(Intent arg0)](#sendBroadcast-android.content.Intent-) | | +| [sendBroadcast(Intent arg0, String arg1)](#sendBroadcast-android.content.Intent-java.lang.String-) | | +| [sendBroadcastAsUser(Intent arg0, UserHandle arg1)](#sendBroadcastAsUser-android.content.Intent-android.os.UserHandle-) | | +| [sendBroadcastAsUser(Intent arg0, UserHandle arg1, String arg2)](#sendBroadcastAsUser-android.content.Intent-android.os.UserHandle-java.lang.String-) | | +| [sendBroadcastWithMultiplePermissions(Intent arg0, String[] arg1)](#sendBroadcastWithMultiplePermissions-android.content.Intent-java.lang.String---) | | +| [sendOrderedBroadcast(Intent arg0, int arg1, String arg2, String arg3, BroadcastReceiver arg4, Handler arg5, String arg6, Bundle arg7, Bundle arg8)](#sendOrderedBroadcast-android.content.Intent-int-java.lang.String-java.lang.String-android.content.BroadcastReceiver-android.os.Handler-java.lang.String-android.os.Bundle-android.os.Bundle-) | | +| [sendOrderedBroadcast(Intent arg0, String arg1)](#sendOrderedBroadcast-android.content.Intent-java.lang.String-) | | +| [sendOrderedBroadcast(Intent arg0, String arg1, BroadcastReceiver arg2, Handler arg3, int arg4, String arg5, Bundle arg6)](#sendOrderedBroadcast-android.content.Intent-java.lang.String-android.content.BroadcastReceiver-android.os.Handler-int-java.lang.String-android.os.Bundle-) | | +| [sendOrderedBroadcast(Intent arg0, String arg1, String arg2, BroadcastReceiver arg3, Handler arg4, int arg5, String arg6, Bundle arg7)](#sendOrderedBroadcast-android.content.Intent-java.lang.String-java.lang.String-android.content.BroadcastReceiver-android.os.Handler-int-java.lang.String-android.os.Bundle-) | | +| [sendOrderedBroadcastAsUser(Intent arg0, UserHandle arg1, String arg2, BroadcastReceiver arg3, Handler arg4, int arg5, String arg6, Bundle arg7)](#sendOrderedBroadcastAsUser-android.content.Intent-android.os.UserHandle-java.lang.String-android.content.BroadcastReceiver-android.os.Handler-int-java.lang.String-android.os.Bundle-) | | +| [sendStickyBroadcast(Intent arg0)](#sendStickyBroadcast-android.content.Intent-) | | +| [sendStickyBroadcast(Intent arg0, Bundle arg1)](#sendStickyBroadcast-android.content.Intent-android.os.Bundle-) | | +| [sendStickyBroadcastAsUser(Intent arg0, UserHandle arg1)](#sendStickyBroadcastAsUser-android.content.Intent-android.os.UserHandle-) | | +| [sendStickyOrderedBroadcast(Intent arg0, BroadcastReceiver arg1, Handler arg2, int arg3, String arg4, Bundle arg5)](#sendStickyOrderedBroadcast-android.content.Intent-android.content.BroadcastReceiver-android.os.Handler-int-java.lang.String-android.os.Bundle-) | | +| [sendStickyOrderedBroadcastAsUser(Intent arg0, UserHandle arg1, BroadcastReceiver arg2, Handler arg3, int arg4, String arg5, Bundle arg6)](#sendStickyOrderedBroadcastAsUser-android.content.Intent-android.os.UserHandle-android.content.BroadcastReceiver-android.os.Handler-int-java.lang.String-android.os.Bundle-) | | +| [setActionBar(Toolbar arg0)](#setActionBar-android.widget.Toolbar-) | | +| [setContentTransitionManager(TransitionManager arg0)](#setContentTransitionManager-android.transition.TransitionManager-) | | +| [setContentView(View arg0)](#setContentView-android.view.View-) | | +| [setContentView(View arg0, ViewGroup.LayoutParams arg1)](#setContentView-android.view.View-android.view.ViewGroup.LayoutParams-) | | +| [setContentView(int arg0)](#setContentView-int-) | | +| [setDefaultKeyMode(int arg0)](#setDefaultKeyMode-int-) | | +| [setEnterSharedElementCallback(SharedElementCallback arg0)](#setEnterSharedElementCallback-android.app.SharedElementCallback-) | | +| [setEnterSharedElementCallback(SharedElementCallback arg0)](#setEnterSharedElementCallback-androidx.core.app.SharedElementCallback-) | | +| [setExitSharedElementCallback(SharedElementCallback arg0)](#setExitSharedElementCallback-android.app.SharedElementCallback-) | | +| [setExitSharedElementCallback(SharedElementCallback arg0)](#setExitSharedElementCallback-androidx.core.app.SharedElementCallback-) | | +| [setFeatureDrawable(int arg0, Drawable arg1)](#setFeatureDrawable-int-android.graphics.drawable.Drawable-) | | +| [setFeatureDrawableAlpha(int arg0, int arg1)](#setFeatureDrawableAlpha-int-int-) | | +| [setFeatureDrawableResource(int arg0, int arg1)](#setFeatureDrawableResource-int-int-) | | +| [setFeatureDrawableUri(int arg0, Uri arg1)](#setFeatureDrawableUri-int-android.net.Uri-) | | +| [setFinishOnTouchOutside(boolean arg0)](#setFinishOnTouchOutside-boolean-) | | +| [setImmersive(boolean arg0)](#setImmersive-boolean-) | | +| [setInheritShowWhenLocked(boolean arg0)](#setInheritShowWhenLocked-boolean-) | | +| [setIntent(Intent arg0)](#setIntent-android.content.Intent-) | | +| [setLocusContext(LocusId arg0, Bundle arg1)](#setLocusContext-android.content.LocusId-android.os.Bundle-) | | +| [setMediaController(MediaController arg0)](#setMediaController-android.media.session.MediaController-) | | +| [setPictureInPictureParams(PictureInPictureParams arg0)](#setPictureInPictureParams-android.app.PictureInPictureParams-) | | +| [setProgress(int arg0)](#setProgress-int-) | | +| [setProgressBarIndeterminate(boolean arg0)](#setProgressBarIndeterminate-boolean-) | | +| [setProgressBarIndeterminateVisibility(boolean arg0)](#setProgressBarIndeterminateVisibility-boolean-) | | +| [setProgressBarVisibility(boolean arg0)](#setProgressBarVisibility-boolean-) | | +| [setRecentsScreenshotEnabled(boolean arg0)](#setRecentsScreenshotEnabled-boolean-) | | +| [setRequestedOrientation(int arg0)](#setRequestedOrientation-int-) | | +| [setResult(int arg0)](#setResult-int-) | | +| [setResult(int arg0, Intent arg1)](#setResult-int-android.content.Intent-) | | +| [setSecondaryProgress(int arg0)](#setSecondaryProgress-int-) | | +| [setShouldDockBigOverlays(boolean arg0)](#setShouldDockBigOverlays-boolean-) | | +| [setShowWhenLocked(boolean arg0)](#setShowWhenLocked-boolean-) | | +| [setSupportActionBar(Toolbar arg0)](#setSupportActionBar-androidx.appcompat.widget.Toolbar-) | | +| [setSupportProgress(int arg0)](#setSupportProgress-int-) | | +| [setSupportProgressBarIndeterminate(boolean arg0)](#setSupportProgressBarIndeterminate-boolean-) | | +| [setSupportProgressBarIndeterminateVisibility(boolean arg0)](#setSupportProgressBarIndeterminateVisibility-boolean-) | | +| [setSupportProgressBarVisibility(boolean arg0)](#setSupportProgressBarVisibility-boolean-) | | +| [setTaskDescription(ActivityManager.TaskDescription arg0)](#setTaskDescription-android.app.ActivityManager.TaskDescription-) | | +| [setTheme(Resources.Theme arg0)](#setTheme-android.content.res.Resources.Theme-) | | +| [setTheme(int arg0)](#setTheme-int-) | | +| [setTitle(int arg0)](#setTitle-int-) | | +| [setTitle(CharSequence arg0)](#setTitle-java.lang.CharSequence-) | | +| [setTitleColor(int arg0)](#setTitleColor-int-) | | +| [setTranslucent(boolean arg0)](#setTranslucent-boolean-) | | +| [setTurnScreenOn(boolean arg0)](#setTurnScreenOn-boolean-) | | +| [setVisible(boolean arg0)](#setVisible-boolean-) | | +| [setVolumeControlStream(int arg0)](#setVolumeControlStream-int-) | | +| [setVrModeEnabled(boolean arg0, ComponentName arg1)](#setVrModeEnabled-boolean-android.content.ComponentName-) | | +| [setWallpaper(Bitmap arg0)](#setWallpaper-android.graphics.Bitmap-) | | +| [setWallpaper(InputStream arg0)](#setWallpaper-java.io.InputStream-) | | +| [shouldDockBigOverlays()](#shouldDockBigOverlays--) | | +| [shouldShowRequestPermissionRationale(String arg0)](#shouldShowRequestPermissionRationale-java.lang.String-) | | +| [shouldUpRecreateTask(Intent arg0)](#shouldUpRecreateTask-android.content.Intent-) | | +| [showAssist(Bundle arg0)](#showAssist-android.os.Bundle-) | | +| [showDialog(int arg0)](#showDialog-int-) | | +| [showDialog(int arg0, Bundle arg1)](#showDialog-int-android.os.Bundle-) | | +| [showLockTaskEscapeMessage()](#showLockTaskEscapeMessage--) | | +| [startActionMode(ActionMode.Callback arg0)](#startActionMode-android.view.ActionMode.Callback-) | | +| [startActionMode(ActionMode.Callback arg0, int arg1)](#startActionMode-android.view.ActionMode.Callback-int-) | | +| [startActivities(Intent[] arg0)](#startActivities-android.content.Intent---) | | +| [startActivities(Intent[] arg0, Bundle arg1)](#startActivities-android.content.Intent---android.os.Bundle-) | | +| [startActivity(Intent arg0)](#startActivity-android.content.Intent-) | | +| [startActivity(Intent arg0, Bundle arg1)](#startActivity-android.content.Intent-android.os.Bundle-) | | +| [startActivityForResult(Intent arg0, int arg1)](#startActivityForResult-android.content.Intent-int-) | | +| [startActivityForResult(Intent arg0, int arg1, Bundle arg2)](#startActivityForResult-android.content.Intent-int-android.os.Bundle-) | | +| [startActivityFromChild(Activity arg0, Intent arg1, int arg2)](#startActivityFromChild-android.app.Activity-android.content.Intent-int-) | | +| [startActivityFromChild(Activity arg0, Intent arg1, int arg2, Bundle arg3)](#startActivityFromChild-android.app.Activity-android.content.Intent-int-android.os.Bundle-) | | +| [startActivityFromFragment(Fragment arg0, Intent arg1, int arg2)](#startActivityFromFragment-android.app.Fragment-android.content.Intent-int-) | | +| [startActivityFromFragment(Fragment arg0, Intent arg1, int arg2, Bundle arg3)](#startActivityFromFragment-android.app.Fragment-android.content.Intent-int-android.os.Bundle-) | | +| [startActivityFromFragment(Fragment arg0, Intent arg1, int arg2)](#startActivityFromFragment-androidx.fragment.app.Fragment-android.content.Intent-int-) | | +| [startActivityFromFragment(Fragment arg0, Intent arg1, int arg2, Bundle arg3)](#startActivityFromFragment-androidx.fragment.app.Fragment-android.content.Intent-int-android.os.Bundle-) | | +| [startActivityIfNeeded(Intent arg0, int arg1)](#startActivityIfNeeded-android.content.Intent-int-) | | +| [startActivityIfNeeded(Intent arg0, int arg1, Bundle arg2)](#startActivityIfNeeded-android.content.Intent-int-android.os.Bundle-) | | +| [startForegroundService(Intent arg0)](#startForegroundService-android.content.Intent-) | | +| [startInstrumentation(ComponentName arg0, String arg1, Bundle arg2)](#startInstrumentation-android.content.ComponentName-java.lang.String-android.os.Bundle-) | | +| [startIntentSender(IntentSender arg0, Intent arg1, int arg2, int arg3, int arg4)](#startIntentSender-android.content.IntentSender-android.content.Intent-int-int-int-) | | +| [startIntentSender(IntentSender arg0, Intent arg1, int arg2, int arg3, int arg4, Bundle arg5)](#startIntentSender-android.content.IntentSender-android.content.Intent-int-int-int-android.os.Bundle-) | | +| [startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5)](#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-) | | +| [startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6)](#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-) | | +| [startIntentSenderFromChild(Activity arg0, IntentSender arg1, int arg2, Intent arg3, int arg4, int arg5, int arg6)](#startIntentSenderFromChild-android.app.Activity-android.content.IntentSender-int-android.content.Intent-int-int-int-) | | +| [startIntentSenderFromChild(Activity arg0, IntentSender arg1, int arg2, Intent arg3, int arg4, int arg5, int arg6, Bundle arg7)](#startIntentSenderFromChild-android.app.Activity-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-) | | +| [startIntentSenderFromFragment(Fragment arg0, IntentSender arg1, int arg2, Intent arg3, int arg4, int arg5, int arg6, Bundle arg7)](#startIntentSenderFromFragment-androidx.fragment.app.Fragment-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-) | | +| [startLocalVoiceInteraction(Bundle arg0)](#startLocalVoiceInteraction-android.os.Bundle-) | | +| [startLockTask()](#startLockTask--) | | +| [startManagingCursor(Cursor arg0)](#startManagingCursor-android.database.Cursor-) | | +| [startNextMatchingActivity(Intent arg0)](#startNextMatchingActivity-android.content.Intent-) | | +| [startNextMatchingActivity(Intent arg0, Bundle arg1)](#startNextMatchingActivity-android.content.Intent-android.os.Bundle-) | | +| [startPostponedEnterTransition()](#startPostponedEnterTransition--) | | +| [startSearch(String arg0, boolean arg1, Bundle arg2, boolean arg3)](#startSearch-java.lang.String-boolean-android.os.Bundle-boolean-) | | +| [startService(Intent arg0)](#startService-android.content.Intent-) | | +| [startSupportActionMode(ActionMode.Callback arg0)](#startSupportActionMode-androidx.appcompat.view.ActionMode.Callback-) | | +| [stopLocalVoiceInteraction()](#stopLocalVoiceInteraction--) | | +| [stopLockTask()](#stopLockTask--) | | +| [stopManagingCursor(Cursor arg0)](#stopManagingCursor-android.database.Cursor-) | | +| [stopService(Intent arg0)](#stopService-android.content.Intent-) | | +| [superDispatchKeyEvent(KeyEvent arg0)](#superDispatchKeyEvent-android.view.KeyEvent-) | | +| [supportFinishAfterTransition()](#supportFinishAfterTransition--) | | +| [supportInvalidateOptionsMenu()](#supportInvalidateOptionsMenu--) | | +| [supportNavigateUpTo(Intent arg0)](#supportNavigateUpTo-android.content.Intent-) | | +| [supportPostponeEnterTransition()](#supportPostponeEnterTransition--) | | +| [supportRequestWindowFeature(int arg0)](#supportRequestWindowFeature-int-) | | +| [supportShouldUpRecreateTask(Intent arg0)](#supportShouldUpRecreateTask-android.content.Intent-) | | +| [supportStartPostponedEnterTransition()](#supportStartPostponedEnterTransition--) | | +| [takeKeyEvents(boolean arg0)](#takeKeyEvents-boolean-) | | +| [toString()](#toString--) | | +| [triggerSearch(String arg0, Bundle arg1)](#triggerSearch-java.lang.String-android.os.Bundle-) | | +| [unbindService(ServiceConnection arg0)](#unbindService-android.content.ServiceConnection-) | | +| [unregisterActivityLifecycleCallbacks(Application.ActivityLifecycleCallbacks arg0)](#unregisterActivityLifecycleCallbacks-android.app.Application.ActivityLifecycleCallbacks-) | | +| [unregisterComponentCallbacks(ComponentCallbacks arg0)](#unregisterComponentCallbacks-android.content.ComponentCallbacks-) | | +| [unregisterForContextMenu(View arg0)](#unregisterForContextMenu-android.view.View-) | | +| [unregisterReceiver(BroadcastReceiver arg0)](#unregisterReceiver-android.content.BroadcastReceiver-) | | +| [updateServiceGroup(ServiceConnection arg0, int arg1, int arg2)](#updateServiceGroup-android.content.ServiceConnection-int-int-) | | +| [validateRequestPermissionsRequestCode(int arg0)](#validateRequestPermissionsRequestCode-int-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarcodeScannerActivity() {#BarcodeScannerActivity--} +``` +public BarcodeScannerActivity() +``` + + +### ACCESSIBILITY_SERVICE {#ACCESSIBILITY-SERVICE} +``` +public static final String ACCESSIBILITY_SERVICE +``` + + +### ACCOUNT_SERVICE {#ACCOUNT-SERVICE} +``` +public static final String ACCOUNT_SERVICE +``` + + +### ACTIVITY_SERVICE {#ACTIVITY-SERVICE} +``` +public static final String ACTIVITY_SERVICE +``` + + +### ALARM_SERVICE {#ALARM-SERVICE} +``` +public static final String ALARM_SERVICE +``` + + +### APPWIDGET_SERVICE {#APPWIDGET-SERVICE} +``` +public static final String APPWIDGET_SERVICE +``` + + +### APP_OPS_SERVICE {#APP-OPS-SERVICE} +``` +public static final String APP_OPS_SERVICE +``` + + +### APP_SEARCH_SERVICE {#APP-SEARCH-SERVICE} +``` +public static final String APP_SEARCH_SERVICE +``` + + +### AUDIO_SERVICE {#AUDIO-SERVICE} +``` +public static final String AUDIO_SERVICE +``` + + +### BATTERY_SERVICE {#BATTERY-SERVICE} +``` +public static final String BATTERY_SERVICE +``` + + +### BIND_ABOVE_CLIENT {#BIND-ABOVE-CLIENT} +``` +public static final int BIND_ABOVE_CLIENT +``` + + +### BIND_ADJUST_WITH_ACTIVITY {#BIND-ADJUST-WITH-ACTIVITY} +``` +public static final int BIND_ADJUST_WITH_ACTIVITY +``` + + +### BIND_ALLOW_OOM_MANAGEMENT {#BIND-ALLOW-OOM-MANAGEMENT} +``` +public static final int BIND_ALLOW_OOM_MANAGEMENT +``` + + +### BIND_AUTO_CREATE {#BIND-AUTO-CREATE} +``` +public static final int BIND_AUTO_CREATE +``` + + +### BIND_DEBUG_UNBIND {#BIND-DEBUG-UNBIND} +``` +public static final int BIND_DEBUG_UNBIND +``` + + +### BIND_EXTERNAL_SERVICE {#BIND-EXTERNAL-SERVICE} +``` +public static final int BIND_EXTERNAL_SERVICE +``` + + +### BIND_IMPORTANT {#BIND-IMPORTANT} +``` +public static final int BIND_IMPORTANT +``` + + +### BIND_INCLUDE_CAPABILITIES {#BIND-INCLUDE-CAPABILITIES} +``` +public static final int BIND_INCLUDE_CAPABILITIES +``` + + +### BIND_NOT_FOREGROUND {#BIND-NOT-FOREGROUND} +``` +public static final int BIND_NOT_FOREGROUND +``` + + +### BIND_NOT_PERCEPTIBLE {#BIND-NOT-PERCEPTIBLE} +``` +public static final int BIND_NOT_PERCEPTIBLE +``` + + +### BIND_WAIVE_PRIORITY {#BIND-WAIVE-PRIORITY} +``` +public static final int BIND_WAIVE_PRIORITY +``` + + +### BIOMETRIC_SERVICE {#BIOMETRIC-SERVICE} +``` +public static final String BIOMETRIC_SERVICE +``` + + +### BLOB_STORE_SERVICE {#BLOB-STORE-SERVICE} +``` +public static final String BLOB_STORE_SERVICE +``` + + +### BLUETOOTH_SERVICE {#BLUETOOTH-SERVICE} +``` +public static final String BLUETOOTH_SERVICE +``` + + +### BUGREPORT_SERVICE {#BUGREPORT-SERVICE} +``` +public static final String BUGREPORT_SERVICE +``` + + +### CAMERA_SERVICE {#CAMERA-SERVICE} +``` +public static final String CAMERA_SERVICE +``` + + +### CAPTIONING_SERVICE {#CAPTIONING-SERVICE} +``` +public static final String CAPTIONING_SERVICE +``` + + +### CARRIER_CONFIG_SERVICE {#CARRIER-CONFIG-SERVICE} +``` +public static final String CARRIER_CONFIG_SERVICE +``` + + +### CLIPBOARD_SERVICE {#CLIPBOARD-SERVICE} +``` +public static final String CLIPBOARD_SERVICE +``` + + +### COMPANION_DEVICE_SERVICE {#COMPANION-DEVICE-SERVICE} +``` +public static final String COMPANION_DEVICE_SERVICE +``` + + +### CONNECTIVITY_DIAGNOSTICS_SERVICE {#CONNECTIVITY-DIAGNOSTICS-SERVICE} +``` +public static final String CONNECTIVITY_DIAGNOSTICS_SERVICE +``` + + +### CONNECTIVITY_SERVICE {#CONNECTIVITY-SERVICE} +``` +public static final String CONNECTIVITY_SERVICE +``` + + +### CONSUMER_IR_SERVICE {#CONSUMER-IR-SERVICE} +``` +public static final String CONSUMER_IR_SERVICE +``` + + +### CONTEXT_IGNORE_SECURITY {#CONTEXT-IGNORE-SECURITY} +``` +public static final int CONTEXT_IGNORE_SECURITY +``` + + +### CONTEXT_INCLUDE_CODE {#CONTEXT-INCLUDE-CODE} +``` +public static final int CONTEXT_INCLUDE_CODE +``` + + +### CONTEXT_RESTRICTED {#CONTEXT-RESTRICTED} +``` +public static final int CONTEXT_RESTRICTED +``` + + +### CROSS_PROFILE_APPS_SERVICE {#CROSS-PROFILE-APPS-SERVICE} +``` +public static final String CROSS_PROFILE_APPS_SERVICE +``` + + +### DEFAULT_KEYS_DIALER {#DEFAULT-KEYS-DIALER} +``` +public static final int DEFAULT_KEYS_DIALER +``` + + +### DEFAULT_KEYS_DISABLE {#DEFAULT-KEYS-DISABLE} +``` +public static final int DEFAULT_KEYS_DISABLE +``` + + +### DEFAULT_KEYS_SEARCH_GLOBAL {#DEFAULT-KEYS-SEARCH-GLOBAL} +``` +public static final int DEFAULT_KEYS_SEARCH_GLOBAL +``` + + +### DEFAULT_KEYS_SEARCH_LOCAL {#DEFAULT-KEYS-SEARCH-LOCAL} +``` +public static final int DEFAULT_KEYS_SEARCH_LOCAL +``` + + +### DEFAULT_KEYS_SHORTCUT {#DEFAULT-KEYS-SHORTCUT} +``` +public static final int DEFAULT_KEYS_SHORTCUT +``` + + +### DEVICE_POLICY_SERVICE {#DEVICE-POLICY-SERVICE} +``` +public static final String DEVICE_POLICY_SERVICE +``` + + +### DISPLAY_HASH_SERVICE {#DISPLAY-HASH-SERVICE} +``` +public static final String DISPLAY_HASH_SERVICE +``` + + +### DISPLAY_SERVICE {#DISPLAY-SERVICE} +``` +public static final String DISPLAY_SERVICE +``` + + +### DOMAIN_VERIFICATION_SERVICE {#DOMAIN-VERIFICATION-SERVICE} +``` +public static final String DOMAIN_VERIFICATION_SERVICE +``` + + +### DOWNLOAD_SERVICE {#DOWNLOAD-SERVICE} +``` +public static final String DOWNLOAD_SERVICE +``` + + +### DROPBOX_SERVICE {#DROPBOX-SERVICE} +``` +public static final String DROPBOX_SERVICE +``` + + +### EUICC_SERVICE {#EUICC-SERVICE} +``` +public static final String EUICC_SERVICE +``` + + +### FILE_INTEGRITY_SERVICE {#FILE-INTEGRITY-SERVICE} +``` +public static final String FILE_INTEGRITY_SERVICE +``` + + +### FINGERPRINT_SERVICE {#FINGERPRINT-SERVICE} +``` +public static final String FINGERPRINT_SERVICE +``` + + +### GAME_SERVICE {#GAME-SERVICE} +``` +public static final String GAME_SERVICE +``` + + +### HARDWARE_PROPERTIES_SERVICE {#HARDWARE-PROPERTIES-SERVICE} +``` +public static final String HARDWARE_PROPERTIES_SERVICE +``` + + +### INPUT_METHOD_SERVICE {#INPUT-METHOD-SERVICE} +``` +public static final String INPUT_METHOD_SERVICE +``` + + +### INPUT_SERVICE {#INPUT-SERVICE} +``` +public static final String INPUT_SERVICE +``` + + +### IPSEC_SERVICE {#IPSEC-SERVICE} +``` +public static final String IPSEC_SERVICE +``` + + +### JOB_SCHEDULER_SERVICE {#JOB-SCHEDULER-SERVICE} +``` +public static final String JOB_SCHEDULER_SERVICE +``` + + +### KEYGUARD_SERVICE {#KEYGUARD-SERVICE} +``` +public static final String KEYGUARD_SERVICE +``` + + +### LAUNCHER_APPS_SERVICE {#LAUNCHER-APPS-SERVICE} +``` +public static final String LAUNCHER_APPS_SERVICE +``` + + +### LAYOUT_INFLATER_SERVICE {#LAYOUT-INFLATER-SERVICE} +``` +public static final String LAYOUT_INFLATER_SERVICE +``` + + +### LOCALE_SERVICE {#LOCALE-SERVICE} +``` +public static final String LOCALE_SERVICE +``` + + +### LOCATION_SERVICE {#LOCATION-SERVICE} +``` +public static final String LOCATION_SERVICE +``` + + +### MEDIA_COMMUNICATION_SERVICE {#MEDIA-COMMUNICATION-SERVICE} +``` +public static final String MEDIA_COMMUNICATION_SERVICE +``` + + +### MEDIA_METRICS_SERVICE {#MEDIA-METRICS-SERVICE} +``` +public static final String MEDIA_METRICS_SERVICE +``` + + +### MEDIA_PROJECTION_SERVICE {#MEDIA-PROJECTION-SERVICE} +``` +public static final String MEDIA_PROJECTION_SERVICE +``` + + +### MEDIA_ROUTER_SERVICE {#MEDIA-ROUTER-SERVICE} +``` +public static final String MEDIA_ROUTER_SERVICE +``` + + +### MEDIA_SESSION_SERVICE {#MEDIA-SESSION-SERVICE} +``` +public static final String MEDIA_SESSION_SERVICE +``` + + +### MIDI_SERVICE {#MIDI-SERVICE} +``` +public static final String MIDI_SERVICE +``` + + +### MODE_APPEND {#MODE-APPEND} +``` +public static final int MODE_APPEND +``` + + +### MODE_ENABLE_WRITE_AHEAD_LOGGING {#MODE-ENABLE-WRITE-AHEAD-LOGGING} +``` +public static final int MODE_ENABLE_WRITE_AHEAD_LOGGING +``` + + +### MODE_MULTI_PROCESS {#MODE-MULTI-PROCESS} +``` +public static final int MODE_MULTI_PROCESS +``` + + +### MODE_NO_LOCALIZED_COLLATORS {#MODE-NO-LOCALIZED-COLLATORS} +``` +public static final int MODE_NO_LOCALIZED_COLLATORS +``` + + +### MODE_PRIVATE {#MODE-PRIVATE} +``` +public static final int MODE_PRIVATE +``` + + +### MODE_WORLD_READABLE {#MODE-WORLD-READABLE} +``` +public static final int MODE_WORLD_READABLE +``` + + +### MODE_WORLD_WRITEABLE {#MODE-WORLD-WRITEABLE} +``` +public static final int MODE_WORLD_WRITEABLE +``` + + +### NETWORK_STATS_SERVICE {#NETWORK-STATS-SERVICE} +``` +public static final String NETWORK_STATS_SERVICE +``` + + +### NFC_SERVICE {#NFC-SERVICE} +``` +public static final String NFC_SERVICE +``` + + +### NOTIFICATION_SERVICE {#NOTIFICATION-SERVICE} +``` +public static final String NOTIFICATION_SERVICE +``` + + +### NSD_SERVICE {#NSD-SERVICE} +``` +public static final String NSD_SERVICE +``` + + +### PEOPLE_SERVICE {#PEOPLE-SERVICE} +``` +public static final String PEOPLE_SERVICE +``` + + +### PERFORMANCE_HINT_SERVICE {#PERFORMANCE-HINT-SERVICE} +``` +public static final String PERFORMANCE_HINT_SERVICE +``` + + +### POWER_SERVICE {#POWER-SERVICE} +``` +public static final String POWER_SERVICE +``` + + +### PRINT_SERVICE {#PRINT-SERVICE} +``` +public static final String PRINT_SERVICE +``` + + +### RECEIVER_EXPORTED {#RECEIVER-EXPORTED} +``` +public static final int RECEIVER_EXPORTED +``` + + +### RECEIVER_NOT_EXPORTED {#RECEIVER-NOT-EXPORTED} +``` +public static final int RECEIVER_NOT_EXPORTED +``` + + +### RECEIVER_VISIBLE_TO_INSTANT_APPS {#RECEIVER-VISIBLE-TO-INSTANT-APPS} +``` +public static final int RECEIVER_VISIBLE_TO_INSTANT_APPS +``` + + +### RESTRICTIONS_SERVICE {#RESTRICTIONS-SERVICE} +``` +public static final String RESTRICTIONS_SERVICE +``` + + +### RESULT_CANCELED {#RESULT-CANCELED} +``` +public static final int RESULT_CANCELED +``` + + +### RESULT_FIRST_USER {#RESULT-FIRST-USER} +``` +public static final int RESULT_FIRST_USER +``` + + +### RESULT_OK {#RESULT-OK} +``` +public static final int RESULT_OK +``` + + +### ROLE_SERVICE {#ROLE-SERVICE} +``` +public static final String ROLE_SERVICE +``` + + +### SEARCH_SERVICE {#SEARCH-SERVICE} +``` +public static final String SEARCH_SERVICE +``` + + +### SENSOR_SERVICE {#SENSOR-SERVICE} +``` +public static final String SENSOR_SERVICE +``` + + +### SHORTCUT_SERVICE {#SHORTCUT-SERVICE} +``` +public static final String SHORTCUT_SERVICE +``` + + +### STATUS_BAR_SERVICE {#STATUS-BAR-SERVICE} +``` +public static final String STATUS_BAR_SERVICE +``` + + +### STORAGE_SERVICE {#STORAGE-SERVICE} +``` +public static final String STORAGE_SERVICE +``` + + +### STORAGE_STATS_SERVICE {#STORAGE-STATS-SERVICE} +``` +public static final String STORAGE_STATS_SERVICE +``` + + +### SYSTEM_HEALTH_SERVICE {#SYSTEM-HEALTH-SERVICE} +``` +public static final String SYSTEM_HEALTH_SERVICE +``` + + +### TELECOM_SERVICE {#TELECOM-SERVICE} +``` +public static final String TELECOM_SERVICE +``` + + +### TELEPHONY_IMS_SERVICE {#TELEPHONY-IMS-SERVICE} +``` +public static final String TELEPHONY_IMS_SERVICE +``` + + +### TELEPHONY_SERVICE {#TELEPHONY-SERVICE} +``` +public static final String TELEPHONY_SERVICE +``` + + +### TELEPHONY_SUBSCRIPTION_SERVICE {#TELEPHONY-SUBSCRIPTION-SERVICE} +``` +public static final String TELEPHONY_SUBSCRIPTION_SERVICE +``` + + +### TEXT_CLASSIFICATION_SERVICE {#TEXT-CLASSIFICATION-SERVICE} +``` +public static final String TEXT_CLASSIFICATION_SERVICE +``` + + +### TEXT_SERVICES_MANAGER_SERVICE {#TEXT-SERVICES-MANAGER-SERVICE} +``` +public static final String TEXT_SERVICES_MANAGER_SERVICE +``` + + +### TV_INPUT_SERVICE {#TV-INPUT-SERVICE} +``` +public static final String TV_INPUT_SERVICE +``` + + +### TV_INTERACTIVE_APP_SERVICE {#TV-INTERACTIVE-APP-SERVICE} +``` +public static final String TV_INTERACTIVE_APP_SERVICE +``` + + +### UI_MODE_SERVICE {#UI-MODE-SERVICE} +``` +public static final String UI_MODE_SERVICE +``` + + +### USAGE_STATS_SERVICE {#USAGE-STATS-SERVICE} +``` +public static final String USAGE_STATS_SERVICE +``` + + +### USB_SERVICE {#USB-SERVICE} +``` +public static final String USB_SERVICE +``` + + +### USER_SERVICE {#USER-SERVICE} +``` +public static final String USER_SERVICE +``` + + +### VIBRATOR_MANAGER_SERVICE {#VIBRATOR-MANAGER-SERVICE} +``` +public static final String VIBRATOR_MANAGER_SERVICE +``` + + +### VIBRATOR_SERVICE {#VIBRATOR-SERVICE} +``` +public static final String VIBRATOR_SERVICE +``` + + +### VPN_MANAGEMENT_SERVICE {#VPN-MANAGEMENT-SERVICE} +``` +public static final String VPN_MANAGEMENT_SERVICE +``` + + +### WALLPAPER_SERVICE {#WALLPAPER-SERVICE} +``` +public static final String WALLPAPER_SERVICE +``` + + +### WIFI_AWARE_SERVICE {#WIFI-AWARE-SERVICE} +``` +public static final String WIFI_AWARE_SERVICE +``` + + +### WIFI_P2P_SERVICE {#WIFI-P2P-SERVICE} +``` +public static final String WIFI_P2P_SERVICE +``` + + +### WIFI_RTT_RANGING_SERVICE {#WIFI-RTT-RANGING-SERVICE} +``` +public static final String WIFI_RTT_RANGING_SERVICE +``` + + +### WIFI_SERVICE {#WIFI-SERVICE} +``` +public static final String WIFI_SERVICE +``` + + +### WINDOW_SERVICE {#WINDOW-SERVICE} +``` +public static final String WINDOW_SERVICE +``` + + +### registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1) {#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultCallback-O--} +``` +public final ActivityResultLauncher registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.result.contract.ActivityResultContract | | +| arg1 | androidx.activity.result.ActivityResultCallback | | + +**Returns:** +androidx.activity.result.ActivityResultLauncher +### registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2) {#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultRegistry-androidx.activity.result.ActivityResultCallback-O--} +``` +public final ActivityResultLauncher registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.result.contract.ActivityResultContract | | +| arg1 | androidx.activity.result.ActivityResultRegistry | | +| arg2 | androidx.activity.result.ActivityResultCallback | | + +**Returns:** +androidx.activity.result.ActivityResultLauncher +### findViewById(int arg0) {#-T-findViewById-int-} +``` +public T findViewById(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +T +### getExtraData(Class arg0) {#-T-getExtraData-java.lang.Class-T--} +``` +public T getExtraData(Class arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | + +**Returns:** +T +### getSystemService(Class arg0) {#-T-getSystemService-java.lang.Class-T--} +``` +public final T getSystemService(Class arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | + +**Returns:** +T +### requireViewById(int arg0) {#-T-requireViewById-int-} +``` +public final T requireViewById(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +T +### addContentView(View arg0, ViewGroup.LayoutParams arg1) {#addContentView-android.view.View-android.view.ViewGroup.LayoutParams-} +``` +public void addContentView(View arg0, ViewGroup.LayoutParams arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | +| arg1 | android.view.ViewGroup.LayoutParams | | + +### addMenuProvider(MenuProvider arg0) {#addMenuProvider-androidx.core.view.MenuProvider-} +``` +public void addMenuProvider(MenuProvider arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.view.MenuProvider | | + +### addMenuProvider(MenuProvider arg0, LifecycleOwner arg1) {#addMenuProvider-androidx.core.view.MenuProvider-androidx.lifecycle.LifecycleOwner-} +``` +public void addMenuProvider(MenuProvider arg0, LifecycleOwner arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.view.MenuProvider | | +| arg1 | androidx.lifecycle.LifecycleOwner | | + +### addMenuProvider(MenuProvider arg0, LifecycleOwner arg1, Lifecycle.State arg2) {#addMenuProvider-androidx.core.view.MenuProvider-androidx.lifecycle.LifecycleOwner-androidx.lifecycle.Lifecycle.State-} +``` +public void addMenuProvider(MenuProvider arg0, LifecycleOwner arg1, Lifecycle.State arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.view.MenuProvider | | +| arg1 | androidx.lifecycle.LifecycleOwner | | +| arg2 | androidx.lifecycle.Lifecycle.State | | + +### addOnConfigurationChangedListener(Consumer arg0) {#addOnConfigurationChangedListener-androidx.core.util.Consumer-android.content.res.Configuration--} +``` +public final void addOnConfigurationChangedListener(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.util.Consumer | | + +### addOnContextAvailableListener(OnContextAvailableListener arg0) {#addOnContextAvailableListener-androidx.activity.contextaware.OnContextAvailableListener-} +``` +public final void addOnContextAvailableListener(OnContextAvailableListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.contextaware.OnContextAvailableListener | | + +### addOnMultiWindowModeChangedListener(Consumer arg0) {#addOnMultiWindowModeChangedListener-androidx.core.util.Consumer-androidx.core.app.MultiWindowModeChangedInfo--} +``` +public final void addOnMultiWindowModeChangedListener(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.util.Consumer | | + +### addOnNewIntentListener(Consumer arg0) {#addOnNewIntentListener-androidx.core.util.Consumer-android.content.Intent--} +``` +public final void addOnNewIntentListener(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.util.Consumer | | + +### addOnPictureInPictureModeChangedListener(Consumer arg0) {#addOnPictureInPictureModeChangedListener-androidx.core.util.Consumer-androidx.core.app.PictureInPictureModeChangedInfo--} +``` +public final void addOnPictureInPictureModeChangedListener(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.util.Consumer | | + +### addOnTrimMemoryListener(Consumer arg0) {#addOnTrimMemoryListener-androidx.core.util.Consumer-java.lang.Integer--} +``` +public final void addOnTrimMemoryListener(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.util.Consumer | | + +### applyOverrideConfiguration(Configuration arg0) {#applyOverrideConfiguration-android.content.res.Configuration-} +``` +public void applyOverrideConfiguration(Configuration arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.Configuration | | + +### bindIsolatedService(Intent arg0, int arg1, String arg2, Executor arg3, ServiceConnection arg4) {#bindIsolatedService-android.content.Intent-int-java.lang.String-java.util.concurrent.Executor-android.content.ServiceConnection-} +``` +public boolean bindIsolatedService(Intent arg0, int arg1, String arg2, Executor arg3, ServiceConnection arg4) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | +| arg2 | java.lang.String | | +| arg3 | java.util.concurrent.Executor | | +| arg4 | android.content.ServiceConnection | | + +**Returns:** +boolean +### bindService(Intent arg0, ServiceConnection arg1, int arg2) {#bindService-android.content.Intent-android.content.ServiceConnection-int-} +``` +public boolean bindService(Intent arg0, ServiceConnection arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.content.ServiceConnection | | +| arg2 | int | | + +**Returns:** +boolean +### bindService(Intent arg0, int arg1, Executor arg2, ServiceConnection arg3) {#bindService-android.content.Intent-int-java.util.concurrent.Executor-android.content.ServiceConnection-} +``` +public boolean bindService(Intent arg0, int arg1, Executor arg2, ServiceConnection arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | +| arg2 | java.util.concurrent.Executor | | +| arg3 | android.content.ServiceConnection | | + +**Returns:** +boolean +### bindServiceAsUser(Intent arg0, ServiceConnection arg1, int arg2, UserHandle arg3) {#bindServiceAsUser-android.content.Intent-android.content.ServiceConnection-int-android.os.UserHandle-} +``` +public boolean bindServiceAsUser(Intent arg0, ServiceConnection arg1, int arg2, UserHandle arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.content.ServiceConnection | | +| arg2 | int | | +| arg3 | android.os.UserHandle | | + +**Returns:** +boolean +### checkCallingOrSelfPermission(String arg0) {#checkCallingOrSelfPermission-java.lang.String-} +``` +public int checkCallingOrSelfPermission(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +int +### checkCallingOrSelfUriPermission(Uri arg0, int arg1) {#checkCallingOrSelfUriPermission-android.net.Uri-int-} +``` +public int checkCallingOrSelfUriPermission(Uri arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.net.Uri | | +| arg1 | int | | + +**Returns:** +int +### checkCallingOrSelfUriPermissions(List arg0, int arg1) {#checkCallingOrSelfUriPermissions-java.util.List-android.net.Uri--int-} +``` +public int[] checkCallingOrSelfUriPermissions(List arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.List | | +| arg1 | int | | + +**Returns:** +int[] +### checkCallingPermission(String arg0) {#checkCallingPermission-java.lang.String-} +``` +public int checkCallingPermission(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +int +### checkCallingUriPermission(Uri arg0, int arg1) {#checkCallingUriPermission-android.net.Uri-int-} +``` +public int checkCallingUriPermission(Uri arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.net.Uri | | +| arg1 | int | | + +**Returns:** +int +### checkCallingUriPermissions(List arg0, int arg1) {#checkCallingUriPermissions-java.util.List-android.net.Uri--int-} +``` +public int[] checkCallingUriPermissions(List arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.List | | +| arg1 | int | | + +**Returns:** +int[] +### checkPermission(String arg0, int arg1, int arg2) {#checkPermission-java.lang.String-int-int-} +``` +public int checkPermission(String arg0, int arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | int | | +| arg2 | int | | + +**Returns:** +int +### checkSelfPermission(String arg0) {#checkSelfPermission-java.lang.String-} +``` +public int checkSelfPermission(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +int +### checkUriPermission(Uri arg0, int arg1, int arg2, int arg3) {#checkUriPermission-android.net.Uri-int-int-int-} +``` +public int checkUriPermission(Uri arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.net.Uri | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +**Returns:** +int +### checkUriPermission(Uri arg0, String arg1, String arg2, int arg3, int arg4, int arg5) {#checkUriPermission-android.net.Uri-java.lang.String-java.lang.String-int-int-int-} +``` +public int checkUriPermission(Uri arg0, String arg1, String arg2, int arg3, int arg4, int arg5) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.net.Uri | | +| arg1 | java.lang.String | | +| arg2 | java.lang.String | | +| arg3 | int | | +| arg4 | int | | +| arg5 | int | | + +**Returns:** +int +### checkUriPermissions(List arg0, int arg1, int arg2, int arg3) {#checkUriPermissions-java.util.List-android.net.Uri--int-int-int-} +``` +public int[] checkUriPermissions(List arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.List | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +**Returns:** +int[] +### clearWallpaper() {#clearWallpaper--} +``` +public void clearWallpaper() +``` + + + + +### closeContextMenu() {#closeContextMenu--} +``` +public void closeContextMenu() +``` + + + + +### closeOptionsMenu() {#closeOptionsMenu--} +``` +public void closeOptionsMenu() +``` + + + + +### createAttributionContext(String arg0) {#createAttributionContext-java.lang.String-} +``` +public Context createAttributionContext(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +android.content.Context +### createConfigurationContext(Configuration arg0) {#createConfigurationContext-android.content.res.Configuration-} +``` +public Context createConfigurationContext(Configuration arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.Configuration | | + +**Returns:** +android.content.Context +### createContext(ContextParams arg0) {#createContext-android.content.ContextParams-} +``` +public Context createContext(ContextParams arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ContextParams | | + +**Returns:** +android.content.Context +### createContextForSplit(String arg0) {#createContextForSplit-java.lang.String-} +``` +public Context createContextForSplit(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +android.content.Context +### createDeviceProtectedStorageContext() {#createDeviceProtectedStorageContext--} +``` +public Context createDeviceProtectedStorageContext() +``` + + + + +**Returns:** +android.content.Context +### createDisplayContext(Display arg0) {#createDisplayContext-android.view.Display-} +``` +public Context createDisplayContext(Display arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Display | | + +**Returns:** +android.content.Context +### createPackageContext(String arg0, int arg1) {#createPackageContext-java.lang.String-int-} +``` +public Context createPackageContext(String arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | int | | + +**Returns:** +android.content.Context +### createPendingResult(int arg0, Intent arg1, int arg2) {#createPendingResult-int-android.content.Intent-int-} +``` +public PendingIntent createPendingResult(int arg0, Intent arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.content.Intent | | +| arg2 | int | | + +**Returns:** +android.app.PendingIntent +### createWindowContext(Display arg0, int arg1, Bundle arg2) {#createWindowContext-android.view.Display-int-android.os.Bundle-} +``` +public Context createWindowContext(Display arg0, int arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Display | | +| arg1 | int | | +| arg2 | android.os.Bundle | | + +**Returns:** +android.content.Context +### createWindowContext(int arg0, Bundle arg1) {#createWindowContext-int-android.os.Bundle-} +``` +public Context createWindowContext(int arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.os.Bundle | | + +**Returns:** +android.content.Context +### databaseList() {#databaseList--} +``` +public String[] databaseList() +``` + + + + +**Returns:** +java.lang.String[] +### deleteDatabase(String arg0) {#deleteDatabase-java.lang.String-} +``` +public boolean deleteDatabase(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +boolean +### deleteFile(String arg0) {#deleteFile-java.lang.String-} +``` +public boolean deleteFile(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +boolean +### deleteSharedPreferences(String arg0) {#deleteSharedPreferences-java.lang.String-} +``` +public boolean deleteSharedPreferences(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +boolean +### dismissDialog(int arg0) {#dismissDialog-int-} +``` +public final void dismissDialog(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### dismissKeyboardShortcutsHelper() {#dismissKeyboardShortcutsHelper--} +``` +public final void dismissKeyboardShortcutsHelper() +``` + + + + +### dispatchGenericMotionEvent(MotionEvent arg0) {#dispatchGenericMotionEvent-android.view.MotionEvent-} +``` +public boolean dispatchGenericMotionEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchKeyEvent(KeyEvent arg0) {#dispatchKeyEvent-android.view.KeyEvent-} +``` +public boolean dispatchKeyEvent(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### dispatchKeyShortcutEvent(KeyEvent arg0) {#dispatchKeyShortcutEvent-android.view.KeyEvent-} +``` +public boolean dispatchKeyShortcutEvent(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0) {#dispatchPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-} +``` +public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +**Returns:** +boolean +### dispatchTouchEvent(MotionEvent arg0) {#dispatchTouchEvent-android.view.MotionEvent-} +``` +public boolean dispatchTouchEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchTrackballEvent(MotionEvent arg0) {#dispatchTrackballEvent-android.view.MotionEvent-} +``` +public boolean dispatchTrackballEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3) {#dump-java.lang.String-java.io.FileDescriptor-java.io.PrintWriter-java.lang.String---} +``` +public void dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | java.io.FileDescriptor | | +| arg2 | java.io.PrintWriter | | +| arg3 | java.lang.String[] | | + +### enforceCallingOrSelfPermission(String arg0, String arg1) {#enforceCallingOrSelfPermission-java.lang.String-java.lang.String-} +``` +public void enforceCallingOrSelfPermission(String arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | java.lang.String | | + +### enforceCallingOrSelfUriPermission(Uri arg0, int arg1, String arg2) {#enforceCallingOrSelfUriPermission-android.net.Uri-int-java.lang.String-} +``` +public void enforceCallingOrSelfUriPermission(Uri arg0, int arg1, String arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.net.Uri | | +| arg1 | int | | +| arg2 | java.lang.String | | + +### enforceCallingPermission(String arg0, String arg1) {#enforceCallingPermission-java.lang.String-java.lang.String-} +``` +public void enforceCallingPermission(String arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | java.lang.String | | + +### enforceCallingUriPermission(Uri arg0, int arg1, String arg2) {#enforceCallingUriPermission-android.net.Uri-int-java.lang.String-} +``` +public void enforceCallingUriPermission(Uri arg0, int arg1, String arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.net.Uri | | +| arg1 | int | | +| arg2 | java.lang.String | | + +### enforcePermission(String arg0, int arg1, int arg2, String arg3) {#enforcePermission-java.lang.String-int-int-java.lang.String-} +``` +public void enforcePermission(String arg0, int arg1, int arg2, String arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | int | | +| arg2 | int | | +| arg3 | java.lang.String | | + +### enforceUriPermission(Uri arg0, int arg1, int arg2, int arg3, String arg4) {#enforceUriPermission-android.net.Uri-int-int-int-java.lang.String-} +``` +public void enforceUriPermission(Uri arg0, int arg1, int arg2, int arg3, String arg4) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.net.Uri | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | +| arg4 | java.lang.String | | + +### enforceUriPermission(Uri arg0, String arg1, String arg2, int arg3, int arg4, int arg5, String arg6) {#enforceUriPermission-android.net.Uri-java.lang.String-java.lang.String-int-int-int-java.lang.String-} +``` +public void enforceUriPermission(Uri arg0, String arg1, String arg2, int arg3, int arg4, int arg5, String arg6) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.net.Uri | | +| arg1 | java.lang.String | | +| arg2 | java.lang.String | | +| arg3 | int | | +| arg4 | int | | +| arg5 | int | | +| arg6 | java.lang.String | | + +### enterPictureInPictureMode() {#enterPictureInPictureMode--} +``` +public void enterPictureInPictureMode() +``` + + + + +### enterPictureInPictureMode(PictureInPictureParams arg0) {#enterPictureInPictureMode-android.app.PictureInPictureParams-} +``` +public boolean enterPictureInPictureMode(PictureInPictureParams arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.PictureInPictureParams | | + +**Returns:** +boolean +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fileList() {#fileList--} +``` +public String[] fileList() +``` + + + + +**Returns:** +java.lang.String[] +### finish() {#finish--} +``` +public void finish() +``` + + + + +### finishActivity(int arg0) {#finishActivity-int-} +``` +public void finishActivity(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### finishActivityFromChild(Activity arg0, int arg1) {#finishActivityFromChild-android.app.Activity-int-} +``` +public void finishActivityFromChild(Activity arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | +| arg1 | int | | + +### finishAffinity() {#finishAffinity--} +``` +public void finishAffinity() +``` + + + + +### finishAfterTransition() {#finishAfterTransition--} +``` +public void finishAfterTransition() +``` + + + + +### finishAndRemoveTask() {#finishAndRemoveTask--} +``` +public void finishAndRemoveTask() +``` + + + + +### finishFromChild(Activity arg0) {#finishFromChild-android.app.Activity-} +``` +public void finishFromChild(Activity arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | + +### getActionBar() {#getActionBar--} +``` +public ActionBar getActionBar() +``` + + + + +**Returns:** +android.app.ActionBar +### getActivityResultRegistry() {#getActivityResultRegistry--} +``` +public final ActivityResultRegistry getActivityResultRegistry() +``` + + + + +**Returns:** +androidx.activity.result.ActivityResultRegistry +### getApplication() {#getApplication--} +``` +public final Application getApplication() +``` + + + + +**Returns:** +android.app.Application +### getApplicationContext() {#getApplicationContext--} +``` +public Context getApplicationContext() +``` + + + + +**Returns:** +android.content.Context +### getApplicationInfo() {#getApplicationInfo--} +``` +public ApplicationInfo getApplicationInfo() +``` + + + + +**Returns:** +android.content.pm.ApplicationInfo +### getAssets() {#getAssets--} +``` +public AssetManager getAssets() +``` + + + + +**Returns:** +android.content.res.AssetManager +### getAttributionSource() {#getAttributionSource--} +``` +public AttributionSource getAttributionSource() +``` + + + + +**Returns:** +android.content.AttributionSource +### getAttributionTag() {#getAttributionTag--} +``` +public String getAttributionTag() +``` + + + + +**Returns:** +java.lang.String +### getBaseContext() {#getBaseContext--} +``` +public Context getBaseContext() +``` + + + + +**Returns:** +android.content.Context +### getCacheDir() {#getCacheDir--} +``` +public File getCacheDir() +``` + + + + +**Returns:** +java.io.File +### getCallingActivity() {#getCallingActivity--} +``` +public ComponentName getCallingActivity() +``` + + + + +**Returns:** +android.content.ComponentName +### getCallingPackage() {#getCallingPackage--} +``` +public String getCallingPackage() +``` + + + + +**Returns:** +java.lang.String +### getChangingConfigurations() {#getChangingConfigurations--} +``` +public int getChangingConfigurations() +``` + + + + +**Returns:** +int +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getClassLoader() {#getClassLoader--} +``` +public ClassLoader getClassLoader() +``` + + + + +**Returns:** +java.lang.ClassLoader +### getCodeCacheDir() {#getCodeCacheDir--} +``` +public File getCodeCacheDir() +``` + + + + +**Returns:** +java.io.File +### getColor(int arg0) {#getColor-int-} +``` +public final int getColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +int +### getColorStateList(int arg0) {#getColorStateList-int-} +``` +public final ColorStateList getColorStateList(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +android.content.res.ColorStateList +### getComponentName() {#getComponentName--} +``` +public ComponentName getComponentName() +``` + + + + +**Returns:** +android.content.ComponentName +### getContentResolver() {#getContentResolver--} +``` +public ContentResolver getContentResolver() +``` + + + + +**Returns:** +android.content.ContentResolver +### getContentScene() {#getContentScene--} +``` +public Scene getContentScene() +``` + + + + +**Returns:** +android.transition.Scene +### getContentTransitionManager() {#getContentTransitionManager--} +``` +public TransitionManager getContentTransitionManager() +``` + + + + +**Returns:** +android.transition.TransitionManager +### getCurrentFocus() {#getCurrentFocus--} +``` +public View getCurrentFocus() +``` + + + + +**Returns:** +android.view.View +### getDataDir() {#getDataDir--} +``` +public File getDataDir() +``` + + + + +**Returns:** +java.io.File +### getDatabasePath(String arg0) {#getDatabasePath-java.lang.String-} +``` +public File getDatabasePath(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +java.io.File +### getDefaultViewModelCreationExtras() {#getDefaultViewModelCreationExtras--} +``` +public CreationExtras getDefaultViewModelCreationExtras() +``` + + + + +**Returns:** +androidx.lifecycle.viewmodel.CreationExtras +### getDefaultViewModelProviderFactory() {#getDefaultViewModelProviderFactory--} +``` +public ViewModelProvider.Factory getDefaultViewModelProviderFactory() +``` + + + + +**Returns:** +androidx.lifecycle.ViewModelProvider.Factory +### getDelegate() {#getDelegate--} +``` +public AppCompatDelegate getDelegate() +``` + + + + +**Returns:** +androidx.appcompat.app.AppCompatDelegate +### getDir(String arg0, int arg1) {#getDir-java.lang.String-int-} +``` +public File getDir(String arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | int | | + +**Returns:** +java.io.File +### getDisplay() {#getDisplay--} +``` +public Display getDisplay() +``` + + + + +**Returns:** +android.view.Display +### getDrawable(int arg0) {#getDrawable-int-} +``` +public final Drawable getDrawable(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +android.graphics.drawable.Drawable +### getDrawerToggleDelegate() {#getDrawerToggleDelegate--} +``` +public ActionBarDrawerToggle.Delegate getDrawerToggleDelegate() +``` + + + + +**Returns:** +androidx.appcompat.app.ActionBarDrawerToggle.Delegate +### getExternalCacheDir() {#getExternalCacheDir--} +``` +public File getExternalCacheDir() +``` + + + + +**Returns:** +java.io.File +### getExternalCacheDirs() {#getExternalCacheDirs--} +``` +public File[] getExternalCacheDirs() +``` + + + + +**Returns:** +java.io.File[] +### getExternalFilesDir(String arg0) {#getExternalFilesDir-java.lang.String-} +``` +public File getExternalFilesDir(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +java.io.File +### getExternalFilesDirs(String arg0) {#getExternalFilesDirs-java.lang.String-} +``` +public File[] getExternalFilesDirs(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +java.io.File[] +### getExternalMediaDirs() {#getExternalMediaDirs--} +``` +public File[] getExternalMediaDirs() +``` + + + + +**Returns:** +java.io.File[] +### getFileStreamPath(String arg0) {#getFileStreamPath-java.lang.String-} +``` +public File getFileStreamPath(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +java.io.File +### getFilesDir() {#getFilesDir--} +``` +public File getFilesDir() +``` + + + + +**Returns:** +java.io.File +### getFragmentManager() {#getFragmentManager--} +``` +public FragmentManager getFragmentManager() +``` + + + + +**Returns:** +android.app.FragmentManager +### getIntent() {#getIntent--} +``` +public Intent getIntent() +``` + + + + +**Returns:** +android.content.Intent +### getLastCustomNonConfigurationInstance() {#getLastCustomNonConfigurationInstance--} +``` +public Object getLastCustomNonConfigurationInstance() +``` + + + + +**Returns:** +java.lang.Object +### getLastNonConfigurationInstance() {#getLastNonConfigurationInstance--} +``` +public Object getLastNonConfigurationInstance() +``` + + + + +**Returns:** +java.lang.Object +### getLayoutInflater() {#getLayoutInflater--} +``` +public LayoutInflater getLayoutInflater() +``` + + + + +**Returns:** +android.view.LayoutInflater +### getLifecycle() {#getLifecycle--} +``` +public Lifecycle getLifecycle() +``` + + + + +**Returns:** +androidx.lifecycle.Lifecycle +### getLoaderManager() {#getLoaderManager--} +``` +public LoaderManager getLoaderManager() +``` + + + + +**Returns:** +android.app.LoaderManager +### getLocalClassName() {#getLocalClassName--} +``` +public String getLocalClassName() +``` + + + + +**Returns:** +java.lang.String +### getMainExecutor() {#getMainExecutor--} +``` +public Executor getMainExecutor() +``` + + + + +**Returns:** +java.util.concurrent.Executor +### getMainLooper() {#getMainLooper--} +``` +public Looper getMainLooper() +``` + + + + +**Returns:** +android.os.Looper +### getMaxNumPictureInPictureActions() {#getMaxNumPictureInPictureActions--} +``` +public int getMaxNumPictureInPictureActions() +``` + + + + +**Returns:** +int +### getMediaController() {#getMediaController--} +``` +public final MediaController getMediaController() +``` + + + + +**Returns:** +android.media.session.MediaController +### getMenuInflater() {#getMenuInflater--} +``` +public MenuInflater getMenuInflater() +``` + + + + +**Returns:** +android.view.MenuInflater +### getNoBackupFilesDir() {#getNoBackupFilesDir--} +``` +public File getNoBackupFilesDir() +``` + + + + +**Returns:** +java.io.File +### getObbDir() {#getObbDir--} +``` +public File getObbDir() +``` + + + + +**Returns:** +java.io.File +### getObbDirs() {#getObbDirs--} +``` +public File[] getObbDirs() +``` + + + + +**Returns:** +java.io.File[] +### getOnBackInvokedDispatcher() {#getOnBackInvokedDispatcher--} +``` +public OnBackInvokedDispatcher getOnBackInvokedDispatcher() +``` + + + + +**Returns:** +android.window.OnBackInvokedDispatcher +### getOnBackPressedDispatcher() {#getOnBackPressedDispatcher--} +``` +public final OnBackPressedDispatcher getOnBackPressedDispatcher() +``` + + + + +**Returns:** +androidx.activity.OnBackPressedDispatcher +### getOpPackageName() {#getOpPackageName--} +``` +public String getOpPackageName() +``` + + + + +**Returns:** +java.lang.String +### getPackageCodePath() {#getPackageCodePath--} +``` +public String getPackageCodePath() +``` + + + + +**Returns:** +java.lang.String +### getPackageManager() {#getPackageManager--} +``` +public PackageManager getPackageManager() +``` + + + + +**Returns:** +android.content.pm.PackageManager +### getPackageName() {#getPackageName--} +``` +public String getPackageName() +``` + + + + +**Returns:** +java.lang.String +### getPackageResourcePath() {#getPackageResourcePath--} +``` +public String getPackageResourcePath() +``` + + + + +**Returns:** +java.lang.String +### getParams() {#getParams--} +``` +public ContextParams getParams() +``` + + + + +**Returns:** +android.content.ContextParams +### getParent() {#getParent--} +``` +public final Activity getParent() +``` + + + + +**Returns:** +android.app.Activity +### getParentActivityIntent() {#getParentActivityIntent--} +``` +public Intent getParentActivityIntent() +``` + + + + +**Returns:** +android.content.Intent +### getPreferences(int arg0) {#getPreferences-int-} +``` +public SharedPreferences getPreferences(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +android.content.SharedPreferences +### getReferrer() {#getReferrer--} +``` +public Uri getReferrer() +``` + + + + +**Returns:** +android.net.Uri +### getRequestedOrientation() {#getRequestedOrientation--} +``` +public int getRequestedOrientation() +``` + + + + +**Returns:** +int +### getResources() {#getResources--} +``` +public Resources getResources() +``` + + + + +**Returns:** +android.content.res.Resources +### getSavedStateRegistry() {#getSavedStateRegistry--} +``` +public final SavedStateRegistry getSavedStateRegistry() +``` + + + + +**Returns:** +androidx.savedstate.SavedStateRegistry +### getSearchEvent() {#getSearchEvent--} +``` +public final SearchEvent getSearchEvent() +``` + + + + +**Returns:** +android.view.SearchEvent +### getSharedPreferences(String arg0, int arg1) {#getSharedPreferences-java.lang.String-int-} +``` +public SharedPreferences getSharedPreferences(String arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | int | | + +**Returns:** +android.content.SharedPreferences +### getSplashScreen() {#getSplashScreen--} +``` +public final SplashScreen getSplashScreen() +``` + + + + +**Returns:** +android.window.SplashScreen +### getString(int arg0) {#getString-int-} +``` +public final String getString(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.String +### getString(int arg0, Object[] arg1) {#getString-int-java.lang.Object...-} +``` +public final String getString(int arg0, Object[] arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.Object[] | | + +**Returns:** +java.lang.String +### getSupportActionBar() {#getSupportActionBar--} +``` +public ActionBar getSupportActionBar() +``` + + + + +**Returns:** +androidx.appcompat.app.ActionBar +### getSupportFragmentManager() {#getSupportFragmentManager--} +``` +public FragmentManager getSupportFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getSupportLoaderManager() {#getSupportLoaderManager--} +``` +public LoaderManager getSupportLoaderManager() +``` + + + + +**Returns:** +androidx.loader.app.LoaderManager +### getSupportParentActivityIntent() {#getSupportParentActivityIntent--} +``` +public Intent getSupportParentActivityIntent() +``` + + + + +**Returns:** +android.content.Intent +### getSystemService(String arg0) {#getSystemService-java.lang.String-} +``` +public Object getSystemService(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +java.lang.Object +### getSystemServiceName(Class arg0) {#getSystemServiceName-java.lang.Class----} +``` +public String getSystemServiceName(Class arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | + +**Returns:** +java.lang.String +### getTaskId() {#getTaskId--} +``` +public int getTaskId() +``` + + + + +**Returns:** +int +### getText(int arg0) {#getText-int-} +``` +public final CharSequence getText(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.CharSequence +### getTheme() {#getTheme--} +``` +public Resources.Theme getTheme() +``` + + + + +**Returns:** +android.content.res.Resources.Theme +### getTitle() {#getTitle--} +``` +public final CharSequence getTitle() +``` + + + + +**Returns:** +java.lang.CharSequence +### getTitleColor() {#getTitleColor--} +``` +public final int getTitleColor() +``` + + + + +**Returns:** +int +### getViewModelStore() {#getViewModelStore--} +``` +public ViewModelStore getViewModelStore() +``` + + + + +**Returns:** +androidx.lifecycle.ViewModelStore +### getVoiceInteractor() {#getVoiceInteractor--} +``` +public VoiceInteractor getVoiceInteractor() +``` + + + + +**Returns:** +android.app.VoiceInteractor +### getVolumeControlStream() {#getVolumeControlStream--} +``` +public final int getVolumeControlStream() +``` + + + + +**Returns:** +int +### getWallpaper() {#getWallpaper--} +``` +public Drawable getWallpaper() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getWallpaperDesiredMinimumHeight() {#getWallpaperDesiredMinimumHeight--} +``` +public int getWallpaperDesiredMinimumHeight() +``` + + + + +**Returns:** +int +### getWallpaperDesiredMinimumWidth() {#getWallpaperDesiredMinimumWidth--} +``` +public int getWallpaperDesiredMinimumWidth() +``` + + + + +**Returns:** +int +### getWindow() {#getWindow--} +``` +public Window getWindow() +``` + + + + +**Returns:** +android.view.Window +### getWindowManager() {#getWindowManager--} +``` +public WindowManager getWindowManager() +``` + + + + +**Returns:** +android.view.WindowManager +### grantUriPermission(String arg0, Uri arg1, int arg2) {#grantUriPermission-java.lang.String-android.net.Uri-int-} +``` +public void grantUriPermission(String arg0, Uri arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | android.net.Uri | | +| arg2 | int | | + +### hasWindowFocus() {#hasWindowFocus--} +``` +public boolean hasWindowFocus() +``` + + + + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### invalidateMenu() {#invalidateMenu--} +``` +public void invalidateMenu() +``` + + + + +### invalidateOptionsMenu() {#invalidateOptionsMenu--} +``` +public void invalidateOptionsMenu() +``` + + + + +### isActivityTransitionRunning() {#isActivityTransitionRunning--} +``` +public boolean isActivityTransitionRunning() +``` + + + + +**Returns:** +boolean +### isChangingConfigurations() {#isChangingConfigurations--} +``` +public boolean isChangingConfigurations() +``` + + + + +**Returns:** +boolean +### isChild() {#isChild--} +``` +public final boolean isChild() +``` + + + + +**Returns:** +boolean +### isDestroyed() {#isDestroyed--} +``` +public boolean isDestroyed() +``` + + + + +**Returns:** +boolean +### isDeviceProtectedStorage() {#isDeviceProtectedStorage--} +``` +public boolean isDeviceProtectedStorage() +``` + + + + +**Returns:** +boolean +### isFinishing() {#isFinishing--} +``` +public boolean isFinishing() +``` + + + + +**Returns:** +boolean +### isImmersive() {#isImmersive--} +``` +public boolean isImmersive() +``` + + + + +**Returns:** +boolean +### isInMultiWindowMode() {#isInMultiWindowMode--} +``` +public boolean isInMultiWindowMode() +``` + + + + +**Returns:** +boolean +### isInPictureInPictureMode() {#isInPictureInPictureMode--} +``` +public boolean isInPictureInPictureMode() +``` + + + + +**Returns:** +boolean +### isLaunchedFromBubble() {#isLaunchedFromBubble--} +``` +public boolean isLaunchedFromBubble() +``` + + + + +**Returns:** +boolean +### isLocalVoiceInteractionSupported() {#isLocalVoiceInteractionSupported--} +``` +public boolean isLocalVoiceInteractionSupported() +``` + + + + +**Returns:** +boolean +### isRestricted() {#isRestricted--} +``` +public boolean isRestricted() +``` + + + + +**Returns:** +boolean +### isTaskRoot() {#isTaskRoot--} +``` +public boolean isTaskRoot() +``` + + + + +**Returns:** +boolean +### isUiContext() {#isUiContext--} +``` +public boolean isUiContext() +``` + + + + +**Returns:** +boolean +### isVoiceInteraction() {#isVoiceInteraction--} +``` +public boolean isVoiceInteraction() +``` + + + + +**Returns:** +boolean +### isVoiceInteractionRoot() {#isVoiceInteractionRoot--} +``` +public boolean isVoiceInteractionRoot() +``` + + + + +**Returns:** +boolean +### managedQuery(Uri arg0, String[] arg1, String arg2, String[] arg3, String arg4) {#managedQuery-android.net.Uri-java.lang.String---java.lang.String-java.lang.String---java.lang.String-} +``` +public final Cursor managedQuery(Uri arg0, String[] arg1, String arg2, String[] arg3, String arg4) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.net.Uri | | +| arg1 | java.lang.String[] | | +| arg2 | java.lang.String | | +| arg3 | java.lang.String[] | | +| arg4 | java.lang.String | | + +**Returns:** +android.database.Cursor +### moveDatabaseFrom(Context arg0, String arg1) {#moveDatabaseFrom-android.content.Context-java.lang.String-} +``` +public boolean moveDatabaseFrom(Context arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | java.lang.String | | + +**Returns:** +boolean +### moveSharedPreferencesFrom(Context arg0, String arg1) {#moveSharedPreferencesFrom-android.content.Context-java.lang.String-} +``` +public boolean moveSharedPreferencesFrom(Context arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | java.lang.String | | + +**Returns:** +boolean +### moveTaskToBack(boolean arg0) {#moveTaskToBack-boolean-} +``` +public boolean moveTaskToBack(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +**Returns:** +boolean +### navigateUpTo(Intent arg0) {#navigateUpTo-android.content.Intent-} +``` +public boolean navigateUpTo(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +**Returns:** +boolean +### navigateUpToFromChild(Activity arg0, Intent arg1) {#navigateUpToFromChild-android.app.Activity-android.content.Intent-} +``` +public boolean navigateUpToFromChild(Activity arg0, Intent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | +| arg1 | android.content.Intent | | + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### obtainStyledAttributes(AttributeSet arg0, int[] arg1) {#obtainStyledAttributes-android.util.AttributeSet-int---} +``` +public final TypedArray obtainStyledAttributes(AttributeSet arg0, int[] arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.AttributeSet | | +| arg1 | int[] | | + +**Returns:** +android.content.res.TypedArray +### obtainStyledAttributes(AttributeSet arg0, int[] arg1, int arg2, int arg3) {#obtainStyledAttributes-android.util.AttributeSet-int---int-int-} +``` +public final TypedArray obtainStyledAttributes(AttributeSet arg0, int[] arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.AttributeSet | | +| arg1 | int[] | | +| arg2 | int | | +| arg3 | int | | + +**Returns:** +android.content.res.TypedArray +### obtainStyledAttributes(int arg0, int[] arg1) {#obtainStyledAttributes-int-int---} +``` +public final TypedArray obtainStyledAttributes(int arg0, int[] arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int[] | | + +**Returns:** +android.content.res.TypedArray +### obtainStyledAttributes(int[] arg0) {#obtainStyledAttributes-int---} +``` +public final TypedArray obtainStyledAttributes(int[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | + +**Returns:** +android.content.res.TypedArray +### onActionModeFinished(ActionMode arg0) {#onActionModeFinished-android.view.ActionMode-} +``` +public void onActionModeFinished(ActionMode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode | | + +### onActionModeStarted(ActionMode arg0) {#onActionModeStarted-android.view.ActionMode-} +``` +public void onActionModeStarted(ActionMode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode | | + +### onActivityReenter(int arg0, Intent arg1) {#onActivityReenter-int-android.content.Intent-} +``` +public void onActivityReenter(int arg0, Intent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.content.Intent | | + +### onAttachFragment(Fragment arg0) {#onAttachFragment-android.app.Fragment-} +``` +public void onAttachFragment(Fragment arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Fragment | | + +### onAttachFragment(Fragment arg0) {#onAttachFragment-androidx.fragment.app.Fragment-} +``` +public void onAttachFragment(Fragment arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | + +### onAttachedToWindow() {#onAttachedToWindow--} +``` +public void onAttachedToWindow() +``` + + + + +### onBackPressed() {#onBackPressed--} +``` +public void onBackPressed() +``` + + + + +### onConfigurationChanged(Configuration arg0) {#onConfigurationChanged-android.content.res.Configuration-} +``` +public void onConfigurationChanged(Configuration arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.Configuration | | + +### onContentChanged() {#onContentChanged--} +``` +public void onContentChanged() +``` + + + + +### onContextItemSelected(MenuItem arg0) {#onContextItemSelected-android.view.MenuItem-} +``` +public boolean onContextItemSelected(MenuItem arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MenuItem | | + +**Returns:** +boolean +### onContextMenuClosed(Menu arg0) {#onContextMenuClosed-android.view.Menu-} +``` +public void onContextMenuClosed(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +### onCreate(Bundle arg0, PersistableBundle arg1) {#onCreate-android.os.Bundle-android.os.PersistableBundle-} +``` +public void onCreate(Bundle arg0, PersistableBundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | +| arg1 | android.os.PersistableBundle | | + +### onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2) {#onCreateContextMenu-android.view.ContextMenu-android.view.View-android.view.ContextMenu.ContextMenuInfo-} +``` +public void onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContextMenu | | +| arg1 | android.view.View | | +| arg2 | android.view.ContextMenu.ContextMenuInfo | | + +### onCreateDescription() {#onCreateDescription--} +``` +public CharSequence onCreateDescription() +``` + + + + +**Returns:** +java.lang.CharSequence +### onCreateNavigateUpTaskStack(TaskStackBuilder arg0) {#onCreateNavigateUpTaskStack-android.app.TaskStackBuilder-} +``` +public void onCreateNavigateUpTaskStack(TaskStackBuilder arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.TaskStackBuilder | | + +### onCreateOptionsMenu(Menu arg0) {#onCreateOptionsMenu-android.view.Menu-} +``` +public boolean onCreateOptionsMenu(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +**Returns:** +boolean +### onCreatePanelMenu(int arg0, Menu arg1) {#onCreatePanelMenu-int-android.view.Menu-} +``` +public boolean onCreatePanelMenu(int arg0, Menu arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.Menu | | + +**Returns:** +boolean +### onCreatePanelView(int arg0) {#onCreatePanelView-int-} +``` +public View onCreatePanelView(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +android.view.View +### onCreateSupportNavigateUpTaskStack(TaskStackBuilder arg0) {#onCreateSupportNavigateUpTaskStack-androidx.core.app.TaskStackBuilder-} +``` +public void onCreateSupportNavigateUpTaskStack(TaskStackBuilder arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.TaskStackBuilder | | + +### onCreateThumbnail(Bitmap arg0, Canvas arg1) {#onCreateThumbnail-android.graphics.Bitmap-android.graphics.Canvas-} +``` +public boolean onCreateThumbnail(Bitmap arg0, Canvas arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Bitmap | | +| arg1 | android.graphics.Canvas | | + +**Returns:** +boolean +### onCreateView(View arg0, String arg1, Context arg2, AttributeSet arg3) {#onCreateView-android.view.View-java.lang.String-android.content.Context-android.util.AttributeSet-} +``` +public View onCreateView(View arg0, String arg1, Context arg2, AttributeSet arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | +| arg1 | java.lang.String | | +| arg2 | android.content.Context | | +| arg3 | android.util.AttributeSet | | + +**Returns:** +android.view.View +### onCreateView(String arg0, Context arg1, AttributeSet arg2) {#onCreateView-java.lang.String-android.content.Context-android.util.AttributeSet-} +``` +public View onCreateView(String arg0, Context arg1, AttributeSet arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | android.content.Context | | +| arg2 | android.util.AttributeSet | | + +**Returns:** +android.view.View +### onDetachedFromWindow() {#onDetachedFromWindow--} +``` +public void onDetachedFromWindow() +``` + + + + +### onEnterAnimationComplete() {#onEnterAnimationComplete--} +``` +public void onEnterAnimationComplete() +``` + + + + +### onGenericMotionEvent(MotionEvent arg0) {#onGenericMotionEvent-android.view.MotionEvent-} +``` +public boolean onGenericMotionEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onGetDirectActions(CancellationSignal arg0, Consumer> arg1) {#onGetDirectActions-android.os.CancellationSignal-java.util.function.Consumer-java.util.List-android.app.DirectAction---} +``` +public void onGetDirectActions(CancellationSignal arg0, Consumer> arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.CancellationSignal | | +| arg1 | java.util.function.Consumer> | | + +### onKeyDown(int arg0, KeyEvent arg1) {#onKeyDown-int-android.view.KeyEvent-} +``` +public boolean onKeyDown(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyLongPress(int arg0, KeyEvent arg1) {#onKeyLongPress-int-android.view.KeyEvent-} +``` +public boolean onKeyLongPress(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyMultiple(int arg0, int arg1, KeyEvent arg2) {#onKeyMultiple-int-int-android.view.KeyEvent-} +``` +public boolean onKeyMultiple(int arg0, int arg1, KeyEvent arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyShortcut(int arg0, KeyEvent arg1) {#onKeyShortcut-int-android.view.KeyEvent-} +``` +public boolean onKeyShortcut(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyUp(int arg0, KeyEvent arg1) {#onKeyUp-int-android.view.KeyEvent-} +``` +public boolean onKeyUp(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onLocalVoiceInteractionStarted() {#onLocalVoiceInteractionStarted--} +``` +public void onLocalVoiceInteractionStarted() +``` + + + + +### onLocalVoiceInteractionStopped() {#onLocalVoiceInteractionStopped--} +``` +public void onLocalVoiceInteractionStopped() +``` + + + + +### onLowMemory() {#onLowMemory--} +``` +public void onLowMemory() +``` + + + + +### onMenuItemSelected(int arg0, MenuItem arg1) {#onMenuItemSelected-int-android.view.MenuItem-} +``` +public final boolean onMenuItemSelected(int arg0, MenuItem arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.MenuItem | | + +**Returns:** +boolean +### onMenuOpened(int arg0, Menu arg1) {#onMenuOpened-int-android.view.Menu-} +``` +public boolean onMenuOpened(int arg0, Menu arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.Menu | | + +**Returns:** +boolean +### onMultiWindowModeChanged(boolean arg0) {#onMultiWindowModeChanged-boolean-} +``` +public void onMultiWindowModeChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onMultiWindowModeChanged(boolean arg0, Configuration arg1) {#onMultiWindowModeChanged-boolean-android.content.res.Configuration-} +``` +public void onMultiWindowModeChanged(boolean arg0, Configuration arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | +| arg1 | android.content.res.Configuration | | + +### onNavigateUp() {#onNavigateUp--} +``` +public boolean onNavigateUp() +``` + + + + +**Returns:** +boolean +### onNavigateUpFromChild(Activity arg0) {#onNavigateUpFromChild-android.app.Activity-} +``` +public boolean onNavigateUpFromChild(Activity arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | + +**Returns:** +boolean +### onOptionsItemSelected(MenuItem arg0) {#onOptionsItemSelected-android.view.MenuItem-} +``` +public boolean onOptionsItemSelected(MenuItem arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MenuItem | | + +**Returns:** +boolean +### onOptionsMenuClosed(Menu arg0) {#onOptionsMenuClosed-android.view.Menu-} +``` +public void onOptionsMenuClosed(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +### onPanelClosed(int arg0, Menu arg1) {#onPanelClosed-int-android.view.Menu-} +``` +public void onPanelClosed(int arg0, Menu arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.Menu | | + +### onPerformDirectAction(String arg0, Bundle arg1, CancellationSignal arg2, Consumer arg3) {#onPerformDirectAction-java.lang.String-android.os.Bundle-android.os.CancellationSignal-java.util.function.Consumer-android.os.Bundle--} +``` +public void onPerformDirectAction(String arg0, Bundle arg1, CancellationSignal arg2, Consumer arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | android.os.Bundle | | +| arg2 | android.os.CancellationSignal | | +| arg3 | java.util.function.Consumer | | + +### onPictureInPictureModeChanged(boolean arg0) {#onPictureInPictureModeChanged-boolean-} +``` +public void onPictureInPictureModeChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onPictureInPictureModeChanged(boolean arg0, Configuration arg1) {#onPictureInPictureModeChanged-boolean-android.content.res.Configuration-} +``` +public void onPictureInPictureModeChanged(boolean arg0, Configuration arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | +| arg1 | android.content.res.Configuration | | + +### onPictureInPictureRequested() {#onPictureInPictureRequested--} +``` +public boolean onPictureInPictureRequested() +``` + + + + +**Returns:** +boolean +### onPictureInPictureUiStateChanged(PictureInPictureUiState arg0) {#onPictureInPictureUiStateChanged-android.app.PictureInPictureUiState-} +``` +public void onPictureInPictureUiStateChanged(PictureInPictureUiState arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.PictureInPictureUiState | | + +### onPostCreate(Bundle arg0, PersistableBundle arg1) {#onPostCreate-android.os.Bundle-android.os.PersistableBundle-} +``` +public void onPostCreate(Bundle arg0, PersistableBundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | +| arg1 | android.os.PersistableBundle | | + +### onPrepareNavigateUpTaskStack(TaskStackBuilder arg0) {#onPrepareNavigateUpTaskStack-android.app.TaskStackBuilder-} +``` +public void onPrepareNavigateUpTaskStack(TaskStackBuilder arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.TaskStackBuilder | | + +### onPrepareOptionsMenu(Menu arg0) {#onPrepareOptionsMenu-android.view.Menu-} +``` +public boolean onPrepareOptionsMenu(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +**Returns:** +boolean +### onPreparePanel(int arg0, View arg1, Menu arg2) {#onPreparePanel-int-android.view.View-android.view.Menu-} +``` +public boolean onPreparePanel(int arg0, View arg1, Menu arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.View | | +| arg2 | android.view.Menu | | + +**Returns:** +boolean +### onPrepareSupportNavigateUpTaskStack(TaskStackBuilder arg0) {#onPrepareSupportNavigateUpTaskStack-androidx.core.app.TaskStackBuilder-} +``` +public void onPrepareSupportNavigateUpTaskStack(TaskStackBuilder arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.TaskStackBuilder | | + +### onProvideAssistContent(AssistContent arg0) {#onProvideAssistContent-android.app.assist.AssistContent-} +``` +public void onProvideAssistContent(AssistContent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.assist.AssistContent | | + +### onProvideAssistData(Bundle arg0) {#onProvideAssistData-android.os.Bundle-} +``` +public void onProvideAssistData(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### onProvideKeyboardShortcuts(List arg0, Menu arg1, int arg2) {#onProvideKeyboardShortcuts-java.util.List-android.view.KeyboardShortcutGroup--android.view.Menu-int-} +``` +public void onProvideKeyboardShortcuts(List arg0, Menu arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.List | | +| arg1 | android.view.Menu | | +| arg2 | int | | + +### onProvideReferrer() {#onProvideReferrer--} +``` +public Uri onProvideReferrer() +``` + + + + +**Returns:** +android.net.Uri +### onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {#onRequestPermissionsResult-int-java.lang.String---int---} +``` +public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| requestCode | int | | +| permissions | java.lang.String[] | | +| grantResults | int[] | | + +### onRestoreInstanceState(Bundle arg0, PersistableBundle arg1) {#onRestoreInstanceState-android.os.Bundle-android.os.PersistableBundle-} +``` +public void onRestoreInstanceState(Bundle arg0, PersistableBundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | +| arg1 | android.os.PersistableBundle | | + +### onRetainCustomNonConfigurationInstance() {#onRetainCustomNonConfigurationInstance--} +``` +public Object onRetainCustomNonConfigurationInstance() +``` + + + + +**Returns:** +java.lang.Object +### onRetainNonConfigurationInstance() {#onRetainNonConfigurationInstance--} +``` +public final Object onRetainNonConfigurationInstance() +``` + + + + +**Returns:** +java.lang.Object +### onSaveInstanceState(Bundle arg0, PersistableBundle arg1) {#onSaveInstanceState-android.os.Bundle-android.os.PersistableBundle-} +``` +public void onSaveInstanceState(Bundle arg0, PersistableBundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | +| arg1 | android.os.PersistableBundle | | + +### onSearchRequested() {#onSearchRequested--} +``` +public boolean onSearchRequested() +``` + + + + +**Returns:** +boolean +### onSearchRequested(SearchEvent arg0) {#onSearchRequested-android.view.SearchEvent-} +``` +public boolean onSearchRequested(SearchEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.SearchEvent | | + +**Returns:** +boolean +### onStateNotSaved() {#onStateNotSaved--} +``` +public void onStateNotSaved() +``` + + + + +### onSupportActionModeFinished(ActionMode arg0) {#onSupportActionModeFinished-androidx.appcompat.view.ActionMode-} +``` +public void onSupportActionModeFinished(ActionMode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.appcompat.view.ActionMode | | + +### onSupportActionModeStarted(ActionMode arg0) {#onSupportActionModeStarted-androidx.appcompat.view.ActionMode-} +``` +public void onSupportActionModeStarted(ActionMode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.appcompat.view.ActionMode | | + +### onSupportContentChanged() {#onSupportContentChanged--} +``` +public void onSupportContentChanged() +``` + + + + +### onSupportNavigateUp() {#onSupportNavigateUp--} +``` +public boolean onSupportNavigateUp() +``` + + + + +**Returns:** +boolean +### onTopResumedActivityChanged(boolean arg0) {#onTopResumedActivityChanged-boolean-} +``` +public void onTopResumedActivityChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onTouchEvent(MotionEvent arg0) {#onTouchEvent-android.view.MotionEvent-} +``` +public boolean onTouchEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onTrackballEvent(MotionEvent arg0) {#onTrackballEvent-android.view.MotionEvent-} +``` +public boolean onTrackballEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onTrimMemory(int arg0) {#onTrimMemory-int-} +``` +public void onTrimMemory(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### onUserInteraction() {#onUserInteraction--} +``` +public void onUserInteraction() +``` + + + + +### onVisibleBehindCanceled() {#onVisibleBehindCanceled--} +``` +public void onVisibleBehindCanceled() +``` + + + + +### onWindowAttributesChanged(WindowManager.LayoutParams arg0) {#onWindowAttributesChanged-android.view.WindowManager.LayoutParams-} +``` +public void onWindowAttributesChanged(WindowManager.LayoutParams arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowManager.LayoutParams | | + +### onWindowFocusChanged(boolean arg0) {#onWindowFocusChanged-boolean-} +``` +public void onWindowFocusChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onWindowStartingActionMode(ActionMode.Callback arg0) {#onWindowStartingActionMode-android.view.ActionMode.Callback-} +``` +public ActionMode onWindowStartingActionMode(ActionMode.Callback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode.Callback | | + +**Returns:** +android.view.ActionMode +### onWindowStartingActionMode(ActionMode.Callback arg0, int arg1) {#onWindowStartingActionMode-android.view.ActionMode.Callback-int-} +``` +public ActionMode onWindowStartingActionMode(ActionMode.Callback arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode.Callback | | +| arg1 | int | | + +**Returns:** +android.view.ActionMode +### onWindowStartingSupportActionMode(ActionMode.Callback arg0) {#onWindowStartingSupportActionMode-androidx.appcompat.view.ActionMode.Callback-} +``` +public ActionMode onWindowStartingSupportActionMode(ActionMode.Callback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.appcompat.view.ActionMode.Callback | | + +**Returns:** +androidx.appcompat.view.ActionMode +### openContextMenu(View arg0) {#openContextMenu-android.view.View-} +``` +public void openContextMenu(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### openFileInput(String arg0) {#openFileInput-java.lang.String-} +``` +public FileInputStream openFileInput(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +java.io.FileInputStream +### openFileOutput(String arg0, int arg1) {#openFileOutput-java.lang.String-int-} +``` +public FileOutputStream openFileOutput(String arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | int | | + +**Returns:** +java.io.FileOutputStream +### openOptionsMenu() {#openOptionsMenu--} +``` +public void openOptionsMenu() +``` + + + + +### openOrCreateDatabase(String arg0, int arg1, SQLiteDatabase.CursorFactory arg2) {#openOrCreateDatabase-java.lang.String-int-android.database.sqlite.SQLiteDatabase.CursorFactory-} +``` +public SQLiteDatabase openOrCreateDatabase(String arg0, int arg1, SQLiteDatabase.CursorFactory arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | int | | +| arg2 | android.database.sqlite.SQLiteDatabase.CursorFactory | | + +**Returns:** +android.database.sqlite.SQLiteDatabase +### openOrCreateDatabase(String arg0, int arg1, SQLiteDatabase.CursorFactory arg2, DatabaseErrorHandler arg3) {#openOrCreateDatabase-java.lang.String-int-android.database.sqlite.SQLiteDatabase.CursorFactory-android.database.DatabaseErrorHandler-} +``` +public SQLiteDatabase openOrCreateDatabase(String arg0, int arg1, SQLiteDatabase.CursorFactory arg2, DatabaseErrorHandler arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | int | | +| arg2 | android.database.sqlite.SQLiteDatabase.CursorFactory | | +| arg3 | android.database.DatabaseErrorHandler | | + +**Returns:** +android.database.sqlite.SQLiteDatabase +### overridePendingTransition(int arg0, int arg1) {#overridePendingTransition-int-int-} +``` +public void overridePendingTransition(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### overridePendingTransition(int arg0, int arg1, int arg2) {#overridePendingTransition-int-int-int-} +``` +public void overridePendingTransition(int arg0, int arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | + +### peekAvailableContext() {#peekAvailableContext--} +``` +public Context peekAvailableContext() +``` + + + + +**Returns:** +android.content.Context +### peekWallpaper() {#peekWallpaper--} +``` +public Drawable peekWallpaper() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### postponeEnterTransition() {#postponeEnterTransition--} +``` +public void postponeEnterTransition() +``` + + + + +### putExtraData(ComponentActivity.ExtraData arg0) {#putExtraData-androidx.core.app.ComponentActivity.ExtraData-} +``` +public void putExtraData(ComponentActivity.ExtraData arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.ComponentActivity.ExtraData | | + +### recreate() {#recreate--} +``` +public void recreate() +``` + + + + +### registerActivityLifecycleCallbacks(Application.ActivityLifecycleCallbacks arg0) {#registerActivityLifecycleCallbacks-android.app.Application.ActivityLifecycleCallbacks-} +``` +public void registerActivityLifecycleCallbacks(Application.ActivityLifecycleCallbacks arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Application.ActivityLifecycleCallbacks | | + +### registerComponentCallbacks(ComponentCallbacks arg0) {#registerComponentCallbacks-android.content.ComponentCallbacks-} +``` +public void registerComponentCallbacks(ComponentCallbacks arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ComponentCallbacks | | + +### registerForContextMenu(View arg0) {#registerForContextMenu-android.view.View-} +``` +public void registerForContextMenu(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### registerReceiver(BroadcastReceiver arg0, IntentFilter arg1) {#registerReceiver-android.content.BroadcastReceiver-android.content.IntentFilter-} +``` +public Intent registerReceiver(BroadcastReceiver arg0, IntentFilter arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.BroadcastReceiver | | +| arg1 | android.content.IntentFilter | | + +**Returns:** +android.content.Intent +### registerReceiver(BroadcastReceiver arg0, IntentFilter arg1, int arg2) {#registerReceiver-android.content.BroadcastReceiver-android.content.IntentFilter-int-} +``` +public Intent registerReceiver(BroadcastReceiver arg0, IntentFilter arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.BroadcastReceiver | | +| arg1 | android.content.IntentFilter | | +| arg2 | int | | + +**Returns:** +android.content.Intent +### registerReceiver(BroadcastReceiver arg0, IntentFilter arg1, String arg2, Handler arg3) {#registerReceiver-android.content.BroadcastReceiver-android.content.IntentFilter-java.lang.String-android.os.Handler-} +``` +public Intent registerReceiver(BroadcastReceiver arg0, IntentFilter arg1, String arg2, Handler arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.BroadcastReceiver | | +| arg1 | android.content.IntentFilter | | +| arg2 | java.lang.String | | +| arg3 | android.os.Handler | | + +**Returns:** +android.content.Intent +### registerReceiver(BroadcastReceiver arg0, IntentFilter arg1, String arg2, Handler arg3, int arg4) {#registerReceiver-android.content.BroadcastReceiver-android.content.IntentFilter-java.lang.String-android.os.Handler-int-} +``` +public Intent registerReceiver(BroadcastReceiver arg0, IntentFilter arg1, String arg2, Handler arg3, int arg4) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.BroadcastReceiver | | +| arg1 | android.content.IntentFilter | | +| arg2 | java.lang.String | | +| arg3 | android.os.Handler | | +| arg4 | int | | + +**Returns:** +android.content.Intent +### releaseInstance() {#releaseInstance--} +``` +public boolean releaseInstance() +``` + + + + +**Returns:** +boolean +### removeDialog(int arg0) {#removeDialog-int-} +``` +public final void removeDialog(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### removeMenuProvider(MenuProvider arg0) {#removeMenuProvider-androidx.core.view.MenuProvider-} +``` +public void removeMenuProvider(MenuProvider arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.view.MenuProvider | | + +### removeOnConfigurationChangedListener(Consumer arg0) {#removeOnConfigurationChangedListener-androidx.core.util.Consumer-android.content.res.Configuration--} +``` +public final void removeOnConfigurationChangedListener(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.util.Consumer | | + +### removeOnContextAvailableListener(OnContextAvailableListener arg0) {#removeOnContextAvailableListener-androidx.activity.contextaware.OnContextAvailableListener-} +``` +public final void removeOnContextAvailableListener(OnContextAvailableListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.contextaware.OnContextAvailableListener | | + +### removeOnMultiWindowModeChangedListener(Consumer arg0) {#removeOnMultiWindowModeChangedListener-androidx.core.util.Consumer-androidx.core.app.MultiWindowModeChangedInfo--} +``` +public final void removeOnMultiWindowModeChangedListener(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.util.Consumer | | + +### removeOnNewIntentListener(Consumer arg0) {#removeOnNewIntentListener-androidx.core.util.Consumer-android.content.Intent--} +``` +public final void removeOnNewIntentListener(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.util.Consumer | | + +### removeOnPictureInPictureModeChangedListener(Consumer arg0) {#removeOnPictureInPictureModeChangedListener-androidx.core.util.Consumer-androidx.core.app.PictureInPictureModeChangedInfo--} +``` +public final void removeOnPictureInPictureModeChangedListener(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.util.Consumer | | + +### removeOnTrimMemoryListener(Consumer arg0) {#removeOnTrimMemoryListener-androidx.core.util.Consumer-java.lang.Integer--} +``` +public final void removeOnTrimMemoryListener(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.util.Consumer | | + +### removeStickyBroadcast(Intent arg0) {#removeStickyBroadcast-android.content.Intent-} +``` +public void removeStickyBroadcast(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +### removeStickyBroadcastAsUser(Intent arg0, UserHandle arg1) {#removeStickyBroadcastAsUser-android.content.Intent-android.os.UserHandle-} +``` +public void removeStickyBroadcastAsUser(Intent arg0, UserHandle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.UserHandle | | + +### reportFullyDrawn() {#reportFullyDrawn--} +``` +public void reportFullyDrawn() +``` + + + + +### requestDragAndDropPermissions(DragEvent arg0) {#requestDragAndDropPermissions-android.view.DragEvent-} +``` +public DragAndDropPermissions requestDragAndDropPermissions(DragEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.DragEvent | | + +**Returns:** +android.view.DragAndDropPermissions +### requestPermissions(String[] arg0, int arg1) {#requestPermissions-java.lang.String---int-} +``` +public final void requestPermissions(String[] arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String[] | | +| arg1 | int | | + +### requestShowKeyboardShortcuts() {#requestShowKeyboardShortcuts--} +``` +public final void requestShowKeyboardShortcuts() +``` + + + + +### requestVisibleBehind(boolean arg0) {#requestVisibleBehind-boolean-} +``` +public boolean requestVisibleBehind(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +**Returns:** +boolean +### requestWindowFeature(int arg0) {#requestWindowFeature-int-} +``` +public final boolean requestWindowFeature(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### revokeSelfPermissionOnKill(String arg0) {#revokeSelfPermissionOnKill-java.lang.String-} +``` +public void revokeSelfPermissionOnKill(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +### revokeSelfPermissionsOnKill(Collection arg0) {#revokeSelfPermissionsOnKill-java.util.Collection-java.lang.String--} +``` +public void revokeSelfPermissionsOnKill(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +### revokeUriPermission(Uri arg0, int arg1) {#revokeUriPermission-android.net.Uri-int-} +``` +public void revokeUriPermission(Uri arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.net.Uri | | +| arg1 | int | | + +### revokeUriPermission(String arg0, Uri arg1, int arg2) {#revokeUriPermission-java.lang.String-android.net.Uri-int-} +``` +public void revokeUriPermission(String arg0, Uri arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | android.net.Uri | | +| arg2 | int | | + +### runOnUiThread(Runnable arg0) {#runOnUiThread-java.lang.Runnable-} +``` +public final void runOnUiThread(Runnable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | + +### sendBroadcast(Intent arg0) {#sendBroadcast-android.content.Intent-} +``` +public void sendBroadcast(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +### sendBroadcast(Intent arg0, String arg1) {#sendBroadcast-android.content.Intent-java.lang.String-} +``` +public void sendBroadcast(Intent arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | java.lang.String | | + +### sendBroadcastAsUser(Intent arg0, UserHandle arg1) {#sendBroadcastAsUser-android.content.Intent-android.os.UserHandle-} +``` +public void sendBroadcastAsUser(Intent arg0, UserHandle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.UserHandle | | + +### sendBroadcastAsUser(Intent arg0, UserHandle arg1, String arg2) {#sendBroadcastAsUser-android.content.Intent-android.os.UserHandle-java.lang.String-} +``` +public void sendBroadcastAsUser(Intent arg0, UserHandle arg1, String arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.UserHandle | | +| arg2 | java.lang.String | | + +### sendBroadcastWithMultiplePermissions(Intent arg0, String[] arg1) {#sendBroadcastWithMultiplePermissions-android.content.Intent-java.lang.String---} +``` +public void sendBroadcastWithMultiplePermissions(Intent arg0, String[] arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | java.lang.String[] | | + +### sendOrderedBroadcast(Intent arg0, int arg1, String arg2, String arg3, BroadcastReceiver arg4, Handler arg5, String arg6, Bundle arg7, Bundle arg8) {#sendOrderedBroadcast-android.content.Intent-int-java.lang.String-java.lang.String-android.content.BroadcastReceiver-android.os.Handler-java.lang.String-android.os.Bundle-android.os.Bundle-} +``` +public void sendOrderedBroadcast(Intent arg0, int arg1, String arg2, String arg3, BroadcastReceiver arg4, Handler arg5, String arg6, Bundle arg7, Bundle arg8) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | +| arg2 | java.lang.String | | +| arg3 | java.lang.String | | +| arg4 | android.content.BroadcastReceiver | | +| arg5 | android.os.Handler | | +| arg6 | java.lang.String | | +| arg7 | android.os.Bundle | | +| arg8 | android.os.Bundle | | + +### sendOrderedBroadcast(Intent arg0, String arg1) {#sendOrderedBroadcast-android.content.Intent-java.lang.String-} +``` +public void sendOrderedBroadcast(Intent arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | java.lang.String | | + +### sendOrderedBroadcast(Intent arg0, String arg1, BroadcastReceiver arg2, Handler arg3, int arg4, String arg5, Bundle arg6) {#sendOrderedBroadcast-android.content.Intent-java.lang.String-android.content.BroadcastReceiver-android.os.Handler-int-java.lang.String-android.os.Bundle-} +``` +public void sendOrderedBroadcast(Intent arg0, String arg1, BroadcastReceiver arg2, Handler arg3, int arg4, String arg5, Bundle arg6) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | java.lang.String | | +| arg2 | android.content.BroadcastReceiver | | +| arg3 | android.os.Handler | | +| arg4 | int | | +| arg5 | java.lang.String | | +| arg6 | android.os.Bundle | | + +### sendOrderedBroadcast(Intent arg0, String arg1, String arg2, BroadcastReceiver arg3, Handler arg4, int arg5, String arg6, Bundle arg7) {#sendOrderedBroadcast-android.content.Intent-java.lang.String-java.lang.String-android.content.BroadcastReceiver-android.os.Handler-int-java.lang.String-android.os.Bundle-} +``` +public void sendOrderedBroadcast(Intent arg0, String arg1, String arg2, BroadcastReceiver arg3, Handler arg4, int arg5, String arg6, Bundle arg7) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | java.lang.String | | +| arg2 | java.lang.String | | +| arg3 | android.content.BroadcastReceiver | | +| arg4 | android.os.Handler | | +| arg5 | int | | +| arg6 | java.lang.String | | +| arg7 | android.os.Bundle | | + +### sendOrderedBroadcastAsUser(Intent arg0, UserHandle arg1, String arg2, BroadcastReceiver arg3, Handler arg4, int arg5, String arg6, Bundle arg7) {#sendOrderedBroadcastAsUser-android.content.Intent-android.os.UserHandle-java.lang.String-android.content.BroadcastReceiver-android.os.Handler-int-java.lang.String-android.os.Bundle-} +``` +public void sendOrderedBroadcastAsUser(Intent arg0, UserHandle arg1, String arg2, BroadcastReceiver arg3, Handler arg4, int arg5, String arg6, Bundle arg7) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.UserHandle | | +| arg2 | java.lang.String | | +| arg3 | android.content.BroadcastReceiver | | +| arg4 | android.os.Handler | | +| arg5 | int | | +| arg6 | java.lang.String | | +| arg7 | android.os.Bundle | | + +### sendStickyBroadcast(Intent arg0) {#sendStickyBroadcast-android.content.Intent-} +``` +public void sendStickyBroadcast(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +### sendStickyBroadcast(Intent arg0, Bundle arg1) {#sendStickyBroadcast-android.content.Intent-android.os.Bundle-} +``` +public void sendStickyBroadcast(Intent arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.Bundle | | + +### sendStickyBroadcastAsUser(Intent arg0, UserHandle arg1) {#sendStickyBroadcastAsUser-android.content.Intent-android.os.UserHandle-} +``` +public void sendStickyBroadcastAsUser(Intent arg0, UserHandle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.UserHandle | | + +### sendStickyOrderedBroadcast(Intent arg0, BroadcastReceiver arg1, Handler arg2, int arg3, String arg4, Bundle arg5) {#sendStickyOrderedBroadcast-android.content.Intent-android.content.BroadcastReceiver-android.os.Handler-int-java.lang.String-android.os.Bundle-} +``` +public void sendStickyOrderedBroadcast(Intent arg0, BroadcastReceiver arg1, Handler arg2, int arg3, String arg4, Bundle arg5) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.content.BroadcastReceiver | | +| arg2 | android.os.Handler | | +| arg3 | int | | +| arg4 | java.lang.String | | +| arg5 | android.os.Bundle | | + +### sendStickyOrderedBroadcastAsUser(Intent arg0, UserHandle arg1, BroadcastReceiver arg2, Handler arg3, int arg4, String arg5, Bundle arg6) {#sendStickyOrderedBroadcastAsUser-android.content.Intent-android.os.UserHandle-android.content.BroadcastReceiver-android.os.Handler-int-java.lang.String-android.os.Bundle-} +``` +public void sendStickyOrderedBroadcastAsUser(Intent arg0, UserHandle arg1, BroadcastReceiver arg2, Handler arg3, int arg4, String arg5, Bundle arg6) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.UserHandle | | +| arg2 | android.content.BroadcastReceiver | | +| arg3 | android.os.Handler | | +| arg4 | int | | +| arg5 | java.lang.String | | +| arg6 | android.os.Bundle | | + +### setActionBar(Toolbar arg0) {#setActionBar-android.widget.Toolbar-} +``` +public void setActionBar(Toolbar arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.widget.Toolbar | | + +### setContentTransitionManager(TransitionManager arg0) {#setContentTransitionManager-android.transition.TransitionManager-} +``` +public void setContentTransitionManager(TransitionManager arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.transition.TransitionManager | | + +### setContentView(View arg0) {#setContentView-android.view.View-} +``` +public void setContentView(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### setContentView(View arg0, ViewGroup.LayoutParams arg1) {#setContentView-android.view.View-android.view.ViewGroup.LayoutParams-} +``` +public void setContentView(View arg0, ViewGroup.LayoutParams arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | +| arg1 | android.view.ViewGroup.LayoutParams | | + +### setContentView(int arg0) {#setContentView-int-} +``` +public void setContentView(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setDefaultKeyMode(int arg0) {#setDefaultKeyMode-int-} +``` +public final void setDefaultKeyMode(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setEnterSharedElementCallback(SharedElementCallback arg0) {#setEnterSharedElementCallback-android.app.SharedElementCallback-} +``` +public void setEnterSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.SharedElementCallback | | + +### setEnterSharedElementCallback(SharedElementCallback arg0) {#setEnterSharedElementCallback-androidx.core.app.SharedElementCallback-} +``` +public void setEnterSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.SharedElementCallback | | + +### setExitSharedElementCallback(SharedElementCallback arg0) {#setExitSharedElementCallback-android.app.SharedElementCallback-} +``` +public void setExitSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.SharedElementCallback | | + +### setExitSharedElementCallback(SharedElementCallback arg0) {#setExitSharedElementCallback-androidx.core.app.SharedElementCallback-} +``` +public void setExitSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.SharedElementCallback | | + +### setFeatureDrawable(int arg0, Drawable arg1) {#setFeatureDrawable-int-android.graphics.drawable.Drawable-} +``` +public final void setFeatureDrawable(int arg0, Drawable arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.graphics.drawable.Drawable | | + +### setFeatureDrawableAlpha(int arg0, int arg1) {#setFeatureDrawableAlpha-int-int-} +``` +public final void setFeatureDrawableAlpha(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### setFeatureDrawableResource(int arg0, int arg1) {#setFeatureDrawableResource-int-int-} +``` +public final void setFeatureDrawableResource(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### setFeatureDrawableUri(int arg0, Uri arg1) {#setFeatureDrawableUri-int-android.net.Uri-} +``` +public final void setFeatureDrawableUri(int arg0, Uri arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.net.Uri | | + +### setFinishOnTouchOutside(boolean arg0) {#setFinishOnTouchOutside-boolean-} +``` +public void setFinishOnTouchOutside(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setImmersive(boolean arg0) {#setImmersive-boolean-} +``` +public void setImmersive(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setInheritShowWhenLocked(boolean arg0) {#setInheritShowWhenLocked-boolean-} +``` +public void setInheritShowWhenLocked(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setIntent(Intent arg0) {#setIntent-android.content.Intent-} +``` +public void setIntent(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +### setLocusContext(LocusId arg0, Bundle arg1) {#setLocusContext-android.content.LocusId-android.os.Bundle-} +``` +public void setLocusContext(LocusId arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.LocusId | | +| arg1 | android.os.Bundle | | + +### setMediaController(MediaController arg0) {#setMediaController-android.media.session.MediaController-} +``` +public final void setMediaController(MediaController arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.media.session.MediaController | | + +### setPictureInPictureParams(PictureInPictureParams arg0) {#setPictureInPictureParams-android.app.PictureInPictureParams-} +``` +public void setPictureInPictureParams(PictureInPictureParams arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.PictureInPictureParams | | + +### setProgress(int arg0) {#setProgress-int-} +``` +public final void setProgress(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setProgressBarIndeterminate(boolean arg0) {#setProgressBarIndeterminate-boolean-} +``` +public final void setProgressBarIndeterminate(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setProgressBarIndeterminateVisibility(boolean arg0) {#setProgressBarIndeterminateVisibility-boolean-} +``` +public final void setProgressBarIndeterminateVisibility(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setProgressBarVisibility(boolean arg0) {#setProgressBarVisibility-boolean-} +``` +public final void setProgressBarVisibility(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setRecentsScreenshotEnabled(boolean arg0) {#setRecentsScreenshotEnabled-boolean-} +``` +public void setRecentsScreenshotEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setRequestedOrientation(int arg0) {#setRequestedOrientation-int-} +``` +public void setRequestedOrientation(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setResult(int arg0) {#setResult-int-} +``` +public final void setResult(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setResult(int arg0, Intent arg1) {#setResult-int-android.content.Intent-} +``` +public final void setResult(int arg0, Intent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.content.Intent | | + +### setSecondaryProgress(int arg0) {#setSecondaryProgress-int-} +``` +public final void setSecondaryProgress(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setShouldDockBigOverlays(boolean arg0) {#setShouldDockBigOverlays-boolean-} +``` +public void setShouldDockBigOverlays(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setShowWhenLocked(boolean arg0) {#setShowWhenLocked-boolean-} +``` +public void setShowWhenLocked(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSupportActionBar(Toolbar arg0) {#setSupportActionBar-androidx.appcompat.widget.Toolbar-} +``` +public void setSupportActionBar(Toolbar arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.appcompat.widget.Toolbar | | + +### setSupportProgress(int arg0) {#setSupportProgress-int-} +``` +public void setSupportProgress(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setSupportProgressBarIndeterminate(boolean arg0) {#setSupportProgressBarIndeterminate-boolean-} +``` +public void setSupportProgressBarIndeterminate(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSupportProgressBarIndeterminateVisibility(boolean arg0) {#setSupportProgressBarIndeterminateVisibility-boolean-} +``` +public void setSupportProgressBarIndeterminateVisibility(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSupportProgressBarVisibility(boolean arg0) {#setSupportProgressBarVisibility-boolean-} +``` +public void setSupportProgressBarVisibility(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setTaskDescription(ActivityManager.TaskDescription arg0) {#setTaskDescription-android.app.ActivityManager.TaskDescription-} +``` +public void setTaskDescription(ActivityManager.TaskDescription arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.ActivityManager.TaskDescription | | + +### setTheme(Resources.Theme arg0) {#setTheme-android.content.res.Resources.Theme-} +``` +public void setTheme(Resources.Theme arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.Resources.Theme | | + +### setTheme(int arg0) {#setTheme-int-} +``` +public void setTheme(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTitle(int arg0) {#setTitle-int-} +``` +public void setTitle(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTitle(CharSequence arg0) {#setTitle-java.lang.CharSequence-} +``` +public void setTitle(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setTitleColor(int arg0) {#setTitleColor-int-} +``` +public void setTitleColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTranslucent(boolean arg0) {#setTranslucent-boolean-} +``` +public boolean setTranslucent(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +**Returns:** +boolean +### setTurnScreenOn(boolean arg0) {#setTurnScreenOn-boolean-} +``` +public void setTurnScreenOn(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setVisible(boolean arg0) {#setVisible-boolean-} +``` +public void setVisible(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setVolumeControlStream(int arg0) {#setVolumeControlStream-int-} +``` +public final void setVolumeControlStream(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setVrModeEnabled(boolean arg0, ComponentName arg1) {#setVrModeEnabled-boolean-android.content.ComponentName-} +``` +public void setVrModeEnabled(boolean arg0, ComponentName arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | +| arg1 | android.content.ComponentName | | + +### setWallpaper(Bitmap arg0) {#setWallpaper-android.graphics.Bitmap-} +``` +public void setWallpaper(Bitmap arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Bitmap | | + +### setWallpaper(InputStream arg0) {#setWallpaper-java.io.InputStream-} +``` +public void setWallpaper(InputStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.InputStream | | + +### shouldDockBigOverlays() {#shouldDockBigOverlays--} +``` +public boolean shouldDockBigOverlays() +``` + + + + +**Returns:** +boolean +### shouldShowRequestPermissionRationale(String arg0) {#shouldShowRequestPermissionRationale-java.lang.String-} +``` +public boolean shouldShowRequestPermissionRationale(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +boolean +### shouldUpRecreateTask(Intent arg0) {#shouldUpRecreateTask-android.content.Intent-} +``` +public boolean shouldUpRecreateTask(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +**Returns:** +boolean +### showAssist(Bundle arg0) {#showAssist-android.os.Bundle-} +``` +public boolean showAssist(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +**Returns:** +boolean +### showDialog(int arg0) {#showDialog-int-} +``` +public final void showDialog(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### showDialog(int arg0, Bundle arg1) {#showDialog-int-android.os.Bundle-} +``` +public final boolean showDialog(int arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.os.Bundle | | + +**Returns:** +boolean +### showLockTaskEscapeMessage() {#showLockTaskEscapeMessage--} +``` +public void showLockTaskEscapeMessage() +``` + + + + +### startActionMode(ActionMode.Callback arg0) {#startActionMode-android.view.ActionMode.Callback-} +``` +public ActionMode startActionMode(ActionMode.Callback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode.Callback | | + +**Returns:** +android.view.ActionMode +### startActionMode(ActionMode.Callback arg0, int arg1) {#startActionMode-android.view.ActionMode.Callback-int-} +``` +public ActionMode startActionMode(ActionMode.Callback arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode.Callback | | +| arg1 | int | | + +**Returns:** +android.view.ActionMode +### startActivities(Intent[] arg0) {#startActivities-android.content.Intent---} +``` +public void startActivities(Intent[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent[] | | + +### startActivities(Intent[] arg0, Bundle arg1) {#startActivities-android.content.Intent---android.os.Bundle-} +``` +public void startActivities(Intent[] arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent[] | | +| arg1 | android.os.Bundle | | + +### startActivity(Intent arg0) {#startActivity-android.content.Intent-} +``` +public void startActivity(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +### startActivity(Intent arg0, Bundle arg1) {#startActivity-android.content.Intent-android.os.Bundle-} +``` +public void startActivity(Intent arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.Bundle | | + +### startActivityForResult(Intent arg0, int arg1) {#startActivityForResult-android.content.Intent-int-} +``` +public void startActivityForResult(Intent arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | + +### startActivityForResult(Intent arg0, int arg1, Bundle arg2) {#startActivityForResult-android.content.Intent-int-android.os.Bundle-} +``` +public void startActivityForResult(Intent arg0, int arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | +| arg2 | android.os.Bundle | | + +### startActivityFromChild(Activity arg0, Intent arg1, int arg2) {#startActivityFromChild-android.app.Activity-android.content.Intent-int-} +``` +public void startActivityFromChild(Activity arg0, Intent arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | +| arg1 | android.content.Intent | | +| arg2 | int | | + +### startActivityFromChild(Activity arg0, Intent arg1, int arg2, Bundle arg3) {#startActivityFromChild-android.app.Activity-android.content.Intent-int-android.os.Bundle-} +``` +public void startActivityFromChild(Activity arg0, Intent arg1, int arg2, Bundle arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | +| arg1 | android.content.Intent | | +| arg2 | int | | +| arg3 | android.os.Bundle | | + +### startActivityFromFragment(Fragment arg0, Intent arg1, int arg2) {#startActivityFromFragment-android.app.Fragment-android.content.Intent-int-} +``` +public void startActivityFromFragment(Fragment arg0, Intent arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Fragment | | +| arg1 | android.content.Intent | | +| arg2 | int | | + +### startActivityFromFragment(Fragment arg0, Intent arg1, int arg2, Bundle arg3) {#startActivityFromFragment-android.app.Fragment-android.content.Intent-int-android.os.Bundle-} +``` +public void startActivityFromFragment(Fragment arg0, Intent arg1, int arg2, Bundle arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Fragment | | +| arg1 | android.content.Intent | | +| arg2 | int | | +| arg3 | android.os.Bundle | | + +### startActivityFromFragment(Fragment arg0, Intent arg1, int arg2) {#startActivityFromFragment-androidx.fragment.app.Fragment-android.content.Intent-int-} +``` +public void startActivityFromFragment(Fragment arg0, Intent arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | +| arg1 | android.content.Intent | | +| arg2 | int | | + +### startActivityFromFragment(Fragment arg0, Intent arg1, int arg2, Bundle arg3) {#startActivityFromFragment-androidx.fragment.app.Fragment-android.content.Intent-int-android.os.Bundle-} +``` +public void startActivityFromFragment(Fragment arg0, Intent arg1, int arg2, Bundle arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | +| arg1 | android.content.Intent | | +| arg2 | int | | +| arg3 | android.os.Bundle | | + +### startActivityIfNeeded(Intent arg0, int arg1) {#startActivityIfNeeded-android.content.Intent-int-} +``` +public boolean startActivityIfNeeded(Intent arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | + +**Returns:** +boolean +### startActivityIfNeeded(Intent arg0, int arg1, Bundle arg2) {#startActivityIfNeeded-android.content.Intent-int-android.os.Bundle-} +``` +public boolean startActivityIfNeeded(Intent arg0, int arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | +| arg2 | android.os.Bundle | | + +**Returns:** +boolean +### startForegroundService(Intent arg0) {#startForegroundService-android.content.Intent-} +``` +public ComponentName startForegroundService(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +**Returns:** +android.content.ComponentName +### startInstrumentation(ComponentName arg0, String arg1, Bundle arg2) {#startInstrumentation-android.content.ComponentName-java.lang.String-android.os.Bundle-} +``` +public boolean startInstrumentation(ComponentName arg0, String arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ComponentName | | +| arg1 | java.lang.String | | +| arg2 | android.os.Bundle | | + +**Returns:** +boolean +### startIntentSender(IntentSender arg0, Intent arg1, int arg2, int arg3, int arg4) {#startIntentSender-android.content.IntentSender-android.content.Intent-int-int-int-} +``` +public void startIntentSender(IntentSender arg0, Intent arg1, int arg2, int arg3, int arg4) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.IntentSender | | +| arg1 | android.content.Intent | | +| arg2 | int | | +| arg3 | int | | +| arg4 | int | | + +### startIntentSender(IntentSender arg0, Intent arg1, int arg2, int arg3, int arg4, Bundle arg5) {#startIntentSender-android.content.IntentSender-android.content.Intent-int-int-int-android.os.Bundle-} +``` +public void startIntentSender(IntentSender arg0, Intent arg1, int arg2, int arg3, int arg4, Bundle arg5) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.IntentSender | | +| arg1 | android.content.Intent | | +| arg2 | int | | +| arg3 | int | | +| arg4 | int | | +| arg5 | android.os.Bundle | | + +### startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5) {#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-} +``` +public void startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.IntentSender | | +| arg1 | int | | +| arg2 | android.content.Intent | | +| arg3 | int | | +| arg4 | int | | +| arg5 | int | | + +### startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6) {#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-} +``` +public void startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.IntentSender | | +| arg1 | int | | +| arg2 | android.content.Intent | | +| arg3 | int | | +| arg4 | int | | +| arg5 | int | | +| arg6 | android.os.Bundle | | + +### startIntentSenderFromChild(Activity arg0, IntentSender arg1, int arg2, Intent arg3, int arg4, int arg5, int arg6) {#startIntentSenderFromChild-android.app.Activity-android.content.IntentSender-int-android.content.Intent-int-int-int-} +``` +public void startIntentSenderFromChild(Activity arg0, IntentSender arg1, int arg2, Intent arg3, int arg4, int arg5, int arg6) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | +| arg1 | android.content.IntentSender | | +| arg2 | int | | +| arg3 | android.content.Intent | | +| arg4 | int | | +| arg5 | int | | +| arg6 | int | | + +### startIntentSenderFromChild(Activity arg0, IntentSender arg1, int arg2, Intent arg3, int arg4, int arg5, int arg6, Bundle arg7) {#startIntentSenderFromChild-android.app.Activity-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-} +``` +public void startIntentSenderFromChild(Activity arg0, IntentSender arg1, int arg2, Intent arg3, int arg4, int arg5, int arg6, Bundle arg7) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | +| arg1 | android.content.IntentSender | | +| arg2 | int | | +| arg3 | android.content.Intent | | +| arg4 | int | | +| arg5 | int | | +| arg6 | int | | +| arg7 | android.os.Bundle | | + +### startIntentSenderFromFragment(Fragment arg0, IntentSender arg1, int arg2, Intent arg3, int arg4, int arg5, int arg6, Bundle arg7) {#startIntentSenderFromFragment-androidx.fragment.app.Fragment-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-} +``` +public void startIntentSenderFromFragment(Fragment arg0, IntentSender arg1, int arg2, Intent arg3, int arg4, int arg5, int arg6, Bundle arg7) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | +| arg1 | android.content.IntentSender | | +| arg2 | int | | +| arg3 | android.content.Intent | | +| arg4 | int | | +| arg5 | int | | +| arg6 | int | | +| arg7 | android.os.Bundle | | + +### startLocalVoiceInteraction(Bundle arg0) {#startLocalVoiceInteraction-android.os.Bundle-} +``` +public void startLocalVoiceInteraction(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### startLockTask() {#startLockTask--} +``` +public void startLockTask() +``` + + + + +### startManagingCursor(Cursor arg0) {#startManagingCursor-android.database.Cursor-} +``` +public void startManagingCursor(Cursor arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.database.Cursor | | + +### startNextMatchingActivity(Intent arg0) {#startNextMatchingActivity-android.content.Intent-} +``` +public boolean startNextMatchingActivity(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +**Returns:** +boolean +### startNextMatchingActivity(Intent arg0, Bundle arg1) {#startNextMatchingActivity-android.content.Intent-android.os.Bundle-} +``` +public boolean startNextMatchingActivity(Intent arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.Bundle | | + +**Returns:** +boolean +### startPostponedEnterTransition() {#startPostponedEnterTransition--} +``` +public void startPostponedEnterTransition() +``` + + + + +### startSearch(String arg0, boolean arg1, Bundle arg2, boolean arg3) {#startSearch-java.lang.String-boolean-android.os.Bundle-boolean-} +``` +public void startSearch(String arg0, boolean arg1, Bundle arg2, boolean arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | boolean | | +| arg2 | android.os.Bundle | | +| arg3 | boolean | | + +### startService(Intent arg0) {#startService-android.content.Intent-} +``` +public ComponentName startService(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +**Returns:** +android.content.ComponentName +### startSupportActionMode(ActionMode.Callback arg0) {#startSupportActionMode-androidx.appcompat.view.ActionMode.Callback-} +``` +public ActionMode startSupportActionMode(ActionMode.Callback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.appcompat.view.ActionMode.Callback | | + +**Returns:** +androidx.appcompat.view.ActionMode +### stopLocalVoiceInteraction() {#stopLocalVoiceInteraction--} +``` +public void stopLocalVoiceInteraction() +``` + + + + +### stopLockTask() {#stopLockTask--} +``` +public void stopLockTask() +``` + + + + +### stopManagingCursor(Cursor arg0) {#stopManagingCursor-android.database.Cursor-} +``` +public void stopManagingCursor(Cursor arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.database.Cursor | | + +### stopService(Intent arg0) {#stopService-android.content.Intent-} +``` +public boolean stopService(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +**Returns:** +boolean +### superDispatchKeyEvent(KeyEvent arg0) {#superDispatchKeyEvent-android.view.KeyEvent-} +``` +public boolean superDispatchKeyEvent(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### supportFinishAfterTransition() {#supportFinishAfterTransition--} +``` +public void supportFinishAfterTransition() +``` + + + + +### supportInvalidateOptionsMenu() {#supportInvalidateOptionsMenu--} +``` +public void supportInvalidateOptionsMenu() +``` + + + + +### supportNavigateUpTo(Intent arg0) {#supportNavigateUpTo-android.content.Intent-} +``` +public void supportNavigateUpTo(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +### supportPostponeEnterTransition() {#supportPostponeEnterTransition--} +``` +public void supportPostponeEnterTransition() +``` + + + + +### supportRequestWindowFeature(int arg0) {#supportRequestWindowFeature-int-} +``` +public boolean supportRequestWindowFeature(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### supportShouldUpRecreateTask(Intent arg0) {#supportShouldUpRecreateTask-android.content.Intent-} +``` +public boolean supportShouldUpRecreateTask(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +**Returns:** +boolean +### supportStartPostponedEnterTransition() {#supportStartPostponedEnterTransition--} +``` +public void supportStartPostponedEnterTransition() +``` + + + + +### takeKeyEvents(boolean arg0) {#takeKeyEvents-boolean-} +``` +public void takeKeyEvents(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### triggerSearch(String arg0, Bundle arg1) {#triggerSearch-java.lang.String-android.os.Bundle-} +``` +public void triggerSearch(String arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | android.os.Bundle | | + +### unbindService(ServiceConnection arg0) {#unbindService-android.content.ServiceConnection-} +``` +public void unbindService(ServiceConnection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ServiceConnection | | + +### unregisterActivityLifecycleCallbacks(Application.ActivityLifecycleCallbacks arg0) {#unregisterActivityLifecycleCallbacks-android.app.Application.ActivityLifecycleCallbacks-} +``` +public void unregisterActivityLifecycleCallbacks(Application.ActivityLifecycleCallbacks arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Application.ActivityLifecycleCallbacks | | + +### unregisterComponentCallbacks(ComponentCallbacks arg0) {#unregisterComponentCallbacks-android.content.ComponentCallbacks-} +``` +public void unregisterComponentCallbacks(ComponentCallbacks arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ComponentCallbacks | | + +### unregisterForContextMenu(View arg0) {#unregisterForContextMenu-android.view.View-} +``` +public void unregisterForContextMenu(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### unregisterReceiver(BroadcastReceiver arg0) {#unregisterReceiver-android.content.BroadcastReceiver-} +``` +public void unregisterReceiver(BroadcastReceiver arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.BroadcastReceiver | | + +### updateServiceGroup(ServiceConnection arg0, int arg1, int arg2) {#updateServiceGroup-android.content.ServiceConnection-int-int-} +``` +public void updateServiceGroup(ServiceConnection arg0, int arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ServiceConnection | | +| arg1 | int | | +| arg2 | int | | + +### validateRequestPermissionsRequestCode(int arg0) {#validateRequestPermissionsRequestCode-int-} +``` +public final void validateRequestPermissionsRequestCode(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerfragment/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerfragment/_index.md new file mode 100644 index 000000000..f79c9ffa2 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerfragment/_index.md @@ -0,0 +1,1788 @@ +--- +title: BarcodeScannerFragment +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Fragment pour la reconnaissance des codes-barres. +type: docs +weight: 14 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerfragment/ +--- +**Inheritance:** +java.lang.Object, androidx.fragment.app.Fragment +``` +public class BarcodeScannerFragment extends Fragment +``` + +Fragment pour la reconnaissance de codes-barres. Ce fragment peut être placé dans une Activity personnalisée ou dans un FragmentContainerView et utilisé pour le scan et la reconnaissance des codes-barres. + +Exemple + +Exemple de mise en page du fragment + +code Java + +// Initialisation de BarcodeScannerFragment // Il peut être réalisé en utilisant un fichier de ressources ou programmatique/ BarcodeScannerFragment barcodeScannerFragment = new BarcodeScannerFragment(); + +// Attachement de BarcodeScannerFragment à une mise en page personnalisée // Il prendra la taille du conteneur parent requireActivity().getSupportFragmentManager().beginTransaction().add(R.id.barcodeScannerFragmentContainerView, barcodeReaderFragment).commit(); // Les préférences BarcodeRecognitionSettings doivent être initialisées après l'attachement de BarcodeScannerFragment à l'activité parente. // BarcodeScannerFragmentPreferencesHandler sera appelé après la méthode BarcodeScannerFragment.onCreate() barcodeScannerFragment.setBarcodePreferencesHandler(new BarcodeScannerFragmentPreferencesHandler() \{ +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarcodeScannerFragment()](#BarcodeScannerFragment--) | Constructeur par défaut | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1)](#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultCallback-O--) | | +| [registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2)](#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultRegistry-androidx.activity.result.ActivityResultCallback-O--) | | +| [dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3)](#dump-java.lang.String-java.io.FileDescriptor-java.io.PrintWriter-java.lang.String---) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getActivity()](#getActivity--) | | +| [getAllowEnterTransitionOverlap()](#getAllowEnterTransitionOverlap--) | | +| [getAllowReturnTransitionOverlap()](#getAllowReturnTransitionOverlap--) | | +| [getArguments()](#getArguments--) | | +| [getBarcodeRecognitionSettings()](#getBarcodeRecognitionSettings--) | Définit le BarcodeScannerFragmentPreferencesHandler qui peut être appelé après la méthode BarcodeScannerFragment.onViewCreated() | +| [getChildFragmentManager()](#getChildFragmentManager--) | | +| [getClass()](#getClass--) | | +| [getContext()](#getContext--) | | +| [getDefaultViewModelProviderFactory()](#getDefaultViewModelProviderFactory--) | | +| [getEnterTransition()](#getEnterTransition--) | | +| [getExitTransition()](#getExitTransition--) | | +| [getFragmentManager()](#getFragmentManager--) | | +| [getHost()](#getHost--) | | +| [getId()](#getId--) | | +| [getLayoutInflater()](#getLayoutInflater--) | | +| [getLayoutInflater(Bundle arg0)](#getLayoutInflater-android.os.Bundle-) | | +| [getLifecycle()](#getLifecycle--) | | +| [getLoaderManager()](#getLoaderManager--) | | +| [getParentFragment()](#getParentFragment--) | | +| [getParentFragmentManager()](#getParentFragmentManager--) | | +| [getReenterTransition()](#getReenterTransition--) | | +| [getResources()](#getResources--) | | +| [getRetainInstance()](#getRetainInstance--) | | +| [getReturnTransition()](#getReturnTransition--) | | +| [getSavedStateRegistry()](#getSavedStateRegistry--) | | +| [getSharedElementEnterTransition()](#getSharedElementEnterTransition--) | | +| [getSharedElementReturnTransition()](#getSharedElementReturnTransition--) | | +| [getString(int arg0)](#getString-int-) | | +| [getString(int arg0, Object[] arg1)](#getString-int-java.lang.Object...-) | | +| [getTag()](#getTag--) | | +| [getTargetFragment()](#getTargetFragment--) | | +| [getTargetRequestCode()](#getTargetRequestCode--) | | +| [getText(int arg0)](#getText-int-) | | +| [getUserVisibleHint()](#getUserVisibleHint--) | | +| [getView()](#getView--) | | +| [getViewLifecycleOwner()](#getViewLifecycleOwner--) | | +| [getViewLifecycleOwnerLiveData()](#getViewLifecycleOwnerLiveData--) | | +| [getViewModelStore()](#getViewModelStore--) | | +| [hasOptionsMenu()](#hasOptionsMenu--) | | +| [hashCode()](#hashCode--) | | +| [instantiate(Context arg0, String arg1)](#instantiate-android.content.Context-java.lang.String-) | | +| [instantiate(Context arg0, String arg1, Bundle arg2)](#instantiate-android.content.Context-java.lang.String-android.os.Bundle-) | | +| [isAdded()](#isAdded--) | | +| [isDetached()](#isDetached--) | | +| [isHidden()](#isHidden--) | | +| [isInLayout()](#isInLayout--) | | +| [isMenuVisible()](#isMenuVisible--) | | +| [isRemoving()](#isRemoving--) | | +| [isResumed()](#isResumed--) | | +| [isShowPreferencesButton()](#isShowPreferencesButton--) | TODO Interne ? Le bouton d'affichage des préférences, pour BarcodeScanner, est toujours faux | +| [isStateSaved()](#isStateSaved--) | | +| [isVisible()](#isVisible--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [onActivityCreated(Bundle arg0)](#onActivityCreated-android.os.Bundle-) | | +| [onActivityResult(int arg0, int arg1, Intent arg2)](#onActivityResult-int-int-android.content.Intent-) | | +| [onAttach(Activity arg0)](#onAttach-android.app.Activity-) | | +| [onAttach(Context arg0)](#onAttach-android.content.Context-) | | +| [onAttachFragment(Fragment arg0)](#onAttachFragment-androidx.fragment.app.Fragment-) | | +| [onConfigurationChanged(Configuration arg0)](#onConfigurationChanged-android.content.res.Configuration-) | | +| [onContextItemSelected(MenuItem arg0)](#onContextItemSelected-android.view.MenuItem-) | | +| [onCreate(Bundle arg0)](#onCreate-android.os.Bundle-) | | +| [onCreateAnimation(int arg0, boolean arg1, int arg2)](#onCreateAnimation-int-boolean-int-) | | +| [onCreateAnimator(int arg0, boolean arg1, int arg2)](#onCreateAnimator-int-boolean-int-) | | +| [onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2)](#onCreateContextMenu-android.view.ContextMenu-android.view.View-android.view.ContextMenu.ContextMenuInfo-) | | +| [onCreateOptionsMenu(Menu arg0, MenuInflater arg1)](#onCreateOptionsMenu-android.view.Menu-android.view.MenuInflater-) | | +| [onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)](#onCreateView-android.view.LayoutInflater-android.view.ViewGroup-android.os.Bundle-) | | +| [onDestroy()](#onDestroy--) | | +| [onDestroyOptionsMenu()](#onDestroyOptionsMenu--) | | +| [onDestroyView()](#onDestroyView--) | | +| [onDetach()](#onDetach--) | | +| [onGetLayoutInflater(Bundle arg0)](#onGetLayoutInflater-android.os.Bundle-) | | +| [onHiddenChanged(boolean arg0)](#onHiddenChanged-boolean-) | | +| [onInflate(Activity arg0, AttributeSet arg1, Bundle arg2)](#onInflate-android.app.Activity-android.util.AttributeSet-android.os.Bundle-) | | +| [onInflate(Context context, AttributeSet attrs, Bundle savedInstanceState)](#onInflate-android.content.Context-android.util.AttributeSet-android.os.Bundle-) | | +| [onLowMemory()](#onLowMemory--) | | +| [onMultiWindowModeChanged(boolean arg0)](#onMultiWindowModeChanged-boolean-) | | +| [onOptionsItemSelected(MenuItem arg0)](#onOptionsItemSelected-android.view.MenuItem-) | | +| [onOptionsMenuClosed(Menu arg0)](#onOptionsMenuClosed-android.view.Menu-) | | +| [onPause()](#onPause--) | | +| [onPictureInPictureModeChanged(boolean arg0)](#onPictureInPictureModeChanged-boolean-) | | +| [onPrepareOptionsMenu(Menu arg0)](#onPrepareOptionsMenu-android.view.Menu-) | | +| [onPrimaryNavigationFragmentChanged(boolean arg0)](#onPrimaryNavigationFragmentChanged-boolean-) | | +| [onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2)](#onRequestPermissionsResult-int-java.lang.String---int---) | | +| [onResume()](#onResume--) | | +| [onSaveInstanceState(Bundle arg0)](#onSaveInstanceState-android.os.Bundle-) | | +| [onStart()](#onStart--) | | +| [onStop()](#onStop--) | | +| [onViewCreated(View view, Bundle savedInstanceState)](#onViewCreated-android.view.View-android.os.Bundle-) | | +| [onViewStateRestored(Bundle arg0)](#onViewStateRestored-android.os.Bundle-) | | +| [postponeEnterTransition()](#postponeEnterTransition--) | | +| [postponeEnterTransition(long arg0, TimeUnit arg1)](#postponeEnterTransition-long-java.util.concurrent.TimeUnit-) | | +| [registerForContextMenu(View arg0)](#registerForContextMenu-android.view.View-) | | +| [requestPermissions(String[] arg0, int arg1)](#requestPermissions-java.lang.String---int-) | | +| [requireActivity()](#requireActivity--) | | +| [requireArguments()](#requireArguments--) | | +| [requireContext()](#requireContext--) | | +| [requireFragmentManager()](#requireFragmentManager--) | | +| [requireHost()](#requireHost--) | | +| [requireParentFragment()](#requireParentFragment--) | | +| [requireView()](#requireView--) | | +| [setAllowEnterTransitionOverlap(boolean arg0)](#setAllowEnterTransitionOverlap-boolean-) | | +| [setAllowReturnTransitionOverlap(boolean arg0)](#setAllowReturnTransitionOverlap-boolean-) | | +| [setArguments(Bundle arg0)](#setArguments-android.os.Bundle-) | | +| [setEnterSharedElementCallback(SharedElementCallback arg0)](#setEnterSharedElementCallback-androidx.core.app.SharedElementCallback-) | | +| [setEnterTransition(Object arg0)](#setEnterTransition-java.lang.Object-) | | +| [setExitSharedElementCallback(SharedElementCallback arg0)](#setExitSharedElementCallback-androidx.core.app.SharedElementCallback-) | | +| [setExitTransition(Object arg0)](#setExitTransition-java.lang.Object-) | | +| [setHasOptionsMenu(boolean arg0)](#setHasOptionsMenu-boolean-) | | +| [setInitialSavedState(Fragment.SavedState arg0)](#setInitialSavedState-androidx.fragment.app.Fragment.SavedState-) | | +| [setMenuVisibility(boolean arg0)](#setMenuVisibility-boolean-) | | +| [setPreferencesFragment(BarcodeScannerPreferencesFragment preferencesFragment)](#setPreferencesFragment-com.aspose.barcode.component.barcodescanner.BarcodeScannerPreferencesFragment-) | Définit une implémentation personnalisée de PreferencesFragment. | +| [setReenterTransition(Object arg0)](#setReenterTransition-java.lang.Object-) | | +| [setRetainInstance(boolean arg0)](#setRetainInstance-boolean-) | | +| [setReturnTransition(Object arg0)](#setReturnTransition-java.lang.Object-) | | +| [setSharedElementEnterTransition(Object arg0)](#setSharedElementEnterTransition-java.lang.Object-) | | +| [setSharedElementReturnTransition(Object arg0)](#setSharedElementReturnTransition-java.lang.Object-) | | +| [setShowPreferencesButton(boolean showPreferencesButton)](#setShowPreferencesButton-boolean-) | Définit le bouton d'affichage des préférences, pour BarcodeScanner, toujours faux | +| [setTargetFragment(Fragment arg0, int arg1)](#setTargetFragment-androidx.fragment.app.Fragment-int-) | | +| [setUserVisibleHint(boolean arg0)](#setUserVisibleHint-boolean-) | | +| [shouldShowRequestPermissionRationale(String arg0)](#shouldShowRequestPermissionRationale-java.lang.String-) | | +| [startActivity(Intent arg0)](#startActivity-android.content.Intent-) | | +| [startActivity(Intent arg0, Bundle arg1)](#startActivity-android.content.Intent-android.os.Bundle-) | | +| [startActivityForResult(Intent arg0, int arg1)](#startActivityForResult-android.content.Intent-int-) | | +| [startActivityForResult(Intent arg0, int arg1, Bundle arg2)](#startActivityForResult-android.content.Intent-int-android.os.Bundle-) | | +| [startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6)](#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-) | | +| [startPostponedEnterTransition()](#startPostponedEnterTransition--) | | +| [toString()](#toString--) | | +| [unregisterForContextMenu(View arg0)](#unregisterForContextMenu-android.view.View-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarcodeScannerFragment() {#BarcodeScannerFragment--} +``` +public BarcodeScannerFragment() +``` + + +Constructeur par défaut + +### registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1) {#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultCallback-O--} +``` +public final ActivityResultLauncher registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.result.contract.ActivityResultContract | | +| arg1 | androidx.activity.result.ActivityResultCallback | | + +**Returns:** +androidx.activity.result.ActivityResultLauncher +### registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2) {#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultRegistry-androidx.activity.result.ActivityResultCallback-O--} +``` +public final ActivityResultLauncher registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.result.contract.ActivityResultContract | | +| arg1 | androidx.activity.result.ActivityResultRegistry | | +| arg2 | androidx.activity.result.ActivityResultCallback | | + +**Returns:** +androidx.activity.result.ActivityResultLauncher +### dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3) {#dump-java.lang.String-java.io.FileDescriptor-java.io.PrintWriter-java.lang.String---} +``` +public void dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | java.io.FileDescriptor | | +| arg2 | java.io.PrintWriter | | +| arg3 | java.lang.String[] | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getActivity() {#getActivity--} +``` +public final FragmentActivity getActivity() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentActivity +### getAllowEnterTransitionOverlap() {#getAllowEnterTransitionOverlap--} +``` +public boolean getAllowEnterTransitionOverlap() +``` + + + + +**Returns:** +boolean +### getAllowReturnTransitionOverlap() {#getAllowReturnTransitionOverlap--} +``` +public boolean getAllowReturnTransitionOverlap() +``` + + + + +**Returns:** +boolean +### getArguments() {#getArguments--} +``` +public final Bundle getArguments() +``` + + + + +**Returns:** +android.os.Bundle +### getBarcodeRecognitionSettings() {#getBarcodeRecognitionSettings--} +``` +public BarcodeRecognitionSettings getBarcodeRecognitionSettings() +``` + + +Définit le BarcodeScannerFragmentPreferencesHandler qui peut être appelé après la méthode BarcodeScannerFragment.onViewCreated() + +**Returns:** +com.aspose.barcode.component.barcodescanner.BarcodeRecognitionSettings +### getChildFragmentManager() {#getChildFragmentManager--} +``` +public final FragmentManager getChildFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getContext() {#getContext--} +``` +public Context getContext() +``` + + + + +**Returns:** +android.content.Context +### getDefaultViewModelProviderFactory() {#getDefaultViewModelProviderFactory--} +``` +public ViewModelProvider.Factory getDefaultViewModelProviderFactory() +``` + + + + +**Returns:** +androidx.lifecycle.ViewModelProvider.Factory +### getEnterTransition() {#getEnterTransition--} +``` +public Object getEnterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getExitTransition() {#getExitTransition--} +``` +public Object getExitTransition() +``` + + + + +**Returns:** +java.lang.Object +### getFragmentManager() {#getFragmentManager--} +``` +public final FragmentManager getFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getHost() {#getHost--} +``` +public final Object getHost() +``` + + + + +**Returns:** +java.lang.Object +### getId() {#getId--} +``` +public final int getId() +``` + + + + +**Returns:** +int +### getLayoutInflater() {#getLayoutInflater--} +``` +public final LayoutInflater getLayoutInflater() +``` + + + + +**Returns:** +android.view.LayoutInflater +### getLayoutInflater(Bundle arg0) {#getLayoutInflater-android.os.Bundle-} +``` +public LayoutInflater getLayoutInflater(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +**Returns:** +android.view.LayoutInflater +### getLifecycle() {#getLifecycle--} +``` +public Lifecycle getLifecycle() +``` + + + + +**Returns:** +androidx.lifecycle.Lifecycle +### getLoaderManager() {#getLoaderManager--} +``` +public LoaderManager getLoaderManager() +``` + + + + +**Returns:** +androidx.loader.app.LoaderManager +### getParentFragment() {#getParentFragment--} +``` +public final Fragment getParentFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### getParentFragmentManager() {#getParentFragmentManager--} +``` +public final FragmentManager getParentFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getReenterTransition() {#getReenterTransition--} +``` +public Object getReenterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getResources() {#getResources--} +``` +public final Resources getResources() +``` + + + + +**Returns:** +android.content.res.Resources +### getRetainInstance() {#getRetainInstance--} +``` +public final boolean getRetainInstance() +``` + + + + +**Returns:** +boolean +### getReturnTransition() {#getReturnTransition--} +``` +public Object getReturnTransition() +``` + + + + +**Returns:** +java.lang.Object +### getSavedStateRegistry() {#getSavedStateRegistry--} +``` +public final SavedStateRegistry getSavedStateRegistry() +``` + + + + +**Returns:** +androidx.savedstate.SavedStateRegistry +### getSharedElementEnterTransition() {#getSharedElementEnterTransition--} +``` +public Object getSharedElementEnterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getSharedElementReturnTransition() {#getSharedElementReturnTransition--} +``` +public Object getSharedElementReturnTransition() +``` + + + + +**Returns:** +java.lang.Object +### getString(int arg0) {#getString-int-} +``` +public final String getString(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.String +### getString(int arg0, Object[] arg1) {#getString-int-java.lang.Object...-} +``` +public final String getString(int arg0, Object[] arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.Object[] | | + +**Returns:** +java.lang.String +### getTag() {#getTag--} +``` +public final String getTag() +``` + + + + +**Returns:** +java.lang.String +### getTargetFragment() {#getTargetFragment--} +``` +public final Fragment getTargetFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### getTargetRequestCode() {#getTargetRequestCode--} +``` +public final int getTargetRequestCode() +``` + + + + +**Returns:** +int +### getText(int arg0) {#getText-int-} +``` +public final CharSequence getText(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.CharSequence +### getUserVisibleHint() {#getUserVisibleHint--} +``` +public boolean getUserVisibleHint() +``` + + + + +**Returns:** +boolean +### getView() {#getView--} +``` +public View getView() +``` + + + + +**Returns:** +android.view.View +### getViewLifecycleOwner() {#getViewLifecycleOwner--} +``` +public LifecycleOwner getViewLifecycleOwner() +``` + + + + +**Returns:** +androidx.lifecycle.LifecycleOwner +### getViewLifecycleOwnerLiveData() {#getViewLifecycleOwnerLiveData--} +``` +public LiveData getViewLifecycleOwnerLiveData() +``` + + + + +**Returns:** +androidx.lifecycle.LiveData +### getViewModelStore() {#getViewModelStore--} +``` +public ViewModelStore getViewModelStore() +``` + + + + +**Returns:** +androidx.lifecycle.ViewModelStore +### hasOptionsMenu() {#hasOptionsMenu--} +``` +public final boolean hasOptionsMenu() +``` + + + + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### instantiate(Context arg0, String arg1) {#instantiate-android.content.Context-java.lang.String-} +``` +public static Fragment instantiate(Context arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | java.lang.String | | + +**Returns:** +androidx.fragment.app.Fragment +### instantiate(Context arg0, String arg1, Bundle arg2) {#instantiate-android.content.Context-java.lang.String-android.os.Bundle-} +``` +public static Fragment instantiate(Context arg0, String arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | java.lang.String | | +| arg2 | android.os.Bundle | | + +**Returns:** +androidx.fragment.app.Fragment +### isAdded() {#isAdded--} +``` +public final boolean isAdded() +``` + + + + +**Returns:** +boolean +### isDetached() {#isDetached--} +``` +public final boolean isDetached() +``` + + + + +**Returns:** +boolean +### isHidden() {#isHidden--} +``` +public final boolean isHidden() +``` + + + + +**Returns:** +boolean +### isInLayout() {#isInLayout--} +``` +public final boolean isInLayout() +``` + + + + +**Returns:** +boolean +### isMenuVisible() {#isMenuVisible--} +``` +public final boolean isMenuVisible() +``` + + + + +**Returns:** +boolean +### isRemoving() {#isRemoving--} +``` +public final boolean isRemoving() +``` + + + + +**Returns:** +boolean +### isResumed() {#isResumed--} +``` +public final boolean isResumed() +``` + + + + +**Returns:** +boolean +### isShowPreferencesButton() {#isShowPreferencesButton--} +``` +public boolean isShowPreferencesButton() +``` + + +TODO Interne ? Le bouton d'affichage des préférences, pour BarcodeScanner, est toujours faux + +**Returns:** +boolean - +### isStateSaved() {#isStateSaved--} +``` +public final boolean isStateSaved() +``` + + + + +**Returns:** +boolean +### isVisible() {#isVisible--} +``` +public final boolean isVisible() +``` + + + + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### onActivityCreated(Bundle arg0) {#onActivityCreated-android.os.Bundle-} +``` +public void onActivityCreated(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### onActivityResult(int arg0, int arg1, Intent arg2) {#onActivityResult-int-int-android.content.Intent-} +``` +public void onActivityResult(int arg0, int arg1, Intent arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | android.content.Intent | | + +### onAttach(Activity arg0) {#onAttach-android.app.Activity-} +``` +public void onAttach(Activity arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | + +### onAttach(Context arg0) {#onAttach-android.content.Context-} +``` +public void onAttach(Context arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | + +### onAttachFragment(Fragment arg0) {#onAttachFragment-androidx.fragment.app.Fragment-} +``` +public void onAttachFragment(Fragment arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | + +### onConfigurationChanged(Configuration arg0) {#onConfigurationChanged-android.content.res.Configuration-} +``` +public void onConfigurationChanged(Configuration arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.Configuration | | + +### onContextItemSelected(MenuItem arg0) {#onContextItemSelected-android.view.MenuItem-} +``` +public boolean onContextItemSelected(MenuItem arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MenuItem | | + +**Returns:** +boolean +### onCreate(Bundle arg0) {#onCreate-android.os.Bundle-} +``` +public void onCreate(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### onCreateAnimation(int arg0, boolean arg1, int arg2) {#onCreateAnimation-int-boolean-int-} +``` +public Animation onCreateAnimation(int arg0, boolean arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | boolean | | +| arg2 | int | | + +**Returns:** +android.view.animation.Animation +### onCreateAnimator(int arg0, boolean arg1, int arg2) {#onCreateAnimator-int-boolean-int-} +``` +public Animator onCreateAnimator(int arg0, boolean arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | boolean | | +| arg2 | int | | + +**Returns:** +android.animation.Animator +### onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2) {#onCreateContextMenu-android.view.ContextMenu-android.view.View-android.view.ContextMenu.ContextMenuInfo-} +``` +public void onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContextMenu | | +| arg1 | android.view.View | | +| arg2 | android.view.ContextMenu.ContextMenuInfo | | + +### onCreateOptionsMenu(Menu arg0, MenuInflater arg1) {#onCreateOptionsMenu-android.view.Menu-android.view.MenuInflater-} +``` +public void onCreateOptionsMenu(Menu arg0, MenuInflater arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | +| arg1 | android.view.MenuInflater | | + +### onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {#onCreateView-android.view.LayoutInflater-android.view.ViewGroup-android.os.Bundle-} +``` +public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| inflater | android.view.LayoutInflater | | +| container | android.view.ViewGroup | | +| savedInstanceState | android.os.Bundle | | + +**Returns:** +android.view.View +### onDestroy() {#onDestroy--} +``` +public void onDestroy() +``` + + + + +### onDestroyOptionsMenu() {#onDestroyOptionsMenu--} +``` +public void onDestroyOptionsMenu() +``` + + + + +### onDestroyView() {#onDestroyView--} +``` +public void onDestroyView() +``` + + + + +### onDetach() {#onDetach--} +``` +public void onDetach() +``` + + + + +### onGetLayoutInflater(Bundle arg0) {#onGetLayoutInflater-android.os.Bundle-} +``` +public LayoutInflater onGetLayoutInflater(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +**Returns:** +android.view.LayoutInflater +### onHiddenChanged(boolean arg0) {#onHiddenChanged-boolean-} +``` +public void onHiddenChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onInflate(Activity arg0, AttributeSet arg1, Bundle arg2) {#onInflate-android.app.Activity-android.util.AttributeSet-android.os.Bundle-} +``` +public void onInflate(Activity arg0, AttributeSet arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | +| arg1 | android.util.AttributeSet | | +| arg2 | android.os.Bundle | | + +### onInflate(Context context, AttributeSet attrs, Bundle savedInstanceState) {#onInflate-android.content.Context-android.util.AttributeSet-android.os.Bundle-} +``` +public void onInflate(Context context, AttributeSet attrs, Bundle savedInstanceState) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| contexte | android.content.Context | | +| attrs | android.util.AttributeSet | | +| savedInstanceState | android.os.Bundle | | + +### onLowMemory() {#onLowMemory--} +``` +public void onLowMemory() +``` + + + + +### onMultiWindowModeChanged(boolean arg0) {#onMultiWindowModeChanged-boolean-} +``` +public void onMultiWindowModeChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onOptionsItemSelected(MenuItem arg0) {#onOptionsItemSelected-android.view.MenuItem-} +``` +public boolean onOptionsItemSelected(MenuItem arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MenuItem | | + +**Returns:** +boolean +### onOptionsMenuClosed(Menu arg0) {#onOptionsMenuClosed-android.view.Menu-} +``` +public void onOptionsMenuClosed(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +### onPause() {#onPause--} +``` +public void onPause() +``` + + + + +### onPictureInPictureModeChanged(boolean arg0) {#onPictureInPictureModeChanged-boolean-} +``` +public void onPictureInPictureModeChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onPrepareOptionsMenu(Menu arg0) {#onPrepareOptionsMenu-android.view.Menu-} +``` +public void onPrepareOptionsMenu(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +### onPrimaryNavigationFragmentChanged(boolean arg0) {#onPrimaryNavigationFragmentChanged-boolean-} +``` +public void onPrimaryNavigationFragmentChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2) {#onRequestPermissionsResult-int-java.lang.String---int---} +``` +public void onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.String[] | | +| arg2 | int[] | | + +### onResume() {#onResume--} +``` +public void onResume() +``` + + + + +### onSaveInstanceState(Bundle arg0) {#onSaveInstanceState-android.os.Bundle-} +``` +public void onSaveInstanceState(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### onStart() {#onStart--} +``` +public void onStart() +``` + + + + +### onStop() {#onStop--} +``` +public void onStop() +``` + + + + +### onViewCreated(View view, Bundle savedInstanceState) {#onViewCreated-android.view.View-android.os.Bundle-} +``` +public void onViewCreated(View view, Bundle savedInstanceState) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| vue | android.view.View | | +| savedInstanceState | android.os.Bundle | | + +### onViewStateRestored(Bundle arg0) {#onViewStateRestored-android.os.Bundle-} +``` +public void onViewStateRestored(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### postponeEnterTransition() {#postponeEnterTransition--} +``` +public void postponeEnterTransition() +``` + + + + +### postponeEnterTransition(long arg0, TimeUnit arg1) {#postponeEnterTransition-long-java.util.concurrent.TimeUnit-} +``` +public final void postponeEnterTransition(long arg0, TimeUnit arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | java.util.concurrent.TimeUnit | | + +### registerForContextMenu(View arg0) {#registerForContextMenu-android.view.View-} +``` +public void registerForContextMenu(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### requestPermissions(String[] arg0, int arg1) {#requestPermissions-java.lang.String---int-} +``` +public final void requestPermissions(String[] arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String[] | | +| arg1 | int | | + +### requireActivity() {#requireActivity--} +``` +public final FragmentActivity requireActivity() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentActivity +### requireArguments() {#requireArguments--} +``` +public final Bundle requireArguments() +``` + + + + +**Returns:** +android.os.Bundle +### requireContext() {#requireContext--} +``` +public final Context requireContext() +``` + + + + +**Returns:** +android.content.Context +### requireFragmentManager() {#requireFragmentManager--} +``` +public final FragmentManager requireFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### requireHost() {#requireHost--} +``` +public final Object requireHost() +``` + + + + +**Returns:** +java.lang.Object +### requireParentFragment() {#requireParentFragment--} +``` +public final Fragment requireParentFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### requireView() {#requireView--} +``` +public final View requireView() +``` + + + + +**Returns:** +android.view.View +### setAllowEnterTransitionOverlap(boolean arg0) {#setAllowEnterTransitionOverlap-boolean-} +``` +public void setAllowEnterTransitionOverlap(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAllowReturnTransitionOverlap(boolean arg0) {#setAllowReturnTransitionOverlap-boolean-} +``` +public void setAllowReturnTransitionOverlap(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setArguments(Bundle arg0) {#setArguments-android.os.Bundle-} +``` +public void setArguments(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### setEnterSharedElementCallback(SharedElementCallback arg0) {#setEnterSharedElementCallback-androidx.core.app.SharedElementCallback-} +``` +public void setEnterSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.SharedElementCallback | | + +### setEnterTransition(Object arg0) {#setEnterTransition-java.lang.Object-} +``` +public void setEnterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setExitSharedElementCallback(SharedElementCallback arg0) {#setExitSharedElementCallback-androidx.core.app.SharedElementCallback-} +``` +public void setExitSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.SharedElementCallback | | + +### setExitTransition(Object arg0) {#setExitTransition-java.lang.Object-} +``` +public void setExitTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setHasOptionsMenu(boolean arg0) {#setHasOptionsMenu-boolean-} +``` +public void setHasOptionsMenu(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setInitialSavedState(Fragment.SavedState arg0) {#setInitialSavedState-androidx.fragment.app.Fragment.SavedState-} +``` +public void setInitialSavedState(Fragment.SavedState arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment.SavedState | | + +### setMenuVisibility(boolean arg0) {#setMenuVisibility-boolean-} +``` +public void setMenuVisibility(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setPreferencesFragment(BarcodeScannerPreferencesFragment preferencesFragment) {#setPreferencesFragment-com.aspose.barcode.component.barcodescanner.BarcodeScannerPreferencesFragment-} +``` +public void setPreferencesFragment(BarcodeScannerPreferencesFragment preferencesFragment) +``` + + +Définit une implémentation personnalisée de PreferencesFragment. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| preferencesFragment | com.aspose.barcode.component.barcodescanner.BarcodeScannerPreferencesFragment | Peut être appelé avant le démarrage du processus de reconnaissance dans BarcodeScannerFragment. | + +### setReenterTransition(Object arg0) {#setReenterTransition-java.lang.Object-} +``` +public void setReenterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setRetainInstance(boolean arg0) {#setRetainInstance-boolean-} +``` +public void setRetainInstance(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setReturnTransition(Object arg0) {#setReturnTransition-java.lang.Object-} +``` +public void setReturnTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setSharedElementEnterTransition(Object arg0) {#setSharedElementEnterTransition-java.lang.Object-} +``` +public void setSharedElementEnterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setSharedElementReturnTransition(Object arg0) {#setSharedElementReturnTransition-java.lang.Object-} +``` +public void setSharedElementReturnTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setShowPreferencesButton(boolean showPreferencesButton) {#setShowPreferencesButton-boolean-} +``` +public void setShowPreferencesButton(boolean showPreferencesButton) +``` + + +Définit le bouton d'affichage des préférences, pour BarcodeScanner, toujours faux + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| showPreferencesButton | boolean | | + +### setTargetFragment(Fragment arg0, int arg1) {#setTargetFragment-androidx.fragment.app.Fragment-int-} +``` +public void setTargetFragment(Fragment arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | +| arg1 | int | | + +### setUserVisibleHint(boolean arg0) {#setUserVisibleHint-boolean-} +``` +public void setUserVisibleHint(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### shouldShowRequestPermissionRationale(String arg0) {#shouldShowRequestPermissionRationale-java.lang.String-} +``` +public boolean shouldShowRequestPermissionRationale(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +boolean +### startActivity(Intent arg0) {#startActivity-android.content.Intent-} +``` +public void startActivity(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +### startActivity(Intent arg0, Bundle arg1) {#startActivity-android.content.Intent-android.os.Bundle-} +``` +public void startActivity(Intent arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.Bundle | | + +### startActivityForResult(Intent arg0, int arg1) {#startActivityForResult-android.content.Intent-int-} +``` +public void startActivityForResult(Intent arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | + +### startActivityForResult(Intent arg0, int arg1, Bundle arg2) {#startActivityForResult-android.content.Intent-int-android.os.Bundle-} +``` +public void startActivityForResult(Intent arg0, int arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | +| arg2 | android.os.Bundle | | + +### startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6) {#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-} +``` +public void startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.IntentSender | | +| arg1 | int | | +| arg2 | android.content.Intent | | +| arg3 | int | | +| arg4 | int | | +| arg5 | int | | +| arg6 | android.os.Bundle | | + +### startPostponedEnterTransition() {#startPostponedEnterTransition--} +``` +public void startPostponedEnterTransition() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### unregisterForContextMenu(View arg0) {#unregisterForContextMenu-android.view.View-} +``` +public void unregisterForContextMenu(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerfragmentsettings/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerfragmentsettings/_index.md new file mode 100644 index 000000000..dee305cab --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerfragmentsettings/_index.md @@ -0,0 +1,186 @@ +--- +title: BarcodeScannerFragmentSettings +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres pour BarcodeScannerFragmentSettings +type: docs +weight: 15 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerfragmentsettings/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +android.os.Parcelable +``` +public class BarcodeScannerFragmentSettings implements Parcelable +``` + +Paramètres pour BarcodeScannerFragmentSettings +## Champs + +| Champ | Description | +| --- | --- | +| [CREATOR](#CREATOR) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [describeContents()](#describeContents--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getCameraProcessingFragmentSettings()](#getCameraProcessingFragmentSettings--) | | +| [getClass()](#getClass--) | | +| [getRecognitionProcessingFragmentSettings()](#getRecognitionProcessingFragmentSettings--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [writeToParcel(Parcel dest, int flags)](#writeToParcel-android.os.Parcel-int-) | | +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### describeContents() {#describeContents--} +``` +public int describeContents() +``` + + + + +**Returns:** +int +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getCameraProcessingFragmentSettings() {#getCameraProcessingFragmentSettings--} +``` +public CameraProcessingFragmentSettings getCameraProcessingFragmentSettings() +``` + + + + +**Returns:** +com.aspose.barcode.component.barcodescanner.CameraProcessingFragmentSettings +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getRecognitionProcessingFragmentSettings() {#getRecognitionProcessingFragmentSettings--} +``` +public RecognitionProcessingFragmentSettings getRecognitionProcessingFragmentSettings() +``` + + + + +**Returns:** +com.aspose.barcode.component.barcodescanner.RecognitionProcessingFragmentSettings +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### writeToParcel(Parcel dest, int flags) {#writeToParcel-android.os.Parcel-int-} +``` +public void writeToParcel(Parcel dest, int flags) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dest | android.os.Parcel | | +| flags | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerpreferences/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerpreferences/_index.md new file mode 100644 index 000000000..62a458fe0 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerpreferences/_index.md @@ -0,0 +1,200 @@ +--- +title: BarcodeScannerPreferences +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Les préférences de BarcodeScanner. +type: docs +weight: 16 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerpreferences/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +android.os.Parcelable +``` +public final class BarcodeScannerPreferences implements Parcelable +``` + +Les préférences du BarcodeScanner. Contient des paramètres qui influencent le processus de reconnaissance et les données reconnues. BarcodeScannerPreferences étend BarcodeRecognitionSettings, la classe BarcodeScannerPreferences contient des spécificités de l'API BarcodeScanner et implémente l'interface Parcelable pour échanger les préférences entre l'activité cliente et BarcodeScannerActivity. BarcodeScannerPreferences ne fonctionne que dans l'application cliente via BarcodeScannerActivity +## Champs + +| Champ | Description | +| --- | --- | +| [CREATOR](#CREATOR) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [describeContents()](#describeContents--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBarcodeRecognitionSettings()](#getBarcodeRecognitionSettings--) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [isRotationEnabled()](#isRotationEnabled--) | Obtient la rotation d'affichage activée. La valeur par défaut est false | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setRotationEnabled(boolean rotationEnabled)](#setRotationEnabled-boolean-) | Définit la rotation d'affichage activée. Il est recommandé d'utiliser false | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [writeToParcel(Parcel dest, int flags)](#writeToParcel-android.os.Parcel-int-) | | +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### describeContents() {#describeContents--} +``` +public int describeContents() +``` + + + + +**Returns:** +int +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBarcodeRecognitionSettings() {#getBarcodeRecognitionSettings--} +``` +public BarcodeRecognitionSettings getBarcodeRecognitionSettings() +``` + + + + +**Returns:** +com.aspose.barcode.component.barcodescanner.BarcodeRecognitionSettings +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isRotationEnabled() {#isRotationEnabled--} +``` +public boolean isRotationEnabled() +``` + + +Obtient la rotation d'affichage activée. La valeur par défaut est false + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setRotationEnabled(boolean rotationEnabled) {#setRotationEnabled-boolean-} +``` +public void setRotationEnabled(boolean rotationEnabled) +``` + + +Définit la rotation d'affichage activée. Il est recommandé d'utiliser false + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| rotationEnabled | boolean | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### writeToParcel(Parcel dest, int flags) {#writeToParcel-android.os.Parcel-int-} +``` +public void writeToParcel(Parcel dest, int flags) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dest | android.os.Parcel | | +| flags | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerpreferencesfragment/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerpreferencesfragment/_index.md new file mode 100644 index 000000000..96edc0f5a --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerpreferencesfragment/_index.md @@ -0,0 +1,1984 @@ +--- +title: BarcodeScannerPreferencesFragment +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: PreferencesFragment peut être utilisé pour personnaliser le processus de reconnaissance de codes-barres à l'aide d'une interface graphique personnalisée. +type: docs +weight: 17 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerpreferencesfragment/ +--- +**Inheritance:** +java.lang.Object, androidx.fragment.app.Fragment, androidx.preference.PreferenceFragmentCompat +``` +public abstract class BarcodeScannerPreferencesFragment extends PreferenceFragmentCompat +``` + +PreferencesFragment peut être utilisé pour personnaliser le processus de reconnaissance de code-barres en utilisant une interface graphique personnalisée. PreferencesFragment peut être implémenté en tant que classe personnalisée et peut être attaché à BarcodeScannerFragment en utilisant la méthode BarcodeRecognitionSettings.setPreferencesFragment(). +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarcodeScannerPreferencesFragment()](#BarcodeScannerPreferencesFragment--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [ARG_PREFERENCE_ROOT](#ARG-PREFERENCE-ROOT) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1)](#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultCallback-O--) | | +| [registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2)](#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultRegistry-androidx.activity.result.ActivityResultCallback-O--) | | +| [findPreference(CharSequence arg0)](#-T-findPreference-java.lang.CharSequence-) | | +| [addPreferencesFromResource(int arg0)](#addPreferencesFromResource-int-) | | +| [dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3)](#dump-java.lang.String-java.io.FileDescriptor-java.io.PrintWriter-java.lang.String---) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getActivity()](#getActivity--) | | +| [getAllowEnterTransitionOverlap()](#getAllowEnterTransitionOverlap--) | | +| [getAllowReturnTransitionOverlap()](#getAllowReturnTransitionOverlap--) | | +| [getArguments()](#getArguments--) | | +| [getCallbackFragment()](#getCallbackFragment--) | | +| [getChildFragmentManager()](#getChildFragmentManager--) | | +| [getClass()](#getClass--) | | +| [getContext()](#getContext--) | | +| [getDefaultViewModelProviderFactory()](#getDefaultViewModelProviderFactory--) | | +| [getEnterTransition()](#getEnterTransition--) | | +| [getExitTransition()](#getExitTransition--) | | +| [getFragmentManager()](#getFragmentManager--) | | +| [getHost()](#getHost--) | | +| [getId()](#getId--) | | +| [getLayoutInflater()](#getLayoutInflater--) | | +| [getLayoutInflater(Bundle arg0)](#getLayoutInflater-android.os.Bundle-) | | +| [getLifecycle()](#getLifecycle--) | | +| [getListView()](#getListView--) | | +| [getLoaderManager()](#getLoaderManager--) | | +| [getParentFragment()](#getParentFragment--) | | +| [getParentFragmentManager()](#getParentFragmentManager--) | | +| [getPreferenceManager()](#getPreferenceManager--) | | +| [getPreferenceScreen()](#getPreferenceScreen--) | | +| [getReenterTransition()](#getReenterTransition--) | | +| [getResources()](#getResources--) | | +| [getRetainInstance()](#getRetainInstance--) | | +| [getReturnTransition()](#getReturnTransition--) | | +| [getSavedStateRegistry()](#getSavedStateRegistry--) | | +| [getSharedElementEnterTransition()](#getSharedElementEnterTransition--) | | +| [getSharedElementReturnTransition()](#getSharedElementReturnTransition--) | | +| [getString(int arg0)](#getString-int-) | | +| [getString(int arg0, Object[] arg1)](#getString-int-java.lang.Object...-) | | +| [getTag()](#getTag--) | | +| [getTargetFragment()](#getTargetFragment--) | | +| [getTargetRequestCode()](#getTargetRequestCode--) | | +| [getText(int arg0)](#getText-int-) | | +| [getUserVisibleHint()](#getUserVisibleHint--) | | +| [getView()](#getView--) | | +| [getViewLifecycleOwner()](#getViewLifecycleOwner--) | | +| [getViewLifecycleOwnerLiveData()](#getViewLifecycleOwnerLiveData--) | | +| [getViewModelStore()](#getViewModelStore--) | | +| [hasOptionsMenu()](#hasOptionsMenu--) | | +| [hashCode()](#hashCode--) | | +| [instantiate(Context arg0, String arg1)](#instantiate-android.content.Context-java.lang.String-) | | +| [instantiate(Context arg0, String arg1, Bundle arg2)](#instantiate-android.content.Context-java.lang.String-android.os.Bundle-) | | +| [isAdded()](#isAdded--) | | +| [isDetached()](#isDetached--) | | +| [isHidden()](#isHidden--) | | +| [isInLayout()](#isInLayout--) | | +| [isMenuVisible()](#isMenuVisible--) | | +| [isRemoving()](#isRemoving--) | | +| [isResumed()](#isResumed--) | | +| [isStateSaved()](#isStateSaved--) | | +| [isVisible()](#isVisible--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [onActivityCreated(Bundle arg0)](#onActivityCreated-android.os.Bundle-) | | +| [onActivityResult(int arg0, int arg1, Intent arg2)](#onActivityResult-int-int-android.content.Intent-) | | +| [onAttach(Activity arg0)](#onAttach-android.app.Activity-) | | +| [onAttach(Context arg0)](#onAttach-android.content.Context-) | | +| [onAttachFragment(Fragment arg0)](#onAttachFragment-androidx.fragment.app.Fragment-) | | +| [onConfigurationChanged(Configuration arg0)](#onConfigurationChanged-android.content.res.Configuration-) | | +| [onContextItemSelected(MenuItem arg0)](#onContextItemSelected-android.view.MenuItem-) | | +| [onCreate(Bundle savedInstanceState)](#onCreate-android.os.Bundle-) | | +| [onCreateAnimation(int arg0, boolean arg1, int arg2)](#onCreateAnimation-int-boolean-int-) | | +| [onCreateAnimator(int arg0, boolean arg1, int arg2)](#onCreateAnimator-int-boolean-int-) | | +| [onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2)](#onCreateContextMenu-android.view.ContextMenu-android.view.View-android.view.ContextMenu.ContextMenuInfo-) | | +| [onCreateLayoutManager()](#onCreateLayoutManager--) | | +| [onCreateOptionsMenu(Menu arg0, MenuInflater arg1)](#onCreateOptionsMenu-android.view.Menu-android.view.MenuInflater-) | | +| [onCreatePreferences(Bundle arg0, String arg1)](#onCreatePreferences-android.os.Bundle-java.lang.String-) | | +| [onCreateRecyclerView(LayoutInflater arg0, ViewGroup arg1, Bundle arg2)](#onCreateRecyclerView-android.view.LayoutInflater-android.view.ViewGroup-android.os.Bundle-) | | +| [onCreateView(LayoutInflater arg0, ViewGroup arg1, Bundle arg2)](#onCreateView-android.view.LayoutInflater-android.view.ViewGroup-android.os.Bundle-) | | +| [onDestroy()](#onDestroy--) | | +| [onDestroyOptionsMenu()](#onDestroyOptionsMenu--) | | +| [onDestroyView()](#onDestroyView--) | | +| [onDetach()](#onDetach--) | | +| [onDisplayPreferenceDialog(Preference arg0)](#onDisplayPreferenceDialog-androidx.preference.Preference-) | | +| [onGetLayoutInflater(Bundle arg0)](#onGetLayoutInflater-android.os.Bundle-) | | +| [onHiddenChanged(boolean arg0)](#onHiddenChanged-boolean-) | | +| [onInflate(Activity arg0, AttributeSet arg1, Bundle arg2)](#onInflate-android.app.Activity-android.util.AttributeSet-android.os.Bundle-) | | +| [onInflate(Context arg0, AttributeSet arg1, Bundle arg2)](#onInflate-android.content.Context-android.util.AttributeSet-android.os.Bundle-) | | +| [onLowMemory()](#onLowMemory--) | | +| [onMultiWindowModeChanged(boolean arg0)](#onMultiWindowModeChanged-boolean-) | | +| [onNavigateToScreen(PreferenceScreen arg0)](#onNavigateToScreen-androidx.preference.PreferenceScreen-) | | +| [onOptionsItemSelected(MenuItem arg0)](#onOptionsItemSelected-android.view.MenuItem-) | | +| [onOptionsMenuClosed(Menu arg0)](#onOptionsMenuClosed-android.view.Menu-) | | +| [onPause()](#onPause--) | | +| [onPictureInPictureModeChanged(boolean arg0)](#onPictureInPictureModeChanged-boolean-) | | +| [onPreferenceTreeClick(Preference arg0)](#onPreferenceTreeClick-androidx.preference.Preference-) | | +| [onPrepareOptionsMenu(Menu arg0)](#onPrepareOptionsMenu-android.view.Menu-) | | +| [onPrimaryNavigationFragmentChanged(boolean arg0)](#onPrimaryNavigationFragmentChanged-boolean-) | | +| [onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2)](#onRequestPermissionsResult-int-java.lang.String---int---) | | +| [onResume()](#onResume--) | | +| [onSaveInstanceState(Bundle arg0)](#onSaveInstanceState-android.os.Bundle-) | | +| [onStart()](#onStart--) | | +| [onStop()](#onStop--) | | +| [onViewCreated(View arg0, Bundle arg1)](#onViewCreated-android.view.View-android.os.Bundle-) | | +| [onViewStateRestored(Bundle arg0)](#onViewStateRestored-android.os.Bundle-) | | +| [postponeEnterTransition()](#postponeEnterTransition--) | | +| [postponeEnterTransition(long arg0, TimeUnit arg1)](#postponeEnterTransition-long-java.util.concurrent.TimeUnit-) | | +| [registerForContextMenu(View arg0)](#registerForContextMenu-android.view.View-) | | +| [requestPermissions(String[] arg0, int arg1)](#requestPermissions-java.lang.String---int-) | | +| [requireActivity()](#requireActivity--) | | +| [requireArguments()](#requireArguments--) | | +| [requireContext()](#requireContext--) | | +| [requireFragmentManager()](#requireFragmentManager--) | | +| [requireHost()](#requireHost--) | | +| [requireParentFragment()](#requireParentFragment--) | | +| [requireView()](#requireView--) | | +| [scrollToPreference(Preference arg0)](#scrollToPreference-androidx.preference.Preference-) | | +| [scrollToPreference(String arg0)](#scrollToPreference-java.lang.String-) | | +| [setAllowEnterTransitionOverlap(boolean arg0)](#setAllowEnterTransitionOverlap-boolean-) | | +| [setAllowReturnTransitionOverlap(boolean arg0)](#setAllowReturnTransitionOverlap-boolean-) | | +| [setArguments(Bundle arg0)](#setArguments-android.os.Bundle-) | | +| [setDivider(Drawable arg0)](#setDivider-android.graphics.drawable.Drawable-) | | +| [setDividerHeight(int arg0)](#setDividerHeight-int-) | | +| [setEnterSharedElementCallback(SharedElementCallback arg0)](#setEnterSharedElementCallback-androidx.core.app.SharedElementCallback-) | | +| [setEnterTransition(Object arg0)](#setEnterTransition-java.lang.Object-) | | +| [setExitSharedElementCallback(SharedElementCallback arg0)](#setExitSharedElementCallback-androidx.core.app.SharedElementCallback-) | | +| [setExitTransition(Object arg0)](#setExitTransition-java.lang.Object-) | | +| [setHasOptionsMenu(boolean arg0)](#setHasOptionsMenu-boolean-) | | +| [setInitialSavedState(Fragment.SavedState arg0)](#setInitialSavedState-androidx.fragment.app.Fragment.SavedState-) | | +| [setMenuVisibility(boolean arg0)](#setMenuVisibility-boolean-) | | +| [setPreferenceScreen(PreferenceScreen arg0)](#setPreferenceScreen-androidx.preference.PreferenceScreen-) | | +| [setPreferencesFromResource(int arg0, String arg1)](#setPreferencesFromResource-int-java.lang.String-) | | +| [setReenterTransition(Object arg0)](#setReenterTransition-java.lang.Object-) | | +| [setRetainInstance(boolean arg0)](#setRetainInstance-boolean-) | | +| [setReturnTransition(Object arg0)](#setReturnTransition-java.lang.Object-) | | +| [setSharedElementEnterTransition(Object arg0)](#setSharedElementEnterTransition-java.lang.Object-) | | +| [setSharedElementReturnTransition(Object arg0)](#setSharedElementReturnTransition-java.lang.Object-) | | +| [setTargetFragment(Fragment arg0, int arg1)](#setTargetFragment-androidx.fragment.app.Fragment-int-) | | +| [setUserVisibleHint(boolean arg0)](#setUserVisibleHint-boolean-) | | +| [shouldShowRequestPermissionRationale(String arg0)](#shouldShowRequestPermissionRationale-java.lang.String-) | | +| [startActivity(Intent arg0)](#startActivity-android.content.Intent-) | | +| [startActivity(Intent arg0, Bundle arg1)](#startActivity-android.content.Intent-android.os.Bundle-) | | +| [startActivityForResult(Intent arg0, int arg1)](#startActivityForResult-android.content.Intent-int-) | | +| [startActivityForResult(Intent arg0, int arg1, Bundle arg2)](#startActivityForResult-android.content.Intent-int-android.os.Bundle-) | | +| [startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6)](#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-) | | +| [startPostponedEnterTransition()](#startPostponedEnterTransition--) | | +| [toString()](#toString--) | | +| [unregisterForContextMenu(View arg0)](#unregisterForContextMenu-android.view.View-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarcodeScannerPreferencesFragment() {#BarcodeScannerPreferencesFragment--} +``` +public BarcodeScannerPreferencesFragment() +``` + + +### ARG_PREFERENCE_ROOT {#ARG-PREFERENCE-ROOT} +``` +public static final String ARG_PREFERENCE_ROOT +``` + + +### registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1) {#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultCallback-O--} +``` +public final ActivityResultLauncher registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.result.contract.ActivityResultContract | | +| arg1 | androidx.activity.result.ActivityResultCallback | | + +**Returns:** +androidx.activity.result.ActivityResultLauncher +### registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2) {#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultRegistry-androidx.activity.result.ActivityResultCallback-O--} +``` +public final ActivityResultLauncher registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.result.contract.ActivityResultContract | | +| arg1 | androidx.activity.result.ActivityResultRegistry | | +| arg2 | androidx.activity.result.ActivityResultCallback | | + +**Returns:** +androidx.activity.result.ActivityResultLauncher +### findPreference(CharSequence arg0) {#-T-findPreference-java.lang.CharSequence-} +``` +public T findPreference(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +**Returns:** +T +### addPreferencesFromResource(int arg0) {#addPreferencesFromResource-int-} +``` +public void addPreferencesFromResource(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3) {#dump-java.lang.String-java.io.FileDescriptor-java.io.PrintWriter-java.lang.String---} +``` +public void dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | java.io.FileDescriptor | | +| arg2 | java.io.PrintWriter | | +| arg3 | java.lang.String[] | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getActivity() {#getActivity--} +``` +public final FragmentActivity getActivity() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentActivity +### getAllowEnterTransitionOverlap() {#getAllowEnterTransitionOverlap--} +``` +public boolean getAllowEnterTransitionOverlap() +``` + + + + +**Returns:** +boolean +### getAllowReturnTransitionOverlap() {#getAllowReturnTransitionOverlap--} +``` +public boolean getAllowReturnTransitionOverlap() +``` + + + + +**Returns:** +boolean +### getArguments() {#getArguments--} +``` +public final Bundle getArguments() +``` + + + + +**Returns:** +android.os.Bundle +### getCallbackFragment() {#getCallbackFragment--} +``` +public Fragment getCallbackFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### getChildFragmentManager() {#getChildFragmentManager--} +``` +public final FragmentManager getChildFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getContext() {#getContext--} +``` +public Context getContext() +``` + + + + +**Returns:** +android.content.Context +### getDefaultViewModelProviderFactory() {#getDefaultViewModelProviderFactory--} +``` +public ViewModelProvider.Factory getDefaultViewModelProviderFactory() +``` + + + + +**Returns:** +androidx.lifecycle.ViewModelProvider.Factory +### getEnterTransition() {#getEnterTransition--} +``` +public Object getEnterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getExitTransition() {#getExitTransition--} +``` +public Object getExitTransition() +``` + + + + +**Returns:** +java.lang.Object +### getFragmentManager() {#getFragmentManager--} +``` +public final FragmentManager getFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getHost() {#getHost--} +``` +public final Object getHost() +``` + + + + +**Returns:** +java.lang.Object +### getId() {#getId--} +``` +public final int getId() +``` + + + + +**Returns:** +int +### getLayoutInflater() {#getLayoutInflater--} +``` +public final LayoutInflater getLayoutInflater() +``` + + + + +**Returns:** +android.view.LayoutInflater +### getLayoutInflater(Bundle arg0) {#getLayoutInflater-android.os.Bundle-} +``` +public LayoutInflater getLayoutInflater(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +**Returns:** +android.view.LayoutInflater +### getLifecycle() {#getLifecycle--} +``` +public Lifecycle getLifecycle() +``` + + + + +**Returns:** +androidx.lifecycle.Lifecycle +### getListView() {#getListView--} +``` +public final RecyclerView getListView() +``` + + + + +**Returns:** +androidx.recyclerview.widget.RecyclerView +### getLoaderManager() {#getLoaderManager--} +``` +public LoaderManager getLoaderManager() +``` + + + + +**Returns:** +androidx.loader.app.LoaderManager +### getParentFragment() {#getParentFragment--} +``` +public final Fragment getParentFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### getParentFragmentManager() {#getParentFragmentManager--} +``` +public final FragmentManager getParentFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getPreferenceManager() {#getPreferenceManager--} +``` +public PreferenceManager getPreferenceManager() +``` + + + + +**Returns:** +androidx.preference.PreferenceManager +### getPreferenceScreen() {#getPreferenceScreen--} +``` +public PreferenceScreen getPreferenceScreen() +``` + + + + +**Returns:** +androidx.preference.PreferenceScreen +### getReenterTransition() {#getReenterTransition--} +``` +public Object getReenterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getResources() {#getResources--} +``` +public final Resources getResources() +``` + + + + +**Returns:** +android.content.res.Resources +### getRetainInstance() {#getRetainInstance--} +``` +public final boolean getRetainInstance() +``` + + + + +**Returns:** +boolean +### getReturnTransition() {#getReturnTransition--} +``` +public Object getReturnTransition() +``` + + + + +**Returns:** +java.lang.Object +### getSavedStateRegistry() {#getSavedStateRegistry--} +``` +public final SavedStateRegistry getSavedStateRegistry() +``` + + + + +**Returns:** +androidx.savedstate.SavedStateRegistry +### getSharedElementEnterTransition() {#getSharedElementEnterTransition--} +``` +public Object getSharedElementEnterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getSharedElementReturnTransition() {#getSharedElementReturnTransition--} +``` +public Object getSharedElementReturnTransition() +``` + + + + +**Returns:** +java.lang.Object +### getString(int arg0) {#getString-int-} +``` +public final String getString(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.String +### getString(int arg0, Object[] arg1) {#getString-int-java.lang.Object...-} +``` +public final String getString(int arg0, Object[] arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.Object[] | | + +**Returns:** +java.lang.String +### getTag() {#getTag--} +``` +public final String getTag() +``` + + + + +**Returns:** +java.lang.String +### getTargetFragment() {#getTargetFragment--} +``` +public final Fragment getTargetFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### getTargetRequestCode() {#getTargetRequestCode--} +``` +public final int getTargetRequestCode() +``` + + + + +**Returns:** +int +### getText(int arg0) {#getText-int-} +``` +public final CharSequence getText(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.CharSequence +### getUserVisibleHint() {#getUserVisibleHint--} +``` +public boolean getUserVisibleHint() +``` + + + + +**Returns:** +boolean +### getView() {#getView--} +``` +public View getView() +``` + + + + +**Returns:** +android.view.View +### getViewLifecycleOwner() {#getViewLifecycleOwner--} +``` +public LifecycleOwner getViewLifecycleOwner() +``` + + + + +**Returns:** +androidx.lifecycle.LifecycleOwner +### getViewLifecycleOwnerLiveData() {#getViewLifecycleOwnerLiveData--} +``` +public LiveData getViewLifecycleOwnerLiveData() +``` + + + + +**Returns:** +androidx.lifecycle.LiveData +### getViewModelStore() {#getViewModelStore--} +``` +public ViewModelStore getViewModelStore() +``` + + + + +**Returns:** +androidx.lifecycle.ViewModelStore +### hasOptionsMenu() {#hasOptionsMenu--} +``` +public final boolean hasOptionsMenu() +``` + + + + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### instantiate(Context arg0, String arg1) {#instantiate-android.content.Context-java.lang.String-} +``` +public static Fragment instantiate(Context arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | java.lang.String | | + +**Returns:** +androidx.fragment.app.Fragment +### instantiate(Context arg0, String arg1, Bundle arg2) {#instantiate-android.content.Context-java.lang.String-android.os.Bundle-} +``` +public static Fragment instantiate(Context arg0, String arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | java.lang.String | | +| arg2 | android.os.Bundle | | + +**Returns:** +androidx.fragment.app.Fragment +### isAdded() {#isAdded--} +``` +public final boolean isAdded() +``` + + + + +**Returns:** +boolean +### isDetached() {#isDetached--} +``` +public final boolean isDetached() +``` + + + + +**Returns:** +boolean +### isHidden() {#isHidden--} +``` +public final boolean isHidden() +``` + + + + +**Returns:** +boolean +### isInLayout() {#isInLayout--} +``` +public final boolean isInLayout() +``` + + + + +**Returns:** +boolean +### isMenuVisible() {#isMenuVisible--} +``` +public final boolean isMenuVisible() +``` + + + + +**Returns:** +boolean +### isRemoving() {#isRemoving--} +``` +public final boolean isRemoving() +``` + + + + +**Returns:** +boolean +### isResumed() {#isResumed--} +``` +public final boolean isResumed() +``` + + + + +**Returns:** +boolean +### isStateSaved() {#isStateSaved--} +``` +public final boolean isStateSaved() +``` + + + + +**Returns:** +boolean +### isVisible() {#isVisible--} +``` +public final boolean isVisible() +``` + + + + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### onActivityCreated(Bundle arg0) {#onActivityCreated-android.os.Bundle-} +``` +public void onActivityCreated(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### onActivityResult(int arg0, int arg1, Intent arg2) {#onActivityResult-int-int-android.content.Intent-} +``` +public void onActivityResult(int arg0, int arg1, Intent arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | android.content.Intent | | + +### onAttach(Activity arg0) {#onAttach-android.app.Activity-} +``` +public void onAttach(Activity arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | + +### onAttach(Context arg0) {#onAttach-android.content.Context-} +``` +public void onAttach(Context arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | + +### onAttachFragment(Fragment arg0) {#onAttachFragment-androidx.fragment.app.Fragment-} +``` +public void onAttachFragment(Fragment arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | + +### onConfigurationChanged(Configuration arg0) {#onConfigurationChanged-android.content.res.Configuration-} +``` +public void onConfigurationChanged(Configuration arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.Configuration | | + +### onContextItemSelected(MenuItem arg0) {#onContextItemSelected-android.view.MenuItem-} +``` +public boolean onContextItemSelected(MenuItem arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MenuItem | | + +**Returns:** +boolean +### onCreate(Bundle savedInstanceState) {#onCreate-android.os.Bundle-} +``` +public final void onCreate(Bundle savedInstanceState) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| savedInstanceState | android.os.Bundle | | + +### onCreateAnimation(int arg0, boolean arg1, int arg2) {#onCreateAnimation-int-boolean-int-} +``` +public Animation onCreateAnimation(int arg0, boolean arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | boolean | | +| arg2 | int | | + +**Returns:** +android.view.animation.Animation +### onCreateAnimator(int arg0, boolean arg1, int arg2) {#onCreateAnimator-int-boolean-int-} +``` +public Animator onCreateAnimator(int arg0, boolean arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | boolean | | +| arg2 | int | | + +**Returns:** +android.animation.Animator +### onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2) {#onCreateContextMenu-android.view.ContextMenu-android.view.View-android.view.ContextMenu.ContextMenuInfo-} +``` +public void onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContextMenu | | +| arg1 | android.view.View | | +| arg2 | android.view.ContextMenu.ContextMenuInfo | | + +### onCreateLayoutManager() {#onCreateLayoutManager--} +``` +public RecyclerView.LayoutManager onCreateLayoutManager() +``` + + + + +**Returns:** +androidx.recyclerview.widget.RecyclerView.LayoutManager +### onCreateOptionsMenu(Menu arg0, MenuInflater arg1) {#onCreateOptionsMenu-android.view.Menu-android.view.MenuInflater-} +``` +public void onCreateOptionsMenu(Menu arg0, MenuInflater arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | +| arg1 | android.view.MenuInflater | | + +### onCreatePreferences(Bundle arg0, String arg1) {#onCreatePreferences-android.os.Bundle-java.lang.String-} +``` +public abstract void onCreatePreferences(Bundle arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | +| arg1 | java.lang.String | | + +### onCreateRecyclerView(LayoutInflater arg0, ViewGroup arg1, Bundle arg2) {#onCreateRecyclerView-android.view.LayoutInflater-android.view.ViewGroup-android.os.Bundle-} +``` +public RecyclerView onCreateRecyclerView(LayoutInflater arg0, ViewGroup arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.LayoutInflater | | +| arg1 | android.view.ViewGroup | | +| arg2 | android.os.Bundle | | + +**Returns:** +androidx.recyclerview.widget.RecyclerView +### onCreateView(LayoutInflater arg0, ViewGroup arg1, Bundle arg2) {#onCreateView-android.view.LayoutInflater-android.view.ViewGroup-android.os.Bundle-} +``` +public View onCreateView(LayoutInflater arg0, ViewGroup arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.LayoutInflater | | +| arg1 | android.view.ViewGroup | | +| arg2 | android.os.Bundle | | + +**Returns:** +android.view.View +### onDestroy() {#onDestroy--} +``` +public void onDestroy() +``` + + + + +### onDestroyOptionsMenu() {#onDestroyOptionsMenu--} +``` +public void onDestroyOptionsMenu() +``` + + + + +### onDestroyView() {#onDestroyView--} +``` +public void onDestroyView() +``` + + + + +### onDetach() {#onDetach--} +``` +public void onDetach() +``` + + + + +### onDisplayPreferenceDialog(Preference arg0) {#onDisplayPreferenceDialog-androidx.preference.Preference-} +``` +public void onDisplayPreferenceDialog(Preference arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.preference.Preference | | + +### onGetLayoutInflater(Bundle arg0) {#onGetLayoutInflater-android.os.Bundle-} +``` +public LayoutInflater onGetLayoutInflater(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +**Returns:** +android.view.LayoutInflater +### onHiddenChanged(boolean arg0) {#onHiddenChanged-boolean-} +``` +public void onHiddenChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onInflate(Activity arg0, AttributeSet arg1, Bundle arg2) {#onInflate-android.app.Activity-android.util.AttributeSet-android.os.Bundle-} +``` +public void onInflate(Activity arg0, AttributeSet arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | +| arg1 | android.util.AttributeSet | | +| arg2 | android.os.Bundle | | + +### onInflate(Context arg0, AttributeSet arg1, Bundle arg2) {#onInflate-android.content.Context-android.util.AttributeSet-android.os.Bundle-} +``` +public void onInflate(Context arg0, AttributeSet arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | android.util.AttributeSet | | +| arg2 | android.os.Bundle | | + +### onLowMemory() {#onLowMemory--} +``` +public void onLowMemory() +``` + + + + +### onMultiWindowModeChanged(boolean arg0) {#onMultiWindowModeChanged-boolean-} +``` +public void onMultiWindowModeChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onNavigateToScreen(PreferenceScreen arg0) {#onNavigateToScreen-androidx.preference.PreferenceScreen-} +``` +public void onNavigateToScreen(PreferenceScreen arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.preference.PreferenceScreen | | + +### onOptionsItemSelected(MenuItem arg0) {#onOptionsItemSelected-android.view.MenuItem-} +``` +public boolean onOptionsItemSelected(MenuItem arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MenuItem | | + +**Returns:** +boolean +### onOptionsMenuClosed(Menu arg0) {#onOptionsMenuClosed-android.view.Menu-} +``` +public void onOptionsMenuClosed(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +### onPause() {#onPause--} +``` +public void onPause() +``` + + + + +### onPictureInPictureModeChanged(boolean arg0) {#onPictureInPictureModeChanged-boolean-} +``` +public void onPictureInPictureModeChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onPreferenceTreeClick(Preference arg0) {#onPreferenceTreeClick-androidx.preference.Preference-} +``` +public boolean onPreferenceTreeClick(Preference arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.preference.Preference | | + +**Returns:** +boolean +### onPrepareOptionsMenu(Menu arg0) {#onPrepareOptionsMenu-android.view.Menu-} +``` +public void onPrepareOptionsMenu(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +### onPrimaryNavigationFragmentChanged(boolean arg0) {#onPrimaryNavigationFragmentChanged-boolean-} +``` +public void onPrimaryNavigationFragmentChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2) {#onRequestPermissionsResult-int-java.lang.String---int---} +``` +public void onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.String[] | | +| arg2 | int[] | | + +### onResume() {#onResume--} +``` +public void onResume() +``` + + + + +### onSaveInstanceState(Bundle arg0) {#onSaveInstanceState-android.os.Bundle-} +``` +public void onSaveInstanceState(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### onStart() {#onStart--} +``` +public void onStart() +``` + + + + +### onStop() {#onStop--} +``` +public void onStop() +``` + + + + +### onViewCreated(View arg0, Bundle arg1) {#onViewCreated-android.view.View-android.os.Bundle-} +``` +public void onViewCreated(View arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | +| arg1 | android.os.Bundle | | + +### onViewStateRestored(Bundle arg0) {#onViewStateRestored-android.os.Bundle-} +``` +public void onViewStateRestored(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### postponeEnterTransition() {#postponeEnterTransition--} +``` +public void postponeEnterTransition() +``` + + + + +### postponeEnterTransition(long arg0, TimeUnit arg1) {#postponeEnterTransition-long-java.util.concurrent.TimeUnit-} +``` +public final void postponeEnterTransition(long arg0, TimeUnit arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | java.util.concurrent.TimeUnit | | + +### registerForContextMenu(View arg0) {#registerForContextMenu-android.view.View-} +``` +public void registerForContextMenu(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### requestPermissions(String[] arg0, int arg1) {#requestPermissions-java.lang.String---int-} +``` +public final void requestPermissions(String[] arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String[] | | +| arg1 | int | | + +### requireActivity() {#requireActivity--} +``` +public final FragmentActivity requireActivity() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentActivity +### requireArguments() {#requireArguments--} +``` +public final Bundle requireArguments() +``` + + + + +**Returns:** +android.os.Bundle +### requireContext() {#requireContext--} +``` +public final Context requireContext() +``` + + + + +**Returns:** +android.content.Context +### requireFragmentManager() {#requireFragmentManager--} +``` +public final FragmentManager requireFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### requireHost() {#requireHost--} +``` +public final Object requireHost() +``` + + + + +**Returns:** +java.lang.Object +### requireParentFragment() {#requireParentFragment--} +``` +public final Fragment requireParentFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### requireView() {#requireView--} +``` +public final View requireView() +``` + + + + +**Returns:** +android.view.View +### scrollToPreference(Preference arg0) {#scrollToPreference-androidx.preference.Preference-} +``` +public void scrollToPreference(Preference arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.preference.Preference | | + +### scrollToPreference(String arg0) {#scrollToPreference-java.lang.String-} +``` +public void scrollToPreference(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +### setAllowEnterTransitionOverlap(boolean arg0) {#setAllowEnterTransitionOverlap-boolean-} +``` +public void setAllowEnterTransitionOverlap(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAllowReturnTransitionOverlap(boolean arg0) {#setAllowReturnTransitionOverlap-boolean-} +``` +public void setAllowReturnTransitionOverlap(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setArguments(Bundle arg0) {#setArguments-android.os.Bundle-} +``` +public void setArguments(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### setDivider(Drawable arg0) {#setDivider-android.graphics.drawable.Drawable-} +``` +public void setDivider(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setDividerHeight(int arg0) {#setDividerHeight-int-} +``` +public void setDividerHeight(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setEnterSharedElementCallback(SharedElementCallback arg0) {#setEnterSharedElementCallback-androidx.core.app.SharedElementCallback-} +``` +public void setEnterSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.SharedElementCallback | | + +### setEnterTransition(Object arg0) {#setEnterTransition-java.lang.Object-} +``` +public void setEnterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setExitSharedElementCallback(SharedElementCallback arg0) {#setExitSharedElementCallback-androidx.core.app.SharedElementCallback-} +``` +public void setExitSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.SharedElementCallback | | + +### setExitTransition(Object arg0) {#setExitTransition-java.lang.Object-} +``` +public void setExitTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setHasOptionsMenu(boolean arg0) {#setHasOptionsMenu-boolean-} +``` +public void setHasOptionsMenu(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setInitialSavedState(Fragment.SavedState arg0) {#setInitialSavedState-androidx.fragment.app.Fragment.SavedState-} +``` +public void setInitialSavedState(Fragment.SavedState arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment.SavedState | | + +### setMenuVisibility(boolean arg0) {#setMenuVisibility-boolean-} +``` +public void setMenuVisibility(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setPreferenceScreen(PreferenceScreen arg0) {#setPreferenceScreen-androidx.preference.PreferenceScreen-} +``` +public void setPreferenceScreen(PreferenceScreen arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.preference.PreferenceScreen | | + +### setPreferencesFromResource(int arg0, String arg1) {#setPreferencesFromResource-int-java.lang.String-} +``` +public void setPreferencesFromResource(int arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.String | | + +### setReenterTransition(Object arg0) {#setReenterTransition-java.lang.Object-} +``` +public void setReenterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setRetainInstance(boolean arg0) {#setRetainInstance-boolean-} +``` +public void setRetainInstance(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setReturnTransition(Object arg0) {#setReturnTransition-java.lang.Object-} +``` +public void setReturnTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setSharedElementEnterTransition(Object arg0) {#setSharedElementEnterTransition-java.lang.Object-} +``` +public void setSharedElementEnterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setSharedElementReturnTransition(Object arg0) {#setSharedElementReturnTransition-java.lang.Object-} +``` +public void setSharedElementReturnTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setTargetFragment(Fragment arg0, int arg1) {#setTargetFragment-androidx.fragment.app.Fragment-int-} +``` +public void setTargetFragment(Fragment arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | +| arg1 | int | | + +### setUserVisibleHint(boolean arg0) {#setUserVisibleHint-boolean-} +``` +public void setUserVisibleHint(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### shouldShowRequestPermissionRationale(String arg0) {#shouldShowRequestPermissionRationale-java.lang.String-} +``` +public boolean shouldShowRequestPermissionRationale(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +boolean +### startActivity(Intent arg0) {#startActivity-android.content.Intent-} +``` +public void startActivity(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +### startActivity(Intent arg0, Bundle arg1) {#startActivity-android.content.Intent-android.os.Bundle-} +``` +public void startActivity(Intent arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.Bundle | | + +### startActivityForResult(Intent arg0, int arg1) {#startActivityForResult-android.content.Intent-int-} +``` +public void startActivityForResult(Intent arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | + +### startActivityForResult(Intent arg0, int arg1, Bundle arg2) {#startActivityForResult-android.content.Intent-int-android.os.Bundle-} +``` +public void startActivityForResult(Intent arg0, int arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | +| arg2 | android.os.Bundle | | + +### startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6) {#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-} +``` +public void startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.IntentSender | | +| arg1 | int | | +| arg2 | android.content.Intent | | +| arg3 | int | | +| arg4 | int | | +| arg5 | int | | +| arg6 | android.os.Bundle | | + +### startPostponedEnterTransition() {#startPostponedEnterTransition--} +``` +public void startPostponedEnterTransition() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### unregisterForContextMenu(View arg0) {#unregisterForContextMenu-android.view.View-} +``` +public void unregisterForContextMenu(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerview/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerview/_index.md new file mode 100644 index 000000000..5b4c064b5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerview/_index.md @@ -0,0 +1,9143 @@ +--- +title: BarcodeScannerView +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 18 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/barcodescannerview/ +--- +**Inheritance:** +java.lang.Object, android.view.View, android.view.TextureView +``` +public class BarcodeScannerView extends TextureView +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarcodeScannerView(Context context)](#BarcodeScannerView-android.content.Context-) | | +| [BarcodeScannerView(Context context, AttributeSet attrs)](#BarcodeScannerView-android.content.Context-android.util.AttributeSet-) | | +| [BarcodeScannerView(Context context, AttributeSet attrs, int defStyleAttr)](#BarcodeScannerView-android.content.Context-android.util.AttributeSet-int-) | | +| [BarcodeScannerView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes)](#BarcodeScannerView-android.content.Context-android.util.AttributeSet-int-int-) | | +## Champs + +| Champ | Description | +| --- | --- | +| [ACCESSIBILITY_LIVE_REGION_ASSERTIVE](#ACCESSIBILITY-LIVE-REGION-ASSERTIVE) | | +| [ACCESSIBILITY_LIVE_REGION_NONE](#ACCESSIBILITY-LIVE-REGION-NONE) | | +| [ACCESSIBILITY_LIVE_REGION_POLITE](#ACCESSIBILITY-LIVE-REGION-POLITE) | | +| [ALPHA](#ALPHA) | | +| [AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS](#AUTOFILL-FLAG-INCLUDE-NOT-IMPORTANT-VIEWS) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DATE) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DAY) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-MONTH) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-YEAR) | | +| [AUTOFILL_HINT_CREDIT_CARD_NUMBER](#AUTOFILL-HINT-CREDIT-CARD-NUMBER) | | +| [AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE](#AUTOFILL-HINT-CREDIT-CARD-SECURITY-CODE) | | +| [AUTOFILL_HINT_EMAIL_ADDRESS](#AUTOFILL-HINT-EMAIL-ADDRESS) | | +| [AUTOFILL_HINT_NAME](#AUTOFILL-HINT-NAME) | | +| [AUTOFILL_HINT_PASSWORD](#AUTOFILL-HINT-PASSWORD) | | +| [AUTOFILL_HINT_PHONE](#AUTOFILL-HINT-PHONE) | | +| [AUTOFILL_HINT_POSTAL_ADDRESS](#AUTOFILL-HINT-POSTAL-ADDRESS) | | +| [AUTOFILL_HINT_POSTAL_CODE](#AUTOFILL-HINT-POSTAL-CODE) | | +| [AUTOFILL_HINT_USERNAME](#AUTOFILL-HINT-USERNAME) | | +| [AUTOFILL_TYPE_DATE](#AUTOFILL-TYPE-DATE) | | +| [AUTOFILL_TYPE_LIST](#AUTOFILL-TYPE-LIST) | | +| [AUTOFILL_TYPE_NONE](#AUTOFILL-TYPE-NONE) | | +| [AUTOFILL_TYPE_TEXT](#AUTOFILL-TYPE-TEXT) | | +| [AUTOFILL_TYPE_TOGGLE](#AUTOFILL-TYPE-TOGGLE) | | +| [DRAG_FLAG_ACCESSIBILITY_ACTION](#DRAG-FLAG-ACCESSIBILITY-ACTION) | | +| [DRAG_FLAG_GLOBAL](#DRAG-FLAG-GLOBAL) | | +| [DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION](#DRAG-FLAG-GLOBAL-PERSISTABLE-URI-PERMISSION) | | +| [DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION](#DRAG-FLAG-GLOBAL-PREFIX-URI-PERMISSION) | | +| [DRAG_FLAG_GLOBAL_URI_READ](#DRAG-FLAG-GLOBAL-URI-READ) | | +| [DRAG_FLAG_GLOBAL_URI_WRITE](#DRAG-FLAG-GLOBAL-URI-WRITE) | | +| [DRAG_FLAG_OPAQUE](#DRAG-FLAG-OPAQUE) | | +| [DRAWING_CACHE_QUALITY_AUTO](#DRAWING-CACHE-QUALITY-AUTO) | | +| [DRAWING_CACHE_QUALITY_HIGH](#DRAWING-CACHE-QUALITY-HIGH) | | +| [DRAWING_CACHE_QUALITY_LOW](#DRAWING-CACHE-QUALITY-LOW) | | +| [FIND_VIEWS_WITH_CONTENT_DESCRIPTION](#FIND-VIEWS-WITH-CONTENT-DESCRIPTION) | | +| [FIND_VIEWS_WITH_TEXT](#FIND-VIEWS-WITH-TEXT) | | +| [FOCUSABLE](#FOCUSABLE) | | +| [FOCUSABLES_ALL](#FOCUSABLES-ALL) | | +| [FOCUSABLES_TOUCH_MODE](#FOCUSABLES-TOUCH-MODE) | | +| [FOCUSABLE_AUTO](#FOCUSABLE-AUTO) | | +| [FOCUS_BACKWARD](#FOCUS-BACKWARD) | | +| [FOCUS_DOWN](#FOCUS-DOWN) | | +| [FOCUS_FORWARD](#FOCUS-FORWARD) | | +| [FOCUS_LEFT](#FOCUS-LEFT) | | +| [FOCUS_RIGHT](#FOCUS-RIGHT) | | +| [FOCUS_UP](#FOCUS-UP) | | +| [GONE](#GONE) | | +| [HAPTIC_FEEDBACK_ENABLED](#HAPTIC-FEEDBACK-ENABLED) | | +| [IMPORTANT_FOR_ACCESSIBILITY_AUTO](#IMPORTANT-FOR-ACCESSIBILITY-AUTO) | | +| [IMPORTANT_FOR_ACCESSIBILITY_NO](#IMPORTANT-FOR-ACCESSIBILITY-NO) | | +| [IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS](#IMPORTANT-FOR-ACCESSIBILITY-NO-HIDE-DESCENDANTS) | | +| [IMPORTANT_FOR_ACCESSIBILITY_YES](#IMPORTANT-FOR-ACCESSIBILITY-YES) | | +| [IMPORTANT_FOR_AUTOFILL_AUTO](#IMPORTANT-FOR-AUTOFILL-AUTO) | | +| [IMPORTANT_FOR_AUTOFILL_NO](#IMPORTANT-FOR-AUTOFILL-NO) | | +| [IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-AUTOFILL-NO-EXCLUDE-DESCENDANTS) | | +| [IMPORTANT_FOR_AUTOFILL_YES](#IMPORTANT-FOR-AUTOFILL-YES) | | +| [IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-AUTOFILL-YES-EXCLUDE-DESCENDANTS) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_AUTO](#IMPORTANT-FOR-CONTENT-CAPTURE-AUTO) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_NO](#IMPORTANT-FOR-CONTENT-CAPTURE-NO) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-CONTENT-CAPTURE-NO-EXCLUDE-DESCENDANTS) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_YES](#IMPORTANT-FOR-CONTENT-CAPTURE-YES) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-CONTENT-CAPTURE-YES-EXCLUDE-DESCENDANTS) | | +| [INVISIBLE](#INVISIBLE) | | +| [KEEP_SCREEN_ON](#KEEP-SCREEN-ON) | | +| [LAYER_TYPE_HARDWARE](#LAYER-TYPE-HARDWARE) | | +| [LAYER_TYPE_NONE](#LAYER-TYPE-NONE) | | +| [LAYER_TYPE_SOFTWARE](#LAYER-TYPE-SOFTWARE) | | +| [LAYOUT_DIRECTION_INHERIT](#LAYOUT-DIRECTION-INHERIT) | | +| [LAYOUT_DIRECTION_LOCALE](#LAYOUT-DIRECTION-LOCALE) | | +| [LAYOUT_DIRECTION_LTR](#LAYOUT-DIRECTION-LTR) | | +| [LAYOUT_DIRECTION_RTL](#LAYOUT-DIRECTION-RTL) | | +| [MEASURED_HEIGHT_STATE_SHIFT](#MEASURED-HEIGHT-STATE-SHIFT) | | +| [MEASURED_SIZE_MASK](#MEASURED-SIZE-MASK) | | +| [MEASURED_STATE_MASK](#MEASURED-STATE-MASK) | | +| [MEASURED_STATE_TOO_SMALL](#MEASURED-STATE-TOO-SMALL) | | +| [NOT_FOCUSABLE](#NOT-FOCUSABLE) | | +| [NO_ID](#NO-ID) | | +| [OVER_SCROLL_ALWAYS](#OVER-SCROLL-ALWAYS) | | +| [OVER_SCROLL_IF_CONTENT_SCROLLS](#OVER-SCROLL-IF-CONTENT-SCROLLS) | | +| [OVER_SCROLL_NEVER](#OVER-SCROLL-NEVER) | | +| [ROTATION](#ROTATION) | | +| [ROTATION_X](#ROTATION-X) | | +| [ROTATION_Y](#ROTATION-Y) | | +| [SCALE_X](#SCALE-X) | | +| [SCALE_Y](#SCALE-Y) | | +| [SCREEN_STATE_OFF](#SCREEN-STATE-OFF) | | +| [SCREEN_STATE_ON](#SCREEN-STATE-ON) | | +| [SCROLLBARS_INSIDE_INSET](#SCROLLBARS-INSIDE-INSET) | | +| [SCROLLBARS_INSIDE_OVERLAY](#SCROLLBARS-INSIDE-OVERLAY) | | +| [SCROLLBARS_OUTSIDE_INSET](#SCROLLBARS-OUTSIDE-INSET) | | +| [SCROLLBARS_OUTSIDE_OVERLAY](#SCROLLBARS-OUTSIDE-OVERLAY) | | +| [SCROLLBAR_POSITION_DEFAULT](#SCROLLBAR-POSITION-DEFAULT) | | +| [SCROLLBAR_POSITION_LEFT](#SCROLLBAR-POSITION-LEFT) | | +| [SCROLLBAR_POSITION_RIGHT](#SCROLLBAR-POSITION-RIGHT) | | +| [SCROLL_AXIS_HORIZONTAL](#SCROLL-AXIS-HORIZONTAL) | | +| [SCROLL_AXIS_NONE](#SCROLL-AXIS-NONE) | | +| [SCROLL_AXIS_VERTICAL](#SCROLL-AXIS-VERTICAL) | | +| [SCROLL_CAPTURE_HINT_AUTO](#SCROLL-CAPTURE-HINT-AUTO) | | +| [SCROLL_CAPTURE_HINT_EXCLUDE](#SCROLL-CAPTURE-HINT-EXCLUDE) | | +| [SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS](#SCROLL-CAPTURE-HINT-EXCLUDE-DESCENDANTS) | | +| [SCROLL_CAPTURE_HINT_INCLUDE](#SCROLL-CAPTURE-HINT-INCLUDE) | | +| [SCROLL_INDICATOR_BOTTOM](#SCROLL-INDICATOR-BOTTOM) | | +| [SCROLL_INDICATOR_END](#SCROLL-INDICATOR-END) | | +| [SCROLL_INDICATOR_LEFT](#SCROLL-INDICATOR-LEFT) | | +| [SCROLL_INDICATOR_RIGHT](#SCROLL-INDICATOR-RIGHT) | | +| [SCROLL_INDICATOR_START](#SCROLL-INDICATOR-START) | | +| [SCROLL_INDICATOR_TOP](#SCROLL-INDICATOR-TOP) | | +| [SOUND_EFFECTS_ENABLED](#SOUND-EFFECTS-ENABLED) | | +| [STATUS_BAR_HIDDEN](#STATUS-BAR-HIDDEN) | | +| [STATUS_BAR_VISIBLE](#STATUS-BAR-VISIBLE) | | +| [SYSTEM_UI_FLAG_FULLSCREEN](#SYSTEM-UI-FLAG-FULLSCREEN) | | +| [SYSTEM_UI_FLAG_HIDE_NAVIGATION](#SYSTEM-UI-FLAG-HIDE-NAVIGATION) | | +| [SYSTEM_UI_FLAG_IMMERSIVE](#SYSTEM-UI-FLAG-IMMERSIVE) | | +| [SYSTEM_UI_FLAG_IMMERSIVE_STICKY](#SYSTEM-UI-FLAG-IMMERSIVE-STICKY) | | +| [SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN](#SYSTEM-UI-FLAG-LAYOUT-FULLSCREEN) | | +| [SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION](#SYSTEM-UI-FLAG-LAYOUT-HIDE-NAVIGATION) | | +| [SYSTEM_UI_FLAG_LAYOUT_STABLE](#SYSTEM-UI-FLAG-LAYOUT-STABLE) | | +| [SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR](#SYSTEM-UI-FLAG-LIGHT-NAVIGATION-BAR) | | +| [SYSTEM_UI_FLAG_LIGHT_STATUS_BAR](#SYSTEM-UI-FLAG-LIGHT-STATUS-BAR) | | +| [SYSTEM_UI_FLAG_LOW_PROFILE](#SYSTEM-UI-FLAG-LOW-PROFILE) | | +| [SYSTEM_UI_FLAG_VISIBLE](#SYSTEM-UI-FLAG-VISIBLE) | | +| [SYSTEM_UI_LAYOUT_FLAGS](#SYSTEM-UI-LAYOUT-FLAGS) | | +| [TEXT_ALIGNMENT_CENTER](#TEXT-ALIGNMENT-CENTER) | | +| [TEXT_ALIGNMENT_GRAVITY](#TEXT-ALIGNMENT-GRAVITY) | | +| [TEXT_ALIGNMENT_INHERIT](#TEXT-ALIGNMENT-INHERIT) | | +| [TEXT_ALIGNMENT_TEXT_END](#TEXT-ALIGNMENT-TEXT-END) | | +| [TEXT_ALIGNMENT_TEXT_START](#TEXT-ALIGNMENT-TEXT-START) | | +| [TEXT_ALIGNMENT_VIEW_END](#TEXT-ALIGNMENT-VIEW-END) | | +| [TEXT_ALIGNMENT_VIEW_START](#TEXT-ALIGNMENT-VIEW-START) | | +| [TEXT_DIRECTION_ANY_RTL](#TEXT-DIRECTION-ANY-RTL) | | +| [TEXT_DIRECTION_FIRST_STRONG](#TEXT-DIRECTION-FIRST-STRONG) | | +| [TEXT_DIRECTION_FIRST_STRONG_LTR](#TEXT-DIRECTION-FIRST-STRONG-LTR) | | +| [TEXT_DIRECTION_FIRST_STRONG_RTL](#TEXT-DIRECTION-FIRST-STRONG-RTL) | | +| [TEXT_DIRECTION_INHERIT](#TEXT-DIRECTION-INHERIT) | | +| [TEXT_DIRECTION_LOCALE](#TEXT-DIRECTION-LOCALE) | | +| [TEXT_DIRECTION_LTR](#TEXT-DIRECTION-LTR) | | +| [TEXT_DIRECTION_RTL](#TEXT-DIRECTION-RTL) | | +| [TRANSLATION_X](#TRANSLATION-X) | | +| [TRANSLATION_Y](#TRANSLATION-Y) | | +| [TRANSLATION_Z](#TRANSLATION-Z) | | +| [VISIBLE](#VISIBLE) | | +| [X](#X) | | +| [Y](#Y) | | +| [Z](#Z) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [findViewById(int arg0)](#-T-findViewById-int-) | | +| [findViewWithTag(Object arg0)](#-T-findViewWithTag-java.lang.Object-) | | +| [requireViewById(int arg0)](#-T-requireViewById-int-) | | +| [addChildrenForAccessibility(ArrayList arg0)](#addChildrenForAccessibility-java.util.ArrayList-android.view.View--) | | +| [addExtraDataToAccessibilityNodeInfo(AccessibilityNodeInfo arg0, String arg1, Bundle arg2)](#addExtraDataToAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-java.lang.String-android.os.Bundle-) | | +| [addFocusables(ArrayList arg0, int arg1)](#addFocusables-java.util.ArrayList-android.view.View--int-) | | +| [addFocusables(ArrayList arg0, int arg1, int arg2)](#addFocusables-java.util.ArrayList-android.view.View--int-int-) | | +| [addKeyboardNavigationClusters(Collection arg0, int arg1)](#addKeyboardNavigationClusters-java.util.Collection-android.view.View--int-) | | +| [addOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0)](#addOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-) | | +| [addOnLayoutChangeListener(View.OnLayoutChangeListener arg0)](#addOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-) | | +| [addOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0)](#addOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-) | | +| [addTouchables(ArrayList arg0)](#addTouchables-java.util.ArrayList-android.view.View--) | | +| [animate()](#animate--) | | +| [announceForAccessibility(CharSequence arg0)](#announceForAccessibility-java.lang.CharSequence-) | | +| [autofill(SparseArray arg0)](#autofill-android.util.SparseArray-android.view.autofill.AutofillValue--) | | +| [autofill(AutofillValue arg0)](#autofill-android.view.autofill.AutofillValue-) | | +| [bringToFront()](#bringToFront--) | | +| [buildDrawingCache()](#buildDrawingCache--) | | +| [buildDrawingCache(boolean arg0)](#buildDrawingCache-boolean-) | | +| [buildLayer()](#buildLayer--) | | +| [callOnClick()](#callOnClick--) | | +| [canResolveLayoutDirection()](#canResolveLayoutDirection--) | | +| [canResolveTextAlignment()](#canResolveTextAlignment--) | | +| [canResolveTextDirection()](#canResolveTextDirection--) | | +| [canScrollHorizontally(int arg0)](#canScrollHorizontally-int-) | | +| [canScrollVertically(int arg0)](#canScrollVertically-int-) | | +| [cancelDragAndDrop()](#cancelDragAndDrop--) | | +| [cancelLongPress()](#cancelLongPress--) | | +| [cancelPendingInputEvents()](#cancelPendingInputEvents--) | | +| [checkInputConnectionProxy(View arg0)](#checkInputConnectionProxy-android.view.View-) | | +| [clearAnimation()](#clearAnimation--) | | +| [clearFocus()](#clearFocus--) | | +| [clearViewTranslationCallback()](#clearViewTranslationCallback--) | | +| [combineMeasuredStates(int arg0, int arg1)](#combineMeasuredStates-int-int-) | | +| [computeScroll()](#computeScroll--) | | +| [computeSystemWindowInsets(WindowInsets arg0, Rect arg1)](#computeSystemWindowInsets-android.view.WindowInsets-android.graphics.Rect-) | | +| [createAccessibilityNodeInfo()](#createAccessibilityNodeInfo--) | | +| [createContextMenu(ContextMenu arg0)](#createContextMenu-android.view.ContextMenu-) | | +| [destroyDrawingCache()](#destroyDrawingCache--) | | +| [dispatchApplyWindowInsets(WindowInsets arg0)](#dispatchApplyWindowInsets-android.view.WindowInsets-) | | +| [dispatchCapturedPointerEvent(MotionEvent arg0)](#dispatchCapturedPointerEvent-android.view.MotionEvent-) | | +| [dispatchConfigurationChanged(Configuration arg0)](#dispatchConfigurationChanged-android.content.res.Configuration-) | | +| [dispatchCreateViewTranslationRequest(Map arg0, int[] arg1, TranslationCapability arg2, List arg3)](#dispatchCreateViewTranslationRequest-java.util.Map-android.view.autofill.AutofillId-long----int---android.view.translation.TranslationCapability-java.util.List-android.view.translation.ViewTranslationRequest--) | | +| [dispatchDisplayHint(int arg0)](#dispatchDisplayHint-int-) | | +| [dispatchDragEvent(DragEvent arg0)](#dispatchDragEvent-android.view.DragEvent-) | | +| [dispatchDrawableHotspotChanged(float arg0, float arg1)](#dispatchDrawableHotspotChanged-float-float-) | | +| [dispatchFinishTemporaryDetach()](#dispatchFinishTemporaryDetach--) | | +| [dispatchGenericMotionEvent(MotionEvent arg0)](#dispatchGenericMotionEvent-android.view.MotionEvent-) | | +| [dispatchKeyEvent(KeyEvent arg0)](#dispatchKeyEvent-android.view.KeyEvent-) | | +| [dispatchKeyEventPreIme(KeyEvent arg0)](#dispatchKeyEventPreIme-android.view.KeyEvent-) | | +| [dispatchKeyShortcutEvent(KeyEvent arg0)](#dispatchKeyShortcutEvent-android.view.KeyEvent-) | | +| [dispatchNestedFling(float arg0, float arg1, boolean arg2)](#dispatchNestedFling-float-float-boolean-) | | +| [dispatchNestedPreFling(float arg0, float arg1)](#dispatchNestedPreFling-float-float-) | | +| [dispatchNestedPrePerformAccessibilityAction(int arg0, Bundle arg1)](#dispatchNestedPrePerformAccessibilityAction-int-android.os.Bundle-) | | +| [dispatchNestedPreScroll(int arg0, int arg1, int[] arg2, int[] arg3)](#dispatchNestedPreScroll-int-int-int---int---) | | +| [dispatchNestedScroll(int arg0, int arg1, int arg2, int arg3, int[] arg4)](#dispatchNestedScroll-int-int-int-int-int---) | | +| [dispatchPointerCaptureChanged(boolean arg0)](#dispatchPointerCaptureChanged-boolean-) | | +| [dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0)](#dispatchPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-) | | +| [dispatchProvideAutofillStructure(ViewStructure arg0, int arg1)](#dispatchProvideAutofillStructure-android.view.ViewStructure-int-) | | +| [dispatchProvideStructure(ViewStructure arg0)](#dispatchProvideStructure-android.view.ViewStructure-) | | +| [dispatchScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2)](#dispatchScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--) | | +| [dispatchStartTemporaryDetach()](#dispatchStartTemporaryDetach--) | | +| [dispatchSystemUiVisibilityChanged(int arg0)](#dispatchSystemUiVisibilityChanged-int-) | | +| [dispatchTouchEvent(MotionEvent arg0)](#dispatchTouchEvent-android.view.MotionEvent-) | | +| [dispatchTrackballEvent(MotionEvent arg0)](#dispatchTrackballEvent-android.view.MotionEvent-) | | +| [dispatchUnhandledMove(View arg0, int arg1)](#dispatchUnhandledMove-android.view.View-int-) | | +| [dispatchWindowFocusChanged(boolean arg0)](#dispatchWindowFocusChanged-boolean-) | | +| [dispatchWindowInsetsAnimationEnd(WindowInsetsAnimation arg0)](#dispatchWindowInsetsAnimationEnd-android.view.WindowInsetsAnimation-) | | +| [dispatchWindowInsetsAnimationPrepare(WindowInsetsAnimation arg0)](#dispatchWindowInsetsAnimationPrepare-android.view.WindowInsetsAnimation-) | | +| [dispatchWindowInsetsAnimationProgress(WindowInsets arg0, List arg1)](#dispatchWindowInsetsAnimationProgress-android.view.WindowInsets-java.util.List-android.view.WindowInsetsAnimation--) | | +| [dispatchWindowInsetsAnimationStart(WindowInsetsAnimation arg0, WindowInsetsAnimation.Bounds arg1)](#dispatchWindowInsetsAnimationStart-android.view.WindowInsetsAnimation-android.view.WindowInsetsAnimation.Bounds-) | | +| [dispatchWindowSystemUiVisiblityChanged(int arg0)](#dispatchWindowSystemUiVisiblityChanged-int-) | | +| [dispatchWindowVisibilityChanged(int arg0)](#dispatchWindowVisibilityChanged-int-) | | +| [draw(Canvas arg0)](#draw-android.graphics.Canvas-) | | +| [drawableHotspotChanged(float arg0, float arg1)](#drawableHotspotChanged-float-float-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [findFocus()](#findFocus--) | | +| [findOnBackInvokedDispatcher()](#findOnBackInvokedDispatcher--) | | +| [findViewsWithText(ArrayList arg0, CharSequence arg1, int arg2)](#findViewsWithText-java.util.ArrayList-android.view.View--java.lang.CharSequence-int-) | | +| [focusSearch(int arg0)](#focusSearch-int-) | | +| [forceHasOverlappingRendering(boolean arg0)](#forceHasOverlappingRendering-boolean-) | | +| [forceLayout()](#forceLayout--) | | +| [gatherTransparentRegion(Region arg0)](#gatherTransparentRegion-android.graphics.Region-) | | +| [generateDisplayHash(String arg0, Rect arg1, Executor arg2, DisplayHashResultCallback arg3)](#generateDisplayHash-java.lang.String-android.graphics.Rect-java.util.concurrent.Executor-android.view.displayhash.DisplayHashResultCallback-) | | +| [generateViewId()](#generateViewId--) | | +| [getAccessibilityClassName()](#getAccessibilityClassName--) | | +| [getAccessibilityDelegate()](#getAccessibilityDelegate--) | | +| [getAccessibilityLiveRegion()](#getAccessibilityLiveRegion--) | | +| [getAccessibilityNodeProvider()](#getAccessibilityNodeProvider--) | | +| [getAccessibilityPaneTitle()](#getAccessibilityPaneTitle--) | | +| [getAccessibilityTraversalAfter()](#getAccessibilityTraversalAfter--) | | +| [getAccessibilityTraversalBefore()](#getAccessibilityTraversalBefore--) | | +| [getAlpha()](#getAlpha--) | | +| [getAnimation()](#getAnimation--) | | +| [getAnimationMatrix()](#getAnimationMatrix--) | | +| [getApplicationWindowToken()](#getApplicationWindowToken--) | | +| [getAttributeResolutionStack(int arg0)](#getAttributeResolutionStack-int-) | | +| [getAttributeSourceResourceMap()](#getAttributeSourceResourceMap--) | | +| [getAutofillHints()](#getAutofillHints--) | | +| [getAutofillId()](#getAutofillId--) | | +| [getAutofillType()](#getAutofillType--) | | +| [getAutofillValue()](#getAutofillValue--) | | +| [getBackground()](#getBackground--) | | +| [getBackgroundTintBlendMode()](#getBackgroundTintBlendMode--) | | +| [getBackgroundTintList()](#getBackgroundTintList--) | | +| [getBackgroundTintMode()](#getBackgroundTintMode--) | | +| [getBaseline()](#getBaseline--) | | +| [getBitmap()](#getBitmap--) | | +| [getBitmap(Bitmap arg0)](#getBitmap-android.graphics.Bitmap-) | | +| [getBitmap(int arg0, int arg1)](#getBitmap-int-int-) | | +| [getBottom()](#getBottom--) | | +| [getCameraDistance()](#getCameraDistance--) | | +| [getClass()](#getClass--) | | +| [getClipBounds()](#getClipBounds--) | | +| [getClipBounds(Rect arg0)](#getClipBounds-android.graphics.Rect-) | | +| [getClipToOutline()](#getClipToOutline--) | | +| [getContentCaptureSession()](#getContentCaptureSession--) | | +| [getContentDescription()](#getContentDescription--) | | +| [getContext()](#getContext--) | | +| [getDefaultFocusHighlightEnabled()](#getDefaultFocusHighlightEnabled--) | | +| [getDefaultSize(int arg0, int arg1)](#getDefaultSize-int-int-) | | +| [getDisplay()](#getDisplay--) | | +| [getDrawableState()](#getDrawableState--) | | +| [getDrawingCache()](#getDrawingCache--) | | +| [getDrawingCache(boolean arg0)](#getDrawingCache-boolean-) | | +| [getDrawingCacheBackgroundColor()](#getDrawingCacheBackgroundColor--) | | +| [getDrawingCacheQuality()](#getDrawingCacheQuality--) | | +| [getDrawingRect(Rect arg0)](#getDrawingRect-android.graphics.Rect-) | | +| [getDrawingTime()](#getDrawingTime--) | | +| [getElevation()](#getElevation--) | | +| [getExplicitStyle()](#getExplicitStyle--) | | +| [getFilterTouchesWhenObscured()](#getFilterTouchesWhenObscured--) | | +| [getFitsSystemWindows()](#getFitsSystemWindows--) | | +| [getFocusable()](#getFocusable--) | | +| [getFocusables(int arg0)](#getFocusables-int-) | | +| [getFocusedRect(Rect arg0)](#getFocusedRect-android.graphics.Rect-) | | +| [getForeground()](#getForeground--) | | +| [getForegroundGravity()](#getForegroundGravity--) | | +| [getForegroundTintBlendMode()](#getForegroundTintBlendMode--) | | +| [getForegroundTintList()](#getForegroundTintList--) | | +| [getForegroundTintMode()](#getForegroundTintMode--) | | +| [getGlobalVisibleRect(Rect arg0)](#getGlobalVisibleRect-android.graphics.Rect-) | | +| [getGlobalVisibleRect(Rect arg0, Point arg1)](#getGlobalVisibleRect-android.graphics.Rect-android.graphics.Point-) | | +| [getHandler()](#getHandler--) | | +| [getHasOverlappingRendering()](#getHasOverlappingRendering--) | | +| [getHeight()](#getHeight--) | | +| [getHitRect(Rect arg0)](#getHitRect-android.graphics.Rect-) | | +| [getHorizontalFadingEdgeLength()](#getHorizontalFadingEdgeLength--) | | +| [getHorizontalScrollbarThumbDrawable()](#getHorizontalScrollbarThumbDrawable--) | | +| [getHorizontalScrollbarTrackDrawable()](#getHorizontalScrollbarTrackDrawable--) | | +| [getId()](#getId--) | | +| [getImportantForAccessibility()](#getImportantForAccessibility--) | | +| [getImportantForAutofill()](#getImportantForAutofill--) | | +| [getImportantForContentCapture()](#getImportantForContentCapture--) | | +| [getKeepScreenOn()](#getKeepScreenOn--) | | +| [getKeyDispatcherState()](#getKeyDispatcherState--) | | +| [getLabelFor()](#getLabelFor--) | | +| [getLayerType()](#getLayerType--) | | +| [getLayoutDirection()](#getLayoutDirection--) | | +| [getLayoutParams()](#getLayoutParams--) | | +| [getLeft()](#getLeft--) | | +| [getLocalVisibleRect(Rect arg0)](#getLocalVisibleRect-android.graphics.Rect-) | | +| [getLocationInSurface(int[] arg0)](#getLocationInSurface-int---) | | +| [getLocationInWindow(int[] arg0)](#getLocationInWindow-int---) | | +| [getLocationOnScreen(int[] arg0)](#getLocationOnScreen-int---) | | +| [getMatrix()](#getMatrix--) | | +| [getMeasuredHeight()](#getMeasuredHeight--) | | +| [getMeasuredHeightAndState()](#getMeasuredHeightAndState--) | | +| [getMeasuredState()](#getMeasuredState--) | | +| [getMeasuredWidth()](#getMeasuredWidth--) | | +| [getMeasuredWidthAndState()](#getMeasuredWidthAndState--) | | +| [getMinimumHeight()](#getMinimumHeight--) | | +| [getMinimumWidth()](#getMinimumWidth--) | | +| [getNextClusterForwardId()](#getNextClusterForwardId--) | | +| [getNextFocusDownId()](#getNextFocusDownId--) | | +| [getNextFocusForwardId()](#getNextFocusForwardId--) | | +| [getNextFocusLeftId()](#getNextFocusLeftId--) | | +| [getNextFocusRightId()](#getNextFocusRightId--) | | +| [getNextFocusUpId()](#getNextFocusUpId--) | | +| [getOnFocusChangeListener()](#getOnFocusChangeListener--) | | +| [getOutlineAmbientShadowColor()](#getOutlineAmbientShadowColor--) | | +| [getOutlineProvider()](#getOutlineProvider--) | | +| [getOutlineSpotShadowColor()](#getOutlineSpotShadowColor--) | | +| [getOverScrollMode()](#getOverScrollMode--) | | +| [getOverlay()](#getOverlay--) | | +| [getPaddingBottom()](#getPaddingBottom--) | | +| [getPaddingEnd()](#getPaddingEnd--) | | +| [getPaddingLeft()](#getPaddingLeft--) | | +| [getPaddingRight()](#getPaddingRight--) | | +| [getPaddingStart()](#getPaddingStart--) | | +| [getPaddingTop()](#getPaddingTop--) | | +| [getParent()](#getParent--) | | +| [getParentForAccessibility()](#getParentForAccessibility--) | | +| [getPivotX()](#getPivotX--) | | +| [getPivotY()](#getPivotY--) | | +| [getPointerIcon()](#getPointerIcon--) | | +| [getPreferKeepClearRects()](#getPreferKeepClearRects--) | | +| [getReceiveContentMimeTypes()](#getReceiveContentMimeTypes--) | | +| [getResources()](#getResources--) | | +| [getRevealOnFocusHint()](#getRevealOnFocusHint--) | | +| [getRight()](#getRight--) | | +| [getRootSurfaceControl()](#getRootSurfaceControl--) | | +| [getRootView()](#getRootView--) | | +| [getRootWindowInsets()](#getRootWindowInsets--) | | +| [getRotation()](#getRotation--) | | +| [getRotationX()](#getRotationX--) | | +| [getRotationY()](#getRotationY--) | | +| [getScaleX()](#getScaleX--) | | +| [getScaleY()](#getScaleY--) | | +| [getScrollBarDefaultDelayBeforeFade()](#getScrollBarDefaultDelayBeforeFade--) | | +| [getScrollBarFadeDuration()](#getScrollBarFadeDuration--) | | +| [getScrollBarSize()](#getScrollBarSize--) | | +| [getScrollBarStyle()](#getScrollBarStyle--) | | +| [getScrollCaptureHint()](#getScrollCaptureHint--) | | +| [getScrollIndicators()](#getScrollIndicators--) | | +| [getScrollX()](#getScrollX--) | | +| [getScrollY()](#getScrollY--) | | +| [getSolidColor()](#getSolidColor--) | | +| [getSourceLayoutResId()](#getSourceLayoutResId--) | | +| [getStateDescription()](#getStateDescription--) | | +| [getStateListAnimator()](#getStateListAnimator--) | | +| [getSurfaceTexture()](#getSurfaceTexture--) | | +| [getSurfaceTextureListener()](#getSurfaceTextureListener--) | | +| [getSystemGestureExclusionRects()](#getSystemGestureExclusionRects--) | | +| [getSystemUiVisibility()](#getSystemUiVisibility--) | | +| [getTag()](#getTag--) | | +| [getTag(int arg0)](#getTag-int-) | | +| [getTextAlignment()](#getTextAlignment--) | | +| [getTextDirection()](#getTextDirection--) | | +| [getTooltipText()](#getTooltipText--) | | +| [getTop()](#getTop--) | | +| [getTouchDelegate()](#getTouchDelegate--) | | +| [getTouchables()](#getTouchables--) | | +| [getTransform(Matrix arg0)](#getTransform-android.graphics.Matrix-) | | +| [getTransitionAlpha()](#getTransitionAlpha--) | | +| [getTransitionName()](#getTransitionName--) | | +| [getTranslationX()](#getTranslationX--) | | +| [getTranslationY()](#getTranslationY--) | | +| [getTranslationZ()](#getTranslationZ--) | | +| [getUniqueDrawingId()](#getUniqueDrawingId--) | | +| [getVerticalFadingEdgeLength()](#getVerticalFadingEdgeLength--) | | +| [getVerticalScrollbarPosition()](#getVerticalScrollbarPosition--) | | +| [getVerticalScrollbarThumbDrawable()](#getVerticalScrollbarThumbDrawable--) | | +| [getVerticalScrollbarTrackDrawable()](#getVerticalScrollbarTrackDrawable--) | | +| [getVerticalScrollbarWidth()](#getVerticalScrollbarWidth--) | | +| [getViewTranslationResponse()](#getViewTranslationResponse--) | | +| [getViewTreeObserver()](#getViewTreeObserver--) | | +| [getVisibility()](#getVisibility--) | | +| [getWidth()](#getWidth--) | | +| [getWindowId()](#getWindowId--) | | +| [getWindowInsetsController()](#getWindowInsetsController--) | | +| [getWindowSystemUiVisibility()](#getWindowSystemUiVisibility--) | | +| [getWindowToken()](#getWindowToken--) | | +| [getWindowVisibility()](#getWindowVisibility--) | | +| [getWindowVisibleDisplayFrame(Rect arg0)](#getWindowVisibleDisplayFrame-android.graphics.Rect-) | | +| [getX()](#getX--) | | +| [getY()](#getY--) | | +| [getZ()](#getZ--) | | +| [hasExplicitFocusable()](#hasExplicitFocusable--) | | +| [hasFocus()](#hasFocus--) | | +| [hasFocusable()](#hasFocusable--) | | +| [hasNestedScrollingParent()](#hasNestedScrollingParent--) | | +| [hasOnClickListeners()](#hasOnClickListeners--) | | +| [hasOnLongClickListeners()](#hasOnLongClickListeners--) | | +| [hasOverlappingRendering()](#hasOverlappingRendering--) | | +| [hasPointerCapture()](#hasPointerCapture--) | | +| [hasTransientState()](#hasTransientState--) | | +| [hasWindowFocus()](#hasWindowFocus--) | | +| [hashCode()](#hashCode--) | | +| [inflate(Context arg0, int arg1, ViewGroup arg2)](#inflate-android.content.Context-int-android.view.ViewGroup-) | | +| [invalidate()](#invalidate--) | | +| [invalidate(Rect arg0)](#invalidate-android.graphics.Rect-) | | +| [invalidate(int arg0, int arg1, int arg2, int arg3)](#invalidate-int-int-int-int-) | | +| [invalidateDrawable(Drawable arg0)](#invalidateDrawable-android.graphics.drawable.Drawable-) | | +| [invalidateOutline()](#invalidateOutline--) | | +| [isAccessibilityFocused()](#isAccessibilityFocused--) | | +| [isAccessibilityHeading()](#isAccessibilityHeading--) | | +| [isActivated()](#isActivated--) | | +| [isAttachedToWindow()](#isAttachedToWindow--) | | +| [isAutoHandwritingEnabled()](#isAutoHandwritingEnabled--) | | +| [isAvailable()](#isAvailable--) | | +| [isClickable()](#isClickable--) | | +| [isContextClickable()](#isContextClickable--) | | +| [isDirty()](#isDirty--) | | +| [isDrawingCacheEnabled()](#isDrawingCacheEnabled--) | | +| [isDuplicateParentStateEnabled()](#isDuplicateParentStateEnabled--) | | +| [isEnabled()](#isEnabled--) | | +| [isFocusable()](#isFocusable--) | | +| [isFocusableInTouchMode()](#isFocusableInTouchMode--) | | +| [isFocused()](#isFocused--) | | +| [isFocusedByDefault()](#isFocusedByDefault--) | | +| [isForceDarkAllowed()](#isForceDarkAllowed--) | | +| [isHapticFeedbackEnabled()](#isHapticFeedbackEnabled--) | | +| [isHardwareAccelerated()](#isHardwareAccelerated--) | | +| [isHorizontalFadingEdgeEnabled()](#isHorizontalFadingEdgeEnabled--) | | +| [isHorizontalScrollBarEnabled()](#isHorizontalScrollBarEnabled--) | | +| [isHovered()](#isHovered--) | | +| [isImportantForAccessibility()](#isImportantForAccessibility--) | | +| [isImportantForAutofill()](#isImportantForAutofill--) | | +| [isImportantForContentCapture()](#isImportantForContentCapture--) | | +| [isInEditMode()](#isInEditMode--) | | +| [isInLayout()](#isInLayout--) | | +| [isInTouchMode()](#isInTouchMode--) | | +| [isKeyboardNavigationCluster()](#isKeyboardNavigationCluster--) | | +| [isLaidOut()](#isLaidOut--) | | +| [isLayoutDirectionResolved()](#isLayoutDirectionResolved--) | | +| [isLayoutRequested()](#isLayoutRequested--) | | +| [isLongClickable()](#isLongClickable--) | | +| [isNestedScrollingEnabled()](#isNestedScrollingEnabled--) | | +| [isOpaque()](#isOpaque--) | | +| [isPaddingRelative()](#isPaddingRelative--) | | +| [isPivotSet()](#isPivotSet--) | | +| [isPreferKeepClear()](#isPreferKeepClear--) | | +| [isPressed()](#isPressed--) | | +| [isSaveEnabled()](#isSaveEnabled--) | | +| [isSaveFromParentEnabled()](#isSaveFromParentEnabled--) | | +| [isScreenReaderFocusable()](#isScreenReaderFocusable--) | | +| [isScrollContainer()](#isScrollContainer--) | | +| [isScrollbarFadingEnabled()](#isScrollbarFadingEnabled--) | | +| [isSelected()](#isSelected--) | | +| [isShowingLayoutBounds()](#isShowingLayoutBounds--) | | +| [isShown()](#isShown--) | | +| [isSoundEffectsEnabled()](#isSoundEffectsEnabled--) | | +| [isTemporarilyDetached()](#isTemporarilyDetached--) | | +| [isTextAlignmentResolved()](#isTextAlignmentResolved--) | | +| [isTextDirectionResolved()](#isTextDirectionResolved--) | | +| [isVerticalFadingEdgeEnabled()](#isVerticalFadingEdgeEnabled--) | | +| [isVerticalScrollBarEnabled()](#isVerticalScrollBarEnabled--) | | +| [isVisibleToUserForAutofill(int arg0)](#isVisibleToUserForAutofill-int-) | | +| [jumpDrawablesToCurrentState()](#jumpDrawablesToCurrentState--) | | +| [keyboardNavigationClusterSearch(View arg0, int arg1)](#keyboardNavigationClusterSearch-android.view.View-int-) | | +| [layout(int arg0, int arg1, int arg2, int arg3)](#layout-int-int-int-int-) | | +| [lockCanvas()](#lockCanvas--) | | +| [lockCanvas(Rect arg0)](#lockCanvas-android.graphics.Rect-) | | +| [measure(int arg0, int arg1)](#measure-int-int-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [offsetLeftAndRight(int arg0)](#offsetLeftAndRight-int-) | | +| [offsetTopAndBottom(int arg0)](#offsetTopAndBottom-int-) | | +| [onApplyWindowInsets(WindowInsets arg0)](#onApplyWindowInsets-android.view.WindowInsets-) | | +| [onCancelPendingInputEvents()](#onCancelPendingInputEvents--) | | +| [onCapturedPointerEvent(MotionEvent arg0)](#onCapturedPointerEvent-android.view.MotionEvent-) | | +| [onCheckIsTextEditor()](#onCheckIsTextEditor--) | | +| [onCreateInputConnection(EditorInfo arg0)](#onCreateInputConnection-android.view.inputmethod.EditorInfo-) | | +| [onCreateViewTranslationRequest(int[] arg0, Consumer arg1)](#onCreateViewTranslationRequest-int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--) | | +| [onCreateVirtualViewTranslationRequests(long[] arg0, int[] arg1, Consumer arg2)](#onCreateVirtualViewTranslationRequests-long---int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--) | | +| [onDetachedFromWindow()](#onDetachedFromWindow--) | | +| [onDragEvent(DragEvent arg0)](#onDragEvent-android.view.DragEvent-) | | +| [onDrawForeground(Canvas arg0)](#onDrawForeground-android.graphics.Canvas-) | | +| [onFilterTouchEventForSecurity(MotionEvent arg0)](#onFilterTouchEventForSecurity-android.view.MotionEvent-) | | +| [onFinishTemporaryDetach()](#onFinishTemporaryDetach--) | | +| [onGenericMotionEvent(MotionEvent arg0)](#onGenericMotionEvent-android.view.MotionEvent-) | | +| [onHoverChanged(boolean arg0)](#onHoverChanged-boolean-) | | +| [onHoverEvent(MotionEvent arg0)](#onHoverEvent-android.view.MotionEvent-) | | +| [onInitializeAccessibilityEvent(AccessibilityEvent arg0)](#onInitializeAccessibilityEvent-android.view.accessibility.AccessibilityEvent-) | | +| [onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo arg0)](#onInitializeAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-) | | +| [onKeyDown(int arg0, KeyEvent arg1)](#onKeyDown-int-android.view.KeyEvent-) | | +| [onKeyLongPress(int arg0, KeyEvent arg1)](#onKeyLongPress-int-android.view.KeyEvent-) | | +| [onKeyMultiple(int arg0, int arg1, KeyEvent arg2)](#onKeyMultiple-int-int-android.view.KeyEvent-) | | +| [onKeyPreIme(int arg0, KeyEvent arg1)](#onKeyPreIme-int-android.view.KeyEvent-) | | +| [onKeyShortcut(int arg0, KeyEvent arg1)](#onKeyShortcut-int-android.view.KeyEvent-) | | +| [onKeyUp(int arg0, KeyEvent arg1)](#onKeyUp-int-android.view.KeyEvent-) | | +| [onPointerCaptureChange(boolean arg0)](#onPointerCaptureChange-boolean-) | | +| [onPopulateAccessibilityEvent(AccessibilityEvent arg0)](#onPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-) | | +| [onProvideAutofillStructure(ViewStructure arg0, int arg1)](#onProvideAutofillStructure-android.view.ViewStructure-int-) | | +| [onProvideAutofillVirtualStructure(ViewStructure arg0, int arg1)](#onProvideAutofillVirtualStructure-android.view.ViewStructure-int-) | | +| [onProvideContentCaptureStructure(ViewStructure arg0, int arg1)](#onProvideContentCaptureStructure-android.view.ViewStructure-int-) | | +| [onProvideStructure(ViewStructure arg0)](#onProvideStructure-android.view.ViewStructure-) | | +| [onProvideVirtualStructure(ViewStructure arg0)](#onProvideVirtualStructure-android.view.ViewStructure-) | | +| [onReceiveContent(ContentInfo arg0)](#onReceiveContent-android.view.ContentInfo-) | | +| [onResolvePointerIcon(MotionEvent arg0, int arg1)](#onResolvePointerIcon-android.view.MotionEvent-int-) | | +| [onRtlPropertiesChanged(int arg0)](#onRtlPropertiesChanged-int-) | | +| [onScreenStateChanged(int arg0)](#onScreenStateChanged-int-) | | +| [onScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2)](#onScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--) | | +| [onStartTemporaryDetach()](#onStartTemporaryDetach--) | | +| [onTouchEvent(MotionEvent arg0)](#onTouchEvent-android.view.MotionEvent-) | | +| [onTrackballEvent(MotionEvent arg0)](#onTrackballEvent-android.view.MotionEvent-) | | +| [onViewTranslationResponse(ViewTranslationResponse arg0)](#onViewTranslationResponse-android.view.translation.ViewTranslationResponse-) | | +| [onVirtualViewTranslationResponses(LongSparseArray arg0)](#onVirtualViewTranslationResponses-android.util.LongSparseArray-android.view.translation.ViewTranslationResponse--) | | +| [onVisibilityAggregated(boolean arg0)](#onVisibilityAggregated-boolean-) | | +| [onWindowFocusChanged(boolean arg0)](#onWindowFocusChanged-boolean-) | | +| [onWindowSystemUiVisibilityChanged(int arg0)](#onWindowSystemUiVisibilityChanged-int-) | | +| [performAccessibilityAction(int arg0, Bundle arg1)](#performAccessibilityAction-int-android.os.Bundle-) | | +| [performClick()](#performClick--) | | +| [performContextClick()](#performContextClick--) | | +| [performContextClick(float arg0, float arg1)](#performContextClick-float-float-) | | +| [performHapticFeedback(int arg0)](#performHapticFeedback-int-) | | +| [performHapticFeedback(int arg0, int arg1)](#performHapticFeedback-int-int-) | | +| [performLongClick()](#performLongClick--) | | +| [performLongClick(float arg0, float arg1)](#performLongClick-float-float-) | | +| [performReceiveContent(ContentInfo arg0)](#performReceiveContent-android.view.ContentInfo-) | | +| [playSoundEffect(int arg0)](#playSoundEffect-int-) | | +| [post(Runnable arg0)](#post-java.lang.Runnable-) | | +| [postDelayed(Runnable arg0, long arg1)](#postDelayed-java.lang.Runnable-long-) | | +| [postInvalidate()](#postInvalidate--) | | +| [postInvalidate(int arg0, int arg1, int arg2, int arg3)](#postInvalidate-int-int-int-int-) | | +| [postInvalidateDelayed(long arg0)](#postInvalidateDelayed-long-) | | +| [postInvalidateDelayed(long arg0, int arg1, int arg2, int arg3, int arg4)](#postInvalidateDelayed-long-int-int-int-int-) | | +| [postInvalidateOnAnimation()](#postInvalidateOnAnimation--) | | +| [postInvalidateOnAnimation(int arg0, int arg1, int arg2, int arg3)](#postInvalidateOnAnimation-int-int-int-int-) | | +| [postOnAnimation(Runnable arg0)](#postOnAnimation-java.lang.Runnable-) | | +| [postOnAnimationDelayed(Runnable arg0, long arg1)](#postOnAnimationDelayed-java.lang.Runnable-long-) | | +| [refreshDrawableState()](#refreshDrawableState--) | | +| [releasePointerCapture()](#releasePointerCapture--) | | +| [removeCallbacks(Runnable arg0)](#removeCallbacks-java.lang.Runnable-) | | +| [removeOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0)](#removeOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-) | | +| [removeOnLayoutChangeListener(View.OnLayoutChangeListener arg0)](#removeOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-) | | +| [removeOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0)](#removeOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-) | | +| [requestApplyInsets()](#requestApplyInsets--) | | +| [requestFitSystemWindows()](#requestFitSystemWindows--) | | +| [requestFocus()](#requestFocus--) | | +| [requestFocus(int arg0)](#requestFocus-int-) | | +| [requestFocus(int arg0, Rect arg1)](#requestFocus-int-android.graphics.Rect-) | | +| [requestFocusFromTouch()](#requestFocusFromTouch--) | | +| [requestLayout()](#requestLayout--) | | +| [requestPointerCapture()](#requestPointerCapture--) | | +| [requestRectangleOnScreen(Rect arg0)](#requestRectangleOnScreen-android.graphics.Rect-) | | +| [requestRectangleOnScreen(Rect arg0, boolean arg1)](#requestRectangleOnScreen-android.graphics.Rect-boolean-) | | +| [requestUnbufferedDispatch(MotionEvent arg0)](#requestUnbufferedDispatch-android.view.MotionEvent-) | | +| [requestUnbufferedDispatch(int arg0)](#requestUnbufferedDispatch-int-) | | +| [resetPivot()](#resetPivot--) | | +| [resolveSize(int arg0, int arg1)](#resolveSize-int-int-) | | +| [resolveSizeAndState(int arg0, int arg1, int arg2)](#resolveSizeAndState-int-int-int-) | | +| [restoreDefaultFocus()](#restoreDefaultFocus--) | | +| [restoreHierarchyState(SparseArray arg0)](#restoreHierarchyState-android.util.SparseArray-android.os.Parcelable--) | | +| [saveAttributeDataForStyleable(Context arg0, int[] arg1, AttributeSet arg2, TypedArray arg3, int arg4, int arg5)](#saveAttributeDataForStyleable-android.content.Context-int---android.util.AttributeSet-android.content.res.TypedArray-int-int-) | | +| [saveHierarchyState(SparseArray arg0)](#saveHierarchyState-android.util.SparseArray-android.os.Parcelable--) | | +| [scanBarcode(CameraProcessingFragment.OnBarcodeBitmapAvailableListener onBarcodeBitmapAvailableListener, CameraProcessingFragmentSettings settings)](#scanBarcode-com.aspose.barcode.component.barcodescanner.CameraProcessingFragment.OnBarcodeBitmapAvailableListener-com.aspose.barcode.component.barcodescanner.CameraProcessingFragmentSettings-) | | +| [scheduleDrawable(Drawable arg0, Runnable arg1, long arg2)](#scheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-long-) | | +| [scrollBy(int arg0, int arg1)](#scrollBy-int-int-) | | +| [scrollTo(int arg0, int arg1)](#scrollTo-int-int-) | | +| [sendAccessibilityEvent(int arg0)](#sendAccessibilityEvent-int-) | | +| [sendAccessibilityEventUnchecked(AccessibilityEvent arg0)](#sendAccessibilityEventUnchecked-android.view.accessibility.AccessibilityEvent-) | | +| [setAccessibilityDelegate(View.AccessibilityDelegate arg0)](#setAccessibilityDelegate-android.view.View.AccessibilityDelegate-) | | +| [setAccessibilityHeading(boolean arg0)](#setAccessibilityHeading-boolean-) | | +| [setAccessibilityLiveRegion(int arg0)](#setAccessibilityLiveRegion-int-) | | +| [setAccessibilityPaneTitle(CharSequence arg0)](#setAccessibilityPaneTitle-java.lang.CharSequence-) | | +| [setAccessibilityTraversalAfter(int arg0)](#setAccessibilityTraversalAfter-int-) | | +| [setAccessibilityTraversalBefore(int arg0)](#setAccessibilityTraversalBefore-int-) | | +| [setActivated(boolean arg0)](#setActivated-boolean-) | | +| [setAllowClickWhenDisabled(boolean arg0)](#setAllowClickWhenDisabled-boolean-) | | +| [setAlpha(float arg0)](#setAlpha-float-) | | +| [setAnimation(Animation arg0)](#setAnimation-android.view.animation.Animation-) | | +| [setAnimationMatrix(Matrix arg0)](#setAnimationMatrix-android.graphics.Matrix-) | | +| [setAutoHandwritingEnabled(boolean arg0)](#setAutoHandwritingEnabled-boolean-) | | +| [setAutofillHints(String[] arg0)](#setAutofillHints-java.lang.String...-) | | +| [setAutofillId(AutofillId arg0)](#setAutofillId-android.view.autofill.AutofillId-) | | +| [setBackground(Drawable arg0)](#setBackground-android.graphics.drawable.Drawable-) | | +| [setBackgroundColor(int arg0)](#setBackgroundColor-int-) | | +| [setBackgroundDrawable(Drawable arg0)](#setBackgroundDrawable-android.graphics.drawable.Drawable-) | | +| [setBackgroundResource(int arg0)](#setBackgroundResource-int-) | | +| [setBackgroundTintBlendMode(BlendMode arg0)](#setBackgroundTintBlendMode-android.graphics.BlendMode-) | | +| [setBackgroundTintList(ColorStateList arg0)](#setBackgroundTintList-android.content.res.ColorStateList-) | | +| [setBackgroundTintMode(PorterDuff.Mode arg0)](#setBackgroundTintMode-android.graphics.PorterDuff.Mode-) | | +| [setBottom(int arg0)](#setBottom-int-) | | +| [setCameraDistance(float arg0)](#setCameraDistance-float-) | | +| [setClickable(boolean arg0)](#setClickable-boolean-) | | +| [setClipBounds(Rect arg0)](#setClipBounds-android.graphics.Rect-) | | +| [setClipToOutline(boolean arg0)](#setClipToOutline-boolean-) | | +| [setContentCaptureSession(ContentCaptureSession arg0)](#setContentCaptureSession-android.view.contentcapture.ContentCaptureSession-) | | +| [setContentDescription(CharSequence arg0)](#setContentDescription-java.lang.CharSequence-) | | +| [setContextClickable(boolean arg0)](#setContextClickable-boolean-) | | +| [setDefaultFocusHighlightEnabled(boolean arg0)](#setDefaultFocusHighlightEnabled-boolean-) | | +| [setDrawingCacheBackgroundColor(int arg0)](#setDrawingCacheBackgroundColor-int-) | | +| [setDrawingCacheEnabled(boolean arg0)](#setDrawingCacheEnabled-boolean-) | | +| [setDrawingCacheQuality(int arg0)](#setDrawingCacheQuality-int-) | | +| [setDuplicateParentStateEnabled(boolean arg0)](#setDuplicateParentStateEnabled-boolean-) | | +| [setElevation(float arg0)](#setElevation-float-) | | +| [setEnabled(boolean arg0)](#setEnabled-boolean-) | | +| [setFadingEdgeLength(int arg0)](#setFadingEdgeLength-int-) | | +| [setFilterTouchesWhenObscured(boolean arg0)](#setFilterTouchesWhenObscured-boolean-) | | +| [setFitsSystemWindows(boolean arg0)](#setFitsSystemWindows-boolean-) | | +| [setFocusable(boolean arg0)](#setFocusable-boolean-) | | +| [setFocusable(int arg0)](#setFocusable-int-) | | +| [setFocusableInTouchMode(boolean arg0)](#setFocusableInTouchMode-boolean-) | | +| [setFocusedByDefault(boolean arg0)](#setFocusedByDefault-boolean-) | | +| [setForceDarkAllowed(boolean arg0)](#setForceDarkAllowed-boolean-) | | +| [setForeground(Drawable arg0)](#setForeground-android.graphics.drawable.Drawable-) | | +| [setForegroundGravity(int arg0)](#setForegroundGravity-int-) | | +| [setForegroundTintBlendMode(BlendMode arg0)](#setForegroundTintBlendMode-android.graphics.BlendMode-) | | +| [setForegroundTintList(ColorStateList arg0)](#setForegroundTintList-android.content.res.ColorStateList-) | | +| [setForegroundTintMode(PorterDuff.Mode arg0)](#setForegroundTintMode-android.graphics.PorterDuff.Mode-) | | +| [setHapticFeedbackEnabled(boolean arg0)](#setHapticFeedbackEnabled-boolean-) | | +| [setHasTransientState(boolean arg0)](#setHasTransientState-boolean-) | | +| [setHorizontalFadingEdgeEnabled(boolean arg0)](#setHorizontalFadingEdgeEnabled-boolean-) | | +| [setHorizontalScrollBarEnabled(boolean arg0)](#setHorizontalScrollBarEnabled-boolean-) | | +| [setHorizontalScrollbarThumbDrawable(Drawable arg0)](#setHorizontalScrollbarThumbDrawable-android.graphics.drawable.Drawable-) | | +| [setHorizontalScrollbarTrackDrawable(Drawable arg0)](#setHorizontalScrollbarTrackDrawable-android.graphics.drawable.Drawable-) | | +| [setHovered(boolean arg0)](#setHovered-boolean-) | | +| [setId(int arg0)](#setId-int-) | | +| [setImportantForAccessibility(int arg0)](#setImportantForAccessibility-int-) | | +| [setImportantForAutofill(int arg0)](#setImportantForAutofill-int-) | | +| [setImportantForContentCapture(int arg0)](#setImportantForContentCapture-int-) | | +| [setKeepScreenOn(boolean arg0)](#setKeepScreenOn-boolean-) | | +| [setKeyboardNavigationCluster(boolean arg0)](#setKeyboardNavigationCluster-boolean-) | | +| [setLabelFor(int arg0)](#setLabelFor-int-) | | +| [setLayerPaint(Paint arg0)](#setLayerPaint-android.graphics.Paint-) | | +| [setLayerType(int arg0, Paint arg1)](#setLayerType-int-android.graphics.Paint-) | | +| [setLayoutDirection(int arg0)](#setLayoutDirection-int-) | | +| [setLayoutParams(ViewGroup.LayoutParams arg0)](#setLayoutParams-android.view.ViewGroup.LayoutParams-) | | +| [setLeft(int arg0)](#setLeft-int-) | | +| [setLeftTopRightBottom(int arg0, int arg1, int arg2, int arg3)](#setLeftTopRightBottom-int-int-int-int-) | | +| [setLongClickable(boolean arg0)](#setLongClickable-boolean-) | | +| [setMinimumHeight(int arg0)](#setMinimumHeight-int-) | | +| [setMinimumWidth(int arg0)](#setMinimumWidth-int-) | | +| [setNestedScrollingEnabled(boolean arg0)](#setNestedScrollingEnabled-boolean-) | | +| [setNextClusterForwardId(int arg0)](#setNextClusterForwardId-int-) | | +| [setNextFocusDownId(int arg0)](#setNextFocusDownId-int-) | | +| [setNextFocusForwardId(int arg0)](#setNextFocusForwardId-int-) | | +| [setNextFocusLeftId(int arg0)](#setNextFocusLeftId-int-) | | +| [setNextFocusRightId(int arg0)](#setNextFocusRightId-int-) | | +| [setNextFocusUpId(int arg0)](#setNextFocusUpId-int-) | | +| [setOnApplyWindowInsetsListener(View.OnApplyWindowInsetsListener arg0)](#setOnApplyWindowInsetsListener-android.view.View.OnApplyWindowInsetsListener-) | | +| [setOnCapturedPointerListener(View.OnCapturedPointerListener arg0)](#setOnCapturedPointerListener-android.view.View.OnCapturedPointerListener-) | | +| [setOnClickListener(View.OnClickListener arg0)](#setOnClickListener-android.view.View.OnClickListener-) | | +| [setOnContextClickListener(View.OnContextClickListener arg0)](#setOnContextClickListener-android.view.View.OnContextClickListener-) | | +| [setOnCreateContextMenuListener(View.OnCreateContextMenuListener arg0)](#setOnCreateContextMenuListener-android.view.View.OnCreateContextMenuListener-) | | +| [setOnDragListener(View.OnDragListener arg0)](#setOnDragListener-android.view.View.OnDragListener-) | | +| [setOnFocusChangeListener(View.OnFocusChangeListener arg0)](#setOnFocusChangeListener-android.view.View.OnFocusChangeListener-) | | +| [setOnGenericMotionListener(View.OnGenericMotionListener arg0)](#setOnGenericMotionListener-android.view.View.OnGenericMotionListener-) | | +| [setOnHoverListener(View.OnHoverListener arg0)](#setOnHoverListener-android.view.View.OnHoverListener-) | | +| [setOnKeyListener(View.OnKeyListener arg0)](#setOnKeyListener-android.view.View.OnKeyListener-) | | +| [setOnLongClickListener(View.OnLongClickListener arg0)](#setOnLongClickListener-android.view.View.OnLongClickListener-) | | +| [setOnReceiveContentListener(String[] arg0, OnReceiveContentListener arg1)](#setOnReceiveContentListener-java.lang.String---android.view.OnReceiveContentListener-) | | +| [setOnScrollChangeListener(View.OnScrollChangeListener arg0)](#setOnScrollChangeListener-android.view.View.OnScrollChangeListener-) | | +| [setOnSystemUiVisibilityChangeListener(View.OnSystemUiVisibilityChangeListener arg0)](#setOnSystemUiVisibilityChangeListener-android.view.View.OnSystemUiVisibilityChangeListener-) | | +| [setOnTouchListener(View.OnTouchListener arg0)](#setOnTouchListener-android.view.View.OnTouchListener-) | | +| [setOpaque(boolean arg0)](#setOpaque-boolean-) | | +| [setOutlineAmbientShadowColor(int arg0)](#setOutlineAmbientShadowColor-int-) | | +| [setOutlineProvider(ViewOutlineProvider arg0)](#setOutlineProvider-android.view.ViewOutlineProvider-) | | +| [setOutlineSpotShadowColor(int arg0)](#setOutlineSpotShadowColor-int-) | | +| [setOverScrollMode(int arg0)](#setOverScrollMode-int-) | | +| [setPadding(int arg0, int arg1, int arg2, int arg3)](#setPadding-int-int-int-int-) | | +| [setPaddingRelative(int arg0, int arg1, int arg2, int arg3)](#setPaddingRelative-int-int-int-int-) | | +| [setPivotX(float arg0)](#setPivotX-float-) | | +| [setPivotY(float arg0)](#setPivotY-float-) | | +| [setPointerIcon(PointerIcon arg0)](#setPointerIcon-android.view.PointerIcon-) | | +| [setPreferKeepClear(boolean arg0)](#setPreferKeepClear-boolean-) | | +| [setPreferKeepClearRects(List arg0)](#setPreferKeepClearRects-java.util.List-android.graphics.Rect--) | | +| [setPressed(boolean arg0)](#setPressed-boolean-) | | +| [setRenderEffect(RenderEffect arg0)](#setRenderEffect-android.graphics.RenderEffect-) | | +| [setRevealOnFocusHint(boolean arg0)](#setRevealOnFocusHint-boolean-) | | +| [setRight(int arg0)](#setRight-int-) | | +| [setRotation(float arg0)](#setRotation-float-) | | +| [setRotationX(float arg0)](#setRotationX-float-) | | +| [setRotationY(float arg0)](#setRotationY-float-) | | +| [setSaveEnabled(boolean arg0)](#setSaveEnabled-boolean-) | | +| [setSaveFromParentEnabled(boolean arg0)](#setSaveFromParentEnabled-boolean-) | | +| [setScaleX(float arg0)](#setScaleX-float-) | | +| [setScaleY(float arg0)](#setScaleY-float-) | | +| [setScreenReaderFocusable(boolean arg0)](#setScreenReaderFocusable-boolean-) | | +| [setScrollBarDefaultDelayBeforeFade(int arg0)](#setScrollBarDefaultDelayBeforeFade-int-) | | +| [setScrollBarFadeDuration(int arg0)](#setScrollBarFadeDuration-int-) | | +| [setScrollBarSize(int arg0)](#setScrollBarSize-int-) | | +| [setScrollBarStyle(int arg0)](#setScrollBarStyle-int-) | | +| [setScrollCaptureCallback(ScrollCaptureCallback arg0)](#setScrollCaptureCallback-android.view.ScrollCaptureCallback-) | | +| [setScrollCaptureHint(int arg0)](#setScrollCaptureHint-int-) | | +| [setScrollContainer(boolean arg0)](#setScrollContainer-boolean-) | | +| [setScrollIndicators(int arg0)](#setScrollIndicators-int-) | | +| [setScrollIndicators(int arg0, int arg1)](#setScrollIndicators-int-int-) | | +| [setScrollX(int arg0)](#setScrollX-int-) | | +| [setScrollY(int arg0)](#setScrollY-int-) | | +| [setScrollbarFadingEnabled(boolean arg0)](#setScrollbarFadingEnabled-boolean-) | | +| [setSelected(boolean arg0)](#setSelected-boolean-) | | +| [setSoundEffectsEnabled(boolean arg0)](#setSoundEffectsEnabled-boolean-) | | +| [setStateDescription(CharSequence arg0)](#setStateDescription-java.lang.CharSequence-) | | +| [setStateListAnimator(StateListAnimator arg0)](#setStateListAnimator-android.animation.StateListAnimator-) | | +| [setSurfaceTexture(SurfaceTexture arg0)](#setSurfaceTexture-android.graphics.SurfaceTexture-) | | +| [setSurfaceTextureListener(TextureView.SurfaceTextureListener arg0)](#setSurfaceTextureListener-android.view.TextureView.SurfaceTextureListener-) | | +| [setSystemGestureExclusionRects(List arg0)](#setSystemGestureExclusionRects-java.util.List-android.graphics.Rect--) | | +| [setSystemUiVisibility(int arg0)](#setSystemUiVisibility-int-) | | +| [setTag(int arg0, Object arg1)](#setTag-int-java.lang.Object-) | | +| [setTag(Object arg0)](#setTag-java.lang.Object-) | | +| [setTextAlignment(int arg0)](#setTextAlignment-int-) | | +| [setTextDirection(int arg0)](#setTextDirection-int-) | | +| [setTooltipText(CharSequence arg0)](#setTooltipText-java.lang.CharSequence-) | | +| [setTop(int arg0)](#setTop-int-) | | +| [setTouchDelegate(TouchDelegate arg0)](#setTouchDelegate-android.view.TouchDelegate-) | | +| [setTransform(Matrix arg0)](#setTransform-android.graphics.Matrix-) | | +| [setTransitionAlpha(float arg0)](#setTransitionAlpha-float-) | | +| [setTransitionName(String arg0)](#setTransitionName-java.lang.String-) | | +| [setTransitionVisibility(int arg0)](#setTransitionVisibility-int-) | | +| [setTranslationX(float arg0)](#setTranslationX-float-) | | +| [setTranslationY(float arg0)](#setTranslationY-float-) | | +| [setTranslationZ(float arg0)](#setTranslationZ-float-) | | +| [setVerticalFadingEdgeEnabled(boolean arg0)](#setVerticalFadingEdgeEnabled-boolean-) | | +| [setVerticalScrollBarEnabled(boolean arg0)](#setVerticalScrollBarEnabled-boolean-) | | +| [setVerticalScrollbarPosition(int arg0)](#setVerticalScrollbarPosition-int-) | | +| [setVerticalScrollbarThumbDrawable(Drawable arg0)](#setVerticalScrollbarThumbDrawable-android.graphics.drawable.Drawable-) | | +| [setVerticalScrollbarTrackDrawable(Drawable arg0)](#setVerticalScrollbarTrackDrawable-android.graphics.drawable.Drawable-) | | +| [setViewTranslationCallback(ViewTranslationCallback arg0)](#setViewTranslationCallback-android.view.translation.ViewTranslationCallback-) | | +| [setVisibility(int arg0)](#setVisibility-int-) | | +| [setWillNotCacheDrawing(boolean arg0)](#setWillNotCacheDrawing-boolean-) | | +| [setWillNotDraw(boolean arg0)](#setWillNotDraw-boolean-) | | +| [setWindowInsetsAnimationCallback(WindowInsetsAnimation.Callback arg0)](#setWindowInsetsAnimationCallback-android.view.WindowInsetsAnimation.Callback-) | | +| [setX(float arg0)](#setX-float-) | | +| [setY(float arg0)](#setY-float-) | | +| [setZ(float arg0)](#setZ-float-) | | +| [showContextMenu()](#showContextMenu--) | | +| [showContextMenu(float arg0, float arg1)](#showContextMenu-float-float-) | | +| [startActionMode(ActionMode.Callback arg0)](#startActionMode-android.view.ActionMode.Callback-) | | +| [startActionMode(ActionMode.Callback arg0, int arg1)](#startActionMode-android.view.ActionMode.Callback-int-) | | +| [startAnimation(Animation arg0)](#startAnimation-android.view.animation.Animation-) | | +| [startDrag(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3)](#startDrag-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-) | | +| [startDragAndDrop(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3)](#startDragAndDrop-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-) | | +| [startNestedScroll(int arg0)](#startNestedScroll-int-) | | +| [stopNestedScroll()](#stopNestedScroll--) | | +| [toString()](#toString--) | | +| [transformMatrixToGlobal(Matrix arg0)](#transformMatrixToGlobal-android.graphics.Matrix-) | | +| [transformMatrixToLocal(Matrix arg0)](#transformMatrixToLocal-android.graphics.Matrix-) | | +| [unlockCanvasAndPost(Canvas arg0)](#unlockCanvasAndPost-android.graphics.Canvas-) | | +| [unscheduleDrawable(Drawable arg0)](#unscheduleDrawable-android.graphics.drawable.Drawable-) | | +| [unscheduleDrawable(Drawable arg0, Runnable arg1)](#unscheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-) | | +| [updateDragShadow(View.DragShadowBuilder arg0)](#updateDragShadow-android.view.View.DragShadowBuilder-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [willNotCacheDrawing()](#willNotCacheDrawing--) | | +| [willNotDraw()](#willNotDraw--) | | +### BarcodeScannerView(Context context) {#BarcodeScannerView-android.content.Context-} +``` +public BarcodeScannerView(Context context) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| contexte | android.content.Context | | + +### BarcodeScannerView(Context context, AttributeSet attrs) {#BarcodeScannerView-android.content.Context-android.util.AttributeSet-} +``` +public BarcodeScannerView(Context context, AttributeSet attrs) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| contexte | android.content.Context | | +| attrs | android.util.AttributeSet | | + +### BarcodeScannerView(Context context, AttributeSet attrs, int defStyleAttr) {#BarcodeScannerView-android.content.Context-android.util.AttributeSet-int-} +``` +public BarcodeScannerView(Context context, AttributeSet attrs, int defStyleAttr) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| contexte | android.content.Context | | +| attrs | android.util.AttributeSet | | +| defStyleAttr | int | | + +### BarcodeScannerView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {#BarcodeScannerView-android.content.Context-android.util.AttributeSet-int-int-} +``` +public BarcodeScannerView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| contexte | android.content.Context | | +| attrs | android.util.AttributeSet | | +| defStyleAttr | int | | +| defStyleRes | int | | + +### ACCESSIBILITY_LIVE_REGION_ASSERTIVE {#ACCESSIBILITY-LIVE-REGION-ASSERTIVE} +``` +public static final int ACCESSIBILITY_LIVE_REGION_ASSERTIVE +``` + + +### ACCESSIBILITY_LIVE_REGION_NONE {#ACCESSIBILITY-LIVE-REGION-NONE} +``` +public static final int ACCESSIBILITY_LIVE_REGION_NONE +``` + + +### ACCESSIBILITY_LIVE_REGION_POLITE {#ACCESSIBILITY-LIVE-REGION-POLITE} +``` +public static final int ACCESSIBILITY_LIVE_REGION_POLITE +``` + + +### ALPHA {#ALPHA} +``` +public static final Property ALPHA +``` + + +### AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS {#AUTOFILL-FLAG-INCLUDE-NOT-IMPORTANT-VIEWS} +``` +public static final int AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DATE} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DAY} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-MONTH} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-YEAR} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR +``` + + +### AUTOFILL_HINT_CREDIT_CARD_NUMBER {#AUTOFILL-HINT-CREDIT-CARD-NUMBER} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_NUMBER +``` + + +### AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE {#AUTOFILL-HINT-CREDIT-CARD-SECURITY-CODE} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE +``` + + +### AUTOFILL_HINT_EMAIL_ADDRESS {#AUTOFILL-HINT-EMAIL-ADDRESS} +``` +public static final String AUTOFILL_HINT_EMAIL_ADDRESS +``` + + +### AUTOFILL_HINT_NAME {#AUTOFILL-HINT-NAME} +``` +public static final String AUTOFILL_HINT_NAME +``` + + +### AUTOFILL_HINT_PASSWORD {#AUTOFILL-HINT-PASSWORD} +``` +public static final String AUTOFILL_HINT_PASSWORD +``` + + +### AUTOFILL_HINT_PHONE {#AUTOFILL-HINT-PHONE} +``` +public static final String AUTOFILL_HINT_PHONE +``` + + +### AUTOFILL_HINT_POSTAL_ADDRESS {#AUTOFILL-HINT-POSTAL-ADDRESS} +``` +public static final String AUTOFILL_HINT_POSTAL_ADDRESS +``` + + +### AUTOFILL_HINT_POSTAL_CODE {#AUTOFILL-HINT-POSTAL-CODE} +``` +public static final String AUTOFILL_HINT_POSTAL_CODE +``` + + +### AUTOFILL_HINT_USERNAME {#AUTOFILL-HINT-USERNAME} +``` +public static final String AUTOFILL_HINT_USERNAME +``` + + +### AUTOFILL_TYPE_DATE {#AUTOFILL-TYPE-DATE} +``` +public static final int AUTOFILL_TYPE_DATE +``` + + +### AUTOFILL_TYPE_LIST {#AUTOFILL-TYPE-LIST} +``` +public static final int AUTOFILL_TYPE_LIST +``` + + +### AUTOFILL_TYPE_NONE {#AUTOFILL-TYPE-NONE} +``` +public static final int AUTOFILL_TYPE_NONE +``` + + +### AUTOFILL_TYPE_TEXT {#AUTOFILL-TYPE-TEXT} +``` +public static final int AUTOFILL_TYPE_TEXT +``` + + +### AUTOFILL_TYPE_TOGGLE {#AUTOFILL-TYPE-TOGGLE} +``` +public static final int AUTOFILL_TYPE_TOGGLE +``` + + +### DRAG_FLAG_ACCESSIBILITY_ACTION {#DRAG-FLAG-ACCESSIBILITY-ACTION} +``` +public static final int DRAG_FLAG_ACCESSIBILITY_ACTION +``` + + +### DRAG_FLAG_GLOBAL {#DRAG-FLAG-GLOBAL} +``` +public static final int DRAG_FLAG_GLOBAL +``` + + +### DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION {#DRAG-FLAG-GLOBAL-PERSISTABLE-URI-PERMISSION} +``` +public static final int DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION +``` + + +### DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION {#DRAG-FLAG-GLOBAL-PREFIX-URI-PERMISSION} +``` +public static final int DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION +``` + + +### DRAG_FLAG_GLOBAL_URI_READ {#DRAG-FLAG-GLOBAL-URI-READ} +``` +public static final int DRAG_FLAG_GLOBAL_URI_READ +``` + + +### DRAG_FLAG_GLOBAL_URI_WRITE {#DRAG-FLAG-GLOBAL-URI-WRITE} +``` +public static final int DRAG_FLAG_GLOBAL_URI_WRITE +``` + + +### DRAG_FLAG_OPAQUE {#DRAG-FLAG-OPAQUE} +``` +public static final int DRAG_FLAG_OPAQUE +``` + + +### DRAWING_CACHE_QUALITY_AUTO {#DRAWING-CACHE-QUALITY-AUTO} +``` +public static final int DRAWING_CACHE_QUALITY_AUTO +``` + + +### DRAWING_CACHE_QUALITY_HIGH {#DRAWING-CACHE-QUALITY-HIGH} +``` +public static final int DRAWING_CACHE_QUALITY_HIGH +``` + + +### DRAWING_CACHE_QUALITY_LOW {#DRAWING-CACHE-QUALITY-LOW} +``` +public static final int DRAWING_CACHE_QUALITY_LOW +``` + + +### FIND_VIEWS_WITH_CONTENT_DESCRIPTION {#FIND-VIEWS-WITH-CONTENT-DESCRIPTION} +``` +public static final int FIND_VIEWS_WITH_CONTENT_DESCRIPTION +``` + + +### FIND_VIEWS_WITH_TEXT {#FIND-VIEWS-WITH-TEXT} +``` +public static final int FIND_VIEWS_WITH_TEXT +``` + + +### FOCUSABLE {#FOCUSABLE} +``` +public static final int FOCUSABLE +``` + + +### FOCUSABLES_ALL {#FOCUSABLES-ALL} +``` +public static final int FOCUSABLES_ALL +``` + + +### FOCUSABLES_TOUCH_MODE {#FOCUSABLES-TOUCH-MODE} +``` +public static final int FOCUSABLES_TOUCH_MODE +``` + + +### FOCUSABLE_AUTO {#FOCUSABLE-AUTO} +``` +public static final int FOCUSABLE_AUTO +``` + + +### FOCUS_BACKWARD {#FOCUS-BACKWARD} +``` +public static final int FOCUS_BACKWARD +``` + + +### FOCUS_DOWN {#FOCUS-DOWN} +``` +public static final int FOCUS_DOWN +``` + + +### FOCUS_FORWARD {#FOCUS-FORWARD} +``` +public static final int FOCUS_FORWARD +``` + + +### FOCUS_LEFT {#FOCUS-LEFT} +``` +public static final int FOCUS_LEFT +``` + + +### FOCUS_RIGHT {#FOCUS-RIGHT} +``` +public static final int FOCUS_RIGHT +``` + + +### FOCUS_UP {#FOCUS-UP} +``` +public static final int FOCUS_UP +``` + + +### GONE {#GONE} +``` +public static final int GONE +``` + + +### HAPTIC_FEEDBACK_ENABLED {#HAPTIC-FEEDBACK-ENABLED} +``` +public static final int HAPTIC_FEEDBACK_ENABLED +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_AUTO {#IMPORTANT-FOR-ACCESSIBILITY-AUTO} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_AUTO +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_NO {#IMPORTANT-FOR-ACCESSIBILITY-NO} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_NO +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS {#IMPORTANT-FOR-ACCESSIBILITY-NO-HIDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_YES {#IMPORTANT-FOR-ACCESSIBILITY-YES} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_YES +``` + + +### IMPORTANT_FOR_AUTOFILL_AUTO {#IMPORTANT-FOR-AUTOFILL-AUTO} +``` +public static final int IMPORTANT_FOR_AUTOFILL_AUTO +``` + + +### IMPORTANT_FOR_AUTOFILL_NO {#IMPORTANT-FOR-AUTOFILL-NO} +``` +public static final int IMPORTANT_FOR_AUTOFILL_NO +``` + + +### IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-AUTOFILL-NO-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_AUTOFILL_YES {#IMPORTANT-FOR-AUTOFILL-YES} +``` +public static final int IMPORTANT_FOR_AUTOFILL_YES +``` + + +### IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-AUTOFILL-YES-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_AUTO {#IMPORTANT-FOR-CONTENT-CAPTURE-AUTO} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_AUTO +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_NO {#IMPORTANT-FOR-CONTENT-CAPTURE-NO} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_NO +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-CONTENT-CAPTURE-NO-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_YES {#IMPORTANT-FOR-CONTENT-CAPTURE-YES} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_YES +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-CONTENT-CAPTURE-YES-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS +``` + + +### INVISIBLE {#INVISIBLE} +``` +public static final int INVISIBLE +``` + + +### KEEP_SCREEN_ON {#KEEP-SCREEN-ON} +``` +public static final int KEEP_SCREEN_ON +``` + + +### LAYER_TYPE_HARDWARE {#LAYER-TYPE-HARDWARE} +``` +public static final int LAYER_TYPE_HARDWARE +``` + + +### LAYER_TYPE_NONE {#LAYER-TYPE-NONE} +``` +public static final int LAYER_TYPE_NONE +``` + + +### LAYER_TYPE_SOFTWARE {#LAYER-TYPE-SOFTWARE} +``` +public static final int LAYER_TYPE_SOFTWARE +``` + + +### LAYOUT_DIRECTION_INHERIT {#LAYOUT-DIRECTION-INHERIT} +``` +public static final int LAYOUT_DIRECTION_INHERIT +``` + + +### LAYOUT_DIRECTION_LOCALE {#LAYOUT-DIRECTION-LOCALE} +``` +public static final int LAYOUT_DIRECTION_LOCALE +``` + + +### LAYOUT_DIRECTION_LTR {#LAYOUT-DIRECTION-LTR} +``` +public static final int LAYOUT_DIRECTION_LTR +``` + + +### LAYOUT_DIRECTION_RTL {#LAYOUT-DIRECTION-RTL} +``` +public static final int LAYOUT_DIRECTION_RTL +``` + + +### MEASURED_HEIGHT_STATE_SHIFT {#MEASURED-HEIGHT-STATE-SHIFT} +``` +public static final int MEASURED_HEIGHT_STATE_SHIFT +``` + + +### MEASURED_SIZE_MASK {#MEASURED-SIZE-MASK} +``` +public static final int MEASURED_SIZE_MASK +``` + + +### MEASURED_STATE_MASK {#MEASURED-STATE-MASK} +``` +public static final int MEASURED_STATE_MASK +``` + + +### MEASURED_STATE_TOO_SMALL {#MEASURED-STATE-TOO-SMALL} +``` +public static final int MEASURED_STATE_TOO_SMALL +``` + + +### NOT_FOCUSABLE {#NOT-FOCUSABLE} +``` +public static final int NOT_FOCUSABLE +``` + + +### NO_ID {#NO-ID} +``` +public static final int NO_ID +``` + + +### OVER_SCROLL_ALWAYS {#OVER-SCROLL-ALWAYS} +``` +public static final int OVER_SCROLL_ALWAYS +``` + + +### OVER_SCROLL_IF_CONTENT_SCROLLS {#OVER-SCROLL-IF-CONTENT-SCROLLS} +``` +public static final int OVER_SCROLL_IF_CONTENT_SCROLLS +``` + + +### OVER_SCROLL_NEVER {#OVER-SCROLL-NEVER} +``` +public static final int OVER_SCROLL_NEVER +``` + + +### ROTATION {#ROTATION} +``` +public static final Property ROTATION +``` + + +### ROTATION_X {#ROTATION-X} +``` +public static final Property ROTATION_X +``` + + +### ROTATION_Y {#ROTATION-Y} +``` +public static final Property ROTATION_Y +``` + + +### SCALE_X {#SCALE-X} +``` +public static final Property SCALE_X +``` + + +### SCALE_Y {#SCALE-Y} +``` +public static final Property SCALE_Y +``` + + +### SCREEN_STATE_OFF {#SCREEN-STATE-OFF} +``` +public static final int SCREEN_STATE_OFF +``` + + +### SCREEN_STATE_ON {#SCREEN-STATE-ON} +``` +public static final int SCREEN_STATE_ON +``` + + +### SCROLLBARS_INSIDE_INSET {#SCROLLBARS-INSIDE-INSET} +``` +public static final int SCROLLBARS_INSIDE_INSET +``` + + +### SCROLLBARS_INSIDE_OVERLAY {#SCROLLBARS-INSIDE-OVERLAY} +``` +public static final int SCROLLBARS_INSIDE_OVERLAY +``` + + +### SCROLLBARS_OUTSIDE_INSET {#SCROLLBARS-OUTSIDE-INSET} +``` +public static final int SCROLLBARS_OUTSIDE_INSET +``` + + +### SCROLLBARS_OUTSIDE_OVERLAY {#SCROLLBARS-OUTSIDE-OVERLAY} +``` +public static final int SCROLLBARS_OUTSIDE_OVERLAY +``` + + +### SCROLLBAR_POSITION_DEFAULT {#SCROLLBAR-POSITION-DEFAULT} +``` +public static final int SCROLLBAR_POSITION_DEFAULT +``` + + +### SCROLLBAR_POSITION_LEFT {#SCROLLBAR-POSITION-LEFT} +``` +public static final int SCROLLBAR_POSITION_LEFT +``` + + +### SCROLLBAR_POSITION_RIGHT {#SCROLLBAR-POSITION-RIGHT} +``` +public static final int SCROLLBAR_POSITION_RIGHT +``` + + +### SCROLL_AXIS_HORIZONTAL {#SCROLL-AXIS-HORIZONTAL} +``` +public static final int SCROLL_AXIS_HORIZONTAL +``` + + +### SCROLL_AXIS_NONE {#SCROLL-AXIS-NONE} +``` +public static final int SCROLL_AXIS_NONE +``` + + +### SCROLL_AXIS_VERTICAL {#SCROLL-AXIS-VERTICAL} +``` +public static final int SCROLL_AXIS_VERTICAL +``` + + +### SCROLL_CAPTURE_HINT_AUTO {#SCROLL-CAPTURE-HINT-AUTO} +``` +public static final int SCROLL_CAPTURE_HINT_AUTO +``` + + +### SCROLL_CAPTURE_HINT_EXCLUDE {#SCROLL-CAPTURE-HINT-EXCLUDE} +``` +public static final int SCROLL_CAPTURE_HINT_EXCLUDE +``` + + +### SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS {#SCROLL-CAPTURE-HINT-EXCLUDE-DESCENDANTS} +``` +public static final int SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS +``` + + +### SCROLL_CAPTURE_HINT_INCLUDE {#SCROLL-CAPTURE-HINT-INCLUDE} +``` +public static final int SCROLL_CAPTURE_HINT_INCLUDE +``` + + +### SCROLL_INDICATOR_BOTTOM {#SCROLL-INDICATOR-BOTTOM} +``` +public static final int SCROLL_INDICATOR_BOTTOM +``` + + +### SCROLL_INDICATOR_END {#SCROLL-INDICATOR-END} +``` +public static final int SCROLL_INDICATOR_END +``` + + +### SCROLL_INDICATOR_LEFT {#SCROLL-INDICATOR-LEFT} +``` +public static final int SCROLL_INDICATOR_LEFT +``` + + +### SCROLL_INDICATOR_RIGHT {#SCROLL-INDICATOR-RIGHT} +``` +public static final int SCROLL_INDICATOR_RIGHT +``` + + +### SCROLL_INDICATOR_START {#SCROLL-INDICATOR-START} +``` +public static final int SCROLL_INDICATOR_START +``` + + +### SCROLL_INDICATOR_TOP {#SCROLL-INDICATOR-TOP} +``` +public static final int SCROLL_INDICATOR_TOP +``` + + +### SOUND_EFFECTS_ENABLED {#SOUND-EFFECTS-ENABLED} +``` +public static final int SOUND_EFFECTS_ENABLED +``` + + +### STATUS_BAR_HIDDEN {#STATUS-BAR-HIDDEN} +``` +public static final int STATUS_BAR_HIDDEN +``` + + +### STATUS_BAR_VISIBLE {#STATUS-BAR-VISIBLE} +``` +public static final int STATUS_BAR_VISIBLE +``` + + +### SYSTEM_UI_FLAG_FULLSCREEN {#SYSTEM-UI-FLAG-FULLSCREEN} +``` +public static final int SYSTEM_UI_FLAG_FULLSCREEN +``` + + +### SYSTEM_UI_FLAG_HIDE_NAVIGATION {#SYSTEM-UI-FLAG-HIDE-NAVIGATION} +``` +public static final int SYSTEM_UI_FLAG_HIDE_NAVIGATION +``` + + +### SYSTEM_UI_FLAG_IMMERSIVE {#SYSTEM-UI-FLAG-IMMERSIVE} +``` +public static final int SYSTEM_UI_FLAG_IMMERSIVE +``` + + +### SYSTEM_UI_FLAG_IMMERSIVE_STICKY {#SYSTEM-UI-FLAG-IMMERSIVE-STICKY} +``` +public static final int SYSTEM_UI_FLAG_IMMERSIVE_STICKY +``` + + +### SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN {#SYSTEM-UI-FLAG-LAYOUT-FULLSCREEN} +``` +public static final int SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN +``` + + +### SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION {#SYSTEM-UI-FLAG-LAYOUT-HIDE-NAVIGATION} +``` +public static final int SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION +``` + + +### SYSTEM_UI_FLAG_LAYOUT_STABLE {#SYSTEM-UI-FLAG-LAYOUT-STABLE} +``` +public static final int SYSTEM_UI_FLAG_LAYOUT_STABLE +``` + + +### SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR {#SYSTEM-UI-FLAG-LIGHT-NAVIGATION-BAR} +``` +public static final int SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR +``` + + +### SYSTEM_UI_FLAG_LIGHT_STATUS_BAR {#SYSTEM-UI-FLAG-LIGHT-STATUS-BAR} +``` +public static final int SYSTEM_UI_FLAG_LIGHT_STATUS_BAR +``` + + +### SYSTEM_UI_FLAG_LOW_PROFILE {#SYSTEM-UI-FLAG-LOW-PROFILE} +``` +public static final int SYSTEM_UI_FLAG_LOW_PROFILE +``` + + +### SYSTEM_UI_FLAG_VISIBLE {#SYSTEM-UI-FLAG-VISIBLE} +``` +public static final int SYSTEM_UI_FLAG_VISIBLE +``` + + +### SYSTEM_UI_LAYOUT_FLAGS {#SYSTEM-UI-LAYOUT-FLAGS} +``` +public static final int SYSTEM_UI_LAYOUT_FLAGS +``` + + +### TEXT_ALIGNMENT_CENTER {#TEXT-ALIGNMENT-CENTER} +``` +public static final int TEXT_ALIGNMENT_CENTER +``` + + +### TEXT_ALIGNMENT_GRAVITY {#TEXT-ALIGNMENT-GRAVITY} +``` +public static final int TEXT_ALIGNMENT_GRAVITY +``` + + +### TEXT_ALIGNMENT_INHERIT {#TEXT-ALIGNMENT-INHERIT} +``` +public static final int TEXT_ALIGNMENT_INHERIT +``` + + +### TEXT_ALIGNMENT_TEXT_END {#TEXT-ALIGNMENT-TEXT-END} +``` +public static final int TEXT_ALIGNMENT_TEXT_END +``` + + +### TEXT_ALIGNMENT_TEXT_START {#TEXT-ALIGNMENT-TEXT-START} +``` +public static final int TEXT_ALIGNMENT_TEXT_START +``` + + +### TEXT_ALIGNMENT_VIEW_END {#TEXT-ALIGNMENT-VIEW-END} +``` +public static final int TEXT_ALIGNMENT_VIEW_END +``` + + +### TEXT_ALIGNMENT_VIEW_START {#TEXT-ALIGNMENT-VIEW-START} +``` +public static final int TEXT_ALIGNMENT_VIEW_START +``` + + +### TEXT_DIRECTION_ANY_RTL {#TEXT-DIRECTION-ANY-RTL} +``` +public static final int TEXT_DIRECTION_ANY_RTL +``` + + +### TEXT_DIRECTION_FIRST_STRONG {#TEXT-DIRECTION-FIRST-STRONG} +``` +public static final int TEXT_DIRECTION_FIRST_STRONG +``` + + +### TEXT_DIRECTION_FIRST_STRONG_LTR {#TEXT-DIRECTION-FIRST-STRONG-LTR} +``` +public static final int TEXT_DIRECTION_FIRST_STRONG_LTR +``` + + +### TEXT_DIRECTION_FIRST_STRONG_RTL {#TEXT-DIRECTION-FIRST-STRONG-RTL} +``` +public static final int TEXT_DIRECTION_FIRST_STRONG_RTL +``` + + +### TEXT_DIRECTION_INHERIT {#TEXT-DIRECTION-INHERIT} +``` +public static final int TEXT_DIRECTION_INHERIT +``` + + +### TEXT_DIRECTION_LOCALE {#TEXT-DIRECTION-LOCALE} +``` +public static final int TEXT_DIRECTION_LOCALE +``` + + +### TEXT_DIRECTION_LTR {#TEXT-DIRECTION-LTR} +``` +public static final int TEXT_DIRECTION_LTR +``` + + +### TEXT_DIRECTION_RTL {#TEXT-DIRECTION-RTL} +``` +public static final int TEXT_DIRECTION_RTL +``` + + +### TRANSLATION_X {#TRANSLATION-X} +``` +public static final Property TRANSLATION_X +``` + + +### TRANSLATION_Y {#TRANSLATION-Y} +``` +public static final Property TRANSLATION_Y +``` + + +### TRANSLATION_Z {#TRANSLATION-Z} +``` +public static final Property TRANSLATION_Z +``` + + +### VISIBLE {#VISIBLE} +``` +public static final int VISIBLE +``` + + +### X {#X} +``` +public static final Property X +``` + + +### Y {#Y} +``` +public static final Property Y +``` + + +### Z {#Z} +``` +public static final Property Z +``` + + +### findViewById(int arg0) {#-T-findViewById-int-} +``` +public final T findViewById(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +T +### findViewWithTag(Object arg0) {#-T-findViewWithTag-java.lang.Object-} +``` +public final T findViewWithTag(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +T +### requireViewById(int arg0) {#-T-requireViewById-int-} +``` +public final T requireViewById(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +T +### addChildrenForAccessibility(ArrayList arg0) {#addChildrenForAccessibility-java.util.ArrayList-android.view.View--} +``` +public void addChildrenForAccessibility(ArrayList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | + +### addExtraDataToAccessibilityNodeInfo(AccessibilityNodeInfo arg0, String arg1, Bundle arg2) {#addExtraDataToAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-java.lang.String-android.os.Bundle-} +``` +public void addExtraDataToAccessibilityNodeInfo(AccessibilityNodeInfo arg0, String arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityNodeInfo | | +| arg1 | java.lang.String | | +| arg2 | android.os.Bundle | | + +### addFocusables(ArrayList arg0, int arg1) {#addFocusables-java.util.ArrayList-android.view.View--int-} +``` +public void addFocusables(ArrayList arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | +| arg1 | int | | + +### addFocusables(ArrayList arg0, int arg1, int arg2) {#addFocusables-java.util.ArrayList-android.view.View--int-int-} +``` +public void addFocusables(ArrayList arg0, int arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | +| arg1 | int | | +| arg2 | int | | + +### addKeyboardNavigationClusters(Collection arg0, int arg1) {#addKeyboardNavigationClusters-java.util.Collection-android.view.View--int-} +``` +public void addKeyboardNavigationClusters(Collection arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | +| arg1 | int | | + +### addOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) {#addOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-} +``` +public void addOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnAttachStateChangeListener | | + +### addOnLayoutChangeListener(View.OnLayoutChangeListener arg0) {#addOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-} +``` +public void addOnLayoutChangeListener(View.OnLayoutChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnLayoutChangeListener | | + +### addOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) {#addOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-} +``` +public void addOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnUnhandledKeyEventListener | | + +### addTouchables(ArrayList arg0) {#addTouchables-java.util.ArrayList-android.view.View--} +``` +public void addTouchables(ArrayList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | + +### animate() {#animate--} +``` +public ViewPropertyAnimator animate() +``` + + + + +**Returns:** +android.view.ViewPropertyAnimator +### announceForAccessibility(CharSequence arg0) {#announceForAccessibility-java.lang.CharSequence-} +``` +public void announceForAccessibility(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### autofill(SparseArray arg0) {#autofill-android.util.SparseArray-android.view.autofill.AutofillValue--} +``` +public void autofill(SparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.SparseArray | | + +### autofill(AutofillValue arg0) {#autofill-android.view.autofill.AutofillValue-} +``` +public void autofill(AutofillValue arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.autofill.AutofillValue | | + +### bringToFront() {#bringToFront--} +``` +public void bringToFront() +``` + + + + +### buildDrawingCache() {#buildDrawingCache--} +``` +public void buildDrawingCache() +``` + + + + +### buildDrawingCache(boolean arg0) {#buildDrawingCache-boolean-} +``` +public void buildDrawingCache(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### buildLayer() {#buildLayer--} +``` +public void buildLayer() +``` + + + + +### callOnClick() {#callOnClick--} +``` +public boolean callOnClick() +``` + + + + +**Returns:** +boolean +### canResolveLayoutDirection() {#canResolveLayoutDirection--} +``` +public boolean canResolveLayoutDirection() +``` + + + + +**Returns:** +boolean +### canResolveTextAlignment() {#canResolveTextAlignment--} +``` +public boolean canResolveTextAlignment() +``` + + + + +**Returns:** +boolean +### canResolveTextDirection() {#canResolveTextDirection--} +``` +public boolean canResolveTextDirection() +``` + + + + +**Returns:** +boolean +### canScrollHorizontally(int arg0) {#canScrollHorizontally-int-} +``` +public boolean canScrollHorizontally(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### canScrollVertically(int arg0) {#canScrollVertically-int-} +``` +public boolean canScrollVertically(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### cancelDragAndDrop() {#cancelDragAndDrop--} +``` +public final void cancelDragAndDrop() +``` + + + + +### cancelLongPress() {#cancelLongPress--} +``` +public void cancelLongPress() +``` + + + + +### cancelPendingInputEvents() {#cancelPendingInputEvents--} +``` +public final void cancelPendingInputEvents() +``` + + + + +### checkInputConnectionProxy(View arg0) {#checkInputConnectionProxy-android.view.View-} +``` +public boolean checkInputConnectionProxy(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +**Returns:** +boolean +### clearAnimation() {#clearAnimation--} +``` +public void clearAnimation() +``` + + + + +### clearFocus() {#clearFocus--} +``` +public void clearFocus() +``` + + + + +### clearViewTranslationCallback() {#clearViewTranslationCallback--} +``` +public void clearViewTranslationCallback() +``` + + + + +### combineMeasuredStates(int arg0, int arg1) {#combineMeasuredStates-int-int-} +``` +public static int combineMeasuredStates(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +int +### computeScroll() {#computeScroll--} +``` +public void computeScroll() +``` + + + + +### computeSystemWindowInsets(WindowInsets arg0, Rect arg1) {#computeSystemWindowInsets-android.view.WindowInsets-android.graphics.Rect-} +``` +public WindowInsets computeSystemWindowInsets(WindowInsets arg0, Rect arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | +| arg1 | android.graphics.Rect | | + +**Returns:** +android.view.WindowInsets +### createAccessibilityNodeInfo() {#createAccessibilityNodeInfo--} +``` +public AccessibilityNodeInfo createAccessibilityNodeInfo() +``` + + + + +**Returns:** +android.view.accessibility.AccessibilityNodeInfo +### createContextMenu(ContextMenu arg0) {#createContextMenu-android.view.ContextMenu-} +``` +public void createContextMenu(ContextMenu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContextMenu | | + +### destroyDrawingCache() {#destroyDrawingCache--} +``` +public void destroyDrawingCache() +``` + + + + +### dispatchApplyWindowInsets(WindowInsets arg0) {#dispatchApplyWindowInsets-android.view.WindowInsets-} +``` +public WindowInsets dispatchApplyWindowInsets(WindowInsets arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | + +**Returns:** +android.view.WindowInsets +### dispatchCapturedPointerEvent(MotionEvent arg0) {#dispatchCapturedPointerEvent-android.view.MotionEvent-} +``` +public boolean dispatchCapturedPointerEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchConfigurationChanged(Configuration arg0) {#dispatchConfigurationChanged-android.content.res.Configuration-} +``` +public void dispatchConfigurationChanged(Configuration arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.Configuration | | + +### dispatchCreateViewTranslationRequest(Map arg0, int[] arg1, TranslationCapability arg2, List arg3) {#dispatchCreateViewTranslationRequest-java.util.Map-android.view.autofill.AutofillId-long----int---android.view.translation.TranslationCapability-java.util.List-android.view.translation.ViewTranslationRequest--} +``` +public void dispatchCreateViewTranslationRequest(Map arg0, int[] arg1, TranslationCapability arg2, List arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Map | | +| arg1 | int[] | | +| arg2 | android.view.translation.TranslationCapability | | +| arg3 | java.util.List | | + +### dispatchDisplayHint(int arg0) {#dispatchDisplayHint-int-} +``` +public void dispatchDisplayHint(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### dispatchDragEvent(DragEvent arg0) {#dispatchDragEvent-android.view.DragEvent-} +``` +public boolean dispatchDragEvent(DragEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.DragEvent | | + +**Returns:** +boolean +### dispatchDrawableHotspotChanged(float arg0, float arg1) {#dispatchDrawableHotspotChanged-float-float-} +``` +public void dispatchDrawableHotspotChanged(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +### dispatchFinishTemporaryDetach() {#dispatchFinishTemporaryDetach--} +``` +public void dispatchFinishTemporaryDetach() +``` + + + + +### dispatchGenericMotionEvent(MotionEvent arg0) {#dispatchGenericMotionEvent-android.view.MotionEvent-} +``` +public boolean dispatchGenericMotionEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchKeyEvent(KeyEvent arg0) {#dispatchKeyEvent-android.view.KeyEvent-} +``` +public boolean dispatchKeyEvent(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### dispatchKeyEventPreIme(KeyEvent arg0) {#dispatchKeyEventPreIme-android.view.KeyEvent-} +``` +public boolean dispatchKeyEventPreIme(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### dispatchKeyShortcutEvent(KeyEvent arg0) {#dispatchKeyShortcutEvent-android.view.KeyEvent-} +``` +public boolean dispatchKeyShortcutEvent(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### dispatchNestedFling(float arg0, float arg1, boolean arg2) {#dispatchNestedFling-float-float-boolean-} +``` +public boolean dispatchNestedFling(float arg0, float arg1, boolean arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | +| arg2 | boolean | | + +**Returns:** +boolean +### dispatchNestedPreFling(float arg0, float arg1) {#dispatchNestedPreFling-float-float-} +``` +public boolean dispatchNestedPreFling(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### dispatchNestedPrePerformAccessibilityAction(int arg0, Bundle arg1) {#dispatchNestedPrePerformAccessibilityAction-int-android.os.Bundle-} +``` +public boolean dispatchNestedPrePerformAccessibilityAction(int arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.os.Bundle | | + +**Returns:** +boolean +### dispatchNestedPreScroll(int arg0, int arg1, int[] arg2, int[] arg3) {#dispatchNestedPreScroll-int-int-int---int---} +``` +public boolean dispatchNestedPreScroll(int arg0, int arg1, int[] arg2, int[] arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int[] | | +| arg3 | int[] | | + +**Returns:** +boolean +### dispatchNestedScroll(int arg0, int arg1, int arg2, int arg3, int[] arg4) {#dispatchNestedScroll-int-int-int-int-int---} +``` +public boolean dispatchNestedScroll(int arg0, int arg1, int arg2, int arg3, int[] arg4) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | +| arg4 | int[] | | + +**Returns:** +boolean +### dispatchPointerCaptureChanged(boolean arg0) {#dispatchPointerCaptureChanged-boolean-} +``` +public void dispatchPointerCaptureChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0) {#dispatchPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-} +``` +public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +**Returns:** +boolean +### dispatchProvideAutofillStructure(ViewStructure arg0, int arg1) {#dispatchProvideAutofillStructure-android.view.ViewStructure-int-} +``` +public void dispatchProvideAutofillStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### dispatchProvideStructure(ViewStructure arg0) {#dispatchProvideStructure-android.view.ViewStructure-} +``` +public void dispatchProvideStructure(ViewStructure arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | + +### dispatchScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) {#dispatchScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--} +``` +public void dispatchScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | android.graphics.Point | | +| arg2 | java.util.function.Consumer | | + +### dispatchStartTemporaryDetach() {#dispatchStartTemporaryDetach--} +``` +public void dispatchStartTemporaryDetach() +``` + + + + +### dispatchSystemUiVisibilityChanged(int arg0) {#dispatchSystemUiVisibilityChanged-int-} +``` +public void dispatchSystemUiVisibilityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### dispatchTouchEvent(MotionEvent arg0) {#dispatchTouchEvent-android.view.MotionEvent-} +``` +public boolean dispatchTouchEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchTrackballEvent(MotionEvent arg0) {#dispatchTrackballEvent-android.view.MotionEvent-} +``` +public boolean dispatchTrackballEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchUnhandledMove(View arg0, int arg1) {#dispatchUnhandledMove-android.view.View-int-} +``` +public boolean dispatchUnhandledMove(View arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | +| arg1 | int | | + +**Returns:** +boolean +### dispatchWindowFocusChanged(boolean arg0) {#dispatchWindowFocusChanged-boolean-} +``` +public void dispatchWindowFocusChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### dispatchWindowInsetsAnimationEnd(WindowInsetsAnimation arg0) {#dispatchWindowInsetsAnimationEnd-android.view.WindowInsetsAnimation-} +``` +public void dispatchWindowInsetsAnimationEnd(WindowInsetsAnimation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation | | + +### dispatchWindowInsetsAnimationPrepare(WindowInsetsAnimation arg0) {#dispatchWindowInsetsAnimationPrepare-android.view.WindowInsetsAnimation-} +``` +public void dispatchWindowInsetsAnimationPrepare(WindowInsetsAnimation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation | | + +### dispatchWindowInsetsAnimationProgress(WindowInsets arg0, List arg1) {#dispatchWindowInsetsAnimationProgress-android.view.WindowInsets-java.util.List-android.view.WindowInsetsAnimation--} +``` +public WindowInsets dispatchWindowInsetsAnimationProgress(WindowInsets arg0, List arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | +| arg1 | java.util.List | | + +**Returns:** +android.view.WindowInsets +### dispatchWindowInsetsAnimationStart(WindowInsetsAnimation arg0, WindowInsetsAnimation.Bounds arg1) {#dispatchWindowInsetsAnimationStart-android.view.WindowInsetsAnimation-android.view.WindowInsetsAnimation.Bounds-} +``` +public WindowInsetsAnimation.Bounds dispatchWindowInsetsAnimationStart(WindowInsetsAnimation arg0, WindowInsetsAnimation.Bounds arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation | | +| arg1 | android.view.WindowInsetsAnimation.Bounds | | + +**Returns:** +android.view.WindowInsetsAnimation.Bounds +### dispatchWindowSystemUiVisiblityChanged(int arg0) {#dispatchWindowSystemUiVisiblityChanged-int-} +``` +public void dispatchWindowSystemUiVisiblityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### dispatchWindowVisibilityChanged(int arg0) {#dispatchWindowVisibilityChanged-int-} +``` +public void dispatchWindowVisibilityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### draw(Canvas arg0) {#draw-android.graphics.Canvas-} +``` +public final void draw(Canvas arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Canvas | | + +### drawableHotspotChanged(float arg0, float arg1) {#drawableHotspotChanged-float-float-} +``` +public void drawableHotspotChanged(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### findFocus() {#findFocus--} +``` +public View findFocus() +``` + + + + +**Returns:** +android.view.View +### findOnBackInvokedDispatcher() {#findOnBackInvokedDispatcher--} +``` +public final OnBackInvokedDispatcher findOnBackInvokedDispatcher() +``` + + + + +**Returns:** +android.window.OnBackInvokedDispatcher +### findViewsWithText(ArrayList arg0, CharSequence arg1, int arg2) {#findViewsWithText-java.util.ArrayList-android.view.View--java.lang.CharSequence-int-} +``` +public void findViewsWithText(ArrayList arg0, CharSequence arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | +| arg1 | java.lang.CharSequence | | +| arg2 | int | | + +### focusSearch(int arg0) {#focusSearch-int-} +``` +public View focusSearch(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +android.view.View +### forceHasOverlappingRendering(boolean arg0) {#forceHasOverlappingRendering-boolean-} +``` +public void forceHasOverlappingRendering(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### forceLayout() {#forceLayout--} +``` +public void forceLayout() +``` + + + + +### gatherTransparentRegion(Region arg0) {#gatherTransparentRegion-android.graphics.Region-} +``` +public boolean gatherTransparentRegion(Region arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Region | | + +**Returns:** +boolean +### generateDisplayHash(String arg0, Rect arg1, Executor arg2, DisplayHashResultCallback arg3) {#generateDisplayHash-java.lang.String-android.graphics.Rect-java.util.concurrent.Executor-android.view.displayhash.DisplayHashResultCallback-} +``` +public void generateDisplayHash(String arg0, Rect arg1, Executor arg2, DisplayHashResultCallback arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | android.graphics.Rect | | +| arg2 | java.util.concurrent.Executor | | +| arg3 | android.view.displayhash.DisplayHashResultCallback | | + +### generateViewId() {#generateViewId--} +``` +public static int generateViewId() +``` + + + + +**Returns:** +int +### getAccessibilityClassName() {#getAccessibilityClassName--} +``` +public CharSequence getAccessibilityClassName() +``` + + + + +**Returns:** +java.lang.CharSequence +### getAccessibilityDelegate() {#getAccessibilityDelegate--} +``` +public View.AccessibilityDelegate getAccessibilityDelegate() +``` + + + + +**Returns:** +android.view.View.AccessibilityDelegate +### getAccessibilityLiveRegion() {#getAccessibilityLiveRegion--} +``` +public int getAccessibilityLiveRegion() +``` + + + + +**Returns:** +int +### getAccessibilityNodeProvider() {#getAccessibilityNodeProvider--} +``` +public AccessibilityNodeProvider getAccessibilityNodeProvider() +``` + + + + +**Returns:** +android.view.accessibility.AccessibilityNodeProvider +### getAccessibilityPaneTitle() {#getAccessibilityPaneTitle--} +``` +public CharSequence getAccessibilityPaneTitle() +``` + + + + +**Returns:** +java.lang.CharSequence +### getAccessibilityTraversalAfter() {#getAccessibilityTraversalAfter--} +``` +public int getAccessibilityTraversalAfter() +``` + + + + +**Returns:** +int +### getAccessibilityTraversalBefore() {#getAccessibilityTraversalBefore--} +``` +public int getAccessibilityTraversalBefore() +``` + + + + +**Returns:** +int +### getAlpha() {#getAlpha--} +``` +public float getAlpha() +``` + + + + +**Returns:** +float +### getAnimation() {#getAnimation--} +``` +public Animation getAnimation() +``` + + + + +**Returns:** +android.view.animation.Animation +### getAnimationMatrix() {#getAnimationMatrix--} +``` +public Matrix getAnimationMatrix() +``` + + + + +**Returns:** +android.graphics.Matrix +### getApplicationWindowToken() {#getApplicationWindowToken--} +``` +public IBinder getApplicationWindowToken() +``` + + + + +**Returns:** +android.os.IBinder +### getAttributeResolutionStack(int arg0) {#getAttributeResolutionStack-int-} +``` +public int[] getAttributeResolutionStack(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +int[] +### getAttributeSourceResourceMap() {#getAttributeSourceResourceMap--} +``` +public Map getAttributeSourceResourceMap() +``` + + + + +**Returns:** +java.util.Map +### getAutofillHints() {#getAutofillHints--} +``` +public String[] getAutofillHints() +``` + + + + +**Returns:** +java.lang.String[] +### getAutofillId() {#getAutofillId--} +``` +public final AutofillId getAutofillId() +``` + + + + +**Returns:** +android.view.autofill.AutofillId +### getAutofillType() {#getAutofillType--} +``` +public int getAutofillType() +``` + + + + +**Returns:** +int +### getAutofillValue() {#getAutofillValue--} +``` +public AutofillValue getAutofillValue() +``` + + + + +**Returns:** +android.view.autofill.AutofillValue +### getBackground() {#getBackground--} +``` +public Drawable getBackground() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getBackgroundTintBlendMode() {#getBackgroundTintBlendMode--} +``` +public BlendMode getBackgroundTintBlendMode() +``` + + + + +**Returns:** +android.graphics.BlendMode +### getBackgroundTintList() {#getBackgroundTintList--} +``` +public ColorStateList getBackgroundTintList() +``` + + + + +**Returns:** +android.content.res.ColorStateList +### getBackgroundTintMode() {#getBackgroundTintMode--} +``` +public PorterDuff.Mode getBackgroundTintMode() +``` + + + + +**Returns:** +android.graphics.PorterDuff.Mode +### getBaseline() {#getBaseline--} +``` +public int getBaseline() +``` + + + + +**Returns:** +int +### getBitmap() {#getBitmap--} +``` +public Bitmap getBitmap() +``` + + + + +**Returns:** +android.graphics.Bitmap +### getBitmap(Bitmap arg0) {#getBitmap-android.graphics.Bitmap-} +``` +public Bitmap getBitmap(Bitmap arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Bitmap | | + +**Returns:** +android.graphics.Bitmap +### getBitmap(int arg0, int arg1) {#getBitmap-int-int-} +``` +public Bitmap getBitmap(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +android.graphics.Bitmap +### getBottom() {#getBottom--} +``` +public final int getBottom() +``` + + + + +**Returns:** +int +### getCameraDistance() {#getCameraDistance--} +``` +public float getCameraDistance() +``` + + + + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getClipBounds() {#getClipBounds--} +``` +public Rect getClipBounds() +``` + + + + +**Returns:** +android.graphics.Rect +### getClipBounds(Rect arg0) {#getClipBounds-android.graphics.Rect-} +``` +public boolean getClipBounds(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### getClipToOutline() {#getClipToOutline--} +``` +public final boolean getClipToOutline() +``` + + + + +**Returns:** +boolean +### getContentCaptureSession() {#getContentCaptureSession--} +``` +public final ContentCaptureSession getContentCaptureSession() +``` + + + + +**Returns:** +android.view.contentcapture.ContentCaptureSession +### getContentDescription() {#getContentDescription--} +``` +public CharSequence getContentDescription() +``` + + + + +**Returns:** +java.lang.CharSequence +### getContext() {#getContext--} +``` +public final Context getContext() +``` + + + + +**Returns:** +android.content.Context +### getDefaultFocusHighlightEnabled() {#getDefaultFocusHighlightEnabled--} +``` +public final boolean getDefaultFocusHighlightEnabled() +``` + + + + +**Returns:** +boolean +### getDefaultSize(int arg0, int arg1) {#getDefaultSize-int-int-} +``` +public static int getDefaultSize(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +int +### getDisplay() {#getDisplay--} +``` +public Display getDisplay() +``` + + + + +**Returns:** +android.view.Display +### getDrawableState() {#getDrawableState--} +``` +public final int[] getDrawableState() +``` + + + + +**Returns:** +int[] +### getDrawingCache() {#getDrawingCache--} +``` +public Bitmap getDrawingCache() +``` + + + + +**Returns:** +android.graphics.Bitmap +### getDrawingCache(boolean arg0) {#getDrawingCache-boolean-} +``` +public Bitmap getDrawingCache(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +**Returns:** +android.graphics.Bitmap +### getDrawingCacheBackgroundColor() {#getDrawingCacheBackgroundColor--} +``` +public int getDrawingCacheBackgroundColor() +``` + + + + +**Returns:** +int +### getDrawingCacheQuality() {#getDrawingCacheQuality--} +``` +public int getDrawingCacheQuality() +``` + + + + +**Returns:** +int +### getDrawingRect(Rect arg0) {#getDrawingRect-android.graphics.Rect-} +``` +public void getDrawingRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getDrawingTime() {#getDrawingTime--} +``` +public long getDrawingTime() +``` + + + + +**Returns:** +long +### getElevation() {#getElevation--} +``` +public float getElevation() +``` + + + + +**Returns:** +float +### getExplicitStyle() {#getExplicitStyle--} +``` +public int getExplicitStyle() +``` + + + + +**Returns:** +int +### getFilterTouchesWhenObscured() {#getFilterTouchesWhenObscured--} +``` +public boolean getFilterTouchesWhenObscured() +``` + + + + +**Returns:** +boolean +### getFitsSystemWindows() {#getFitsSystemWindows--} +``` +public boolean getFitsSystemWindows() +``` + + + + +**Returns:** +boolean +### getFocusable() {#getFocusable--} +``` +public int getFocusable() +``` + + + + +**Returns:** +int +### getFocusables(int arg0) {#getFocusables-int-} +``` +public ArrayList getFocusables(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.util.ArrayList +### getFocusedRect(Rect arg0) {#getFocusedRect-android.graphics.Rect-} +``` +public void getFocusedRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getForeground() {#getForeground--} +``` +public Drawable getForeground() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getForegroundGravity() {#getForegroundGravity--} +``` +public int getForegroundGravity() +``` + + + + +**Returns:** +int +### getForegroundTintBlendMode() {#getForegroundTintBlendMode--} +``` +public BlendMode getForegroundTintBlendMode() +``` + + + + +**Returns:** +android.graphics.BlendMode +### getForegroundTintList() {#getForegroundTintList--} +``` +public ColorStateList getForegroundTintList() +``` + + + + +**Returns:** +android.content.res.ColorStateList +### getForegroundTintMode() {#getForegroundTintMode--} +``` +public PorterDuff.Mode getForegroundTintMode() +``` + + + + +**Returns:** +android.graphics.PorterDuff.Mode +### getGlobalVisibleRect(Rect arg0) {#getGlobalVisibleRect-android.graphics.Rect-} +``` +public final boolean getGlobalVisibleRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### getGlobalVisibleRect(Rect arg0, Point arg1) {#getGlobalVisibleRect-android.graphics.Rect-android.graphics.Point-} +``` +public boolean getGlobalVisibleRect(Rect arg0, Point arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | android.graphics.Point | | + +**Returns:** +boolean +### getHandler() {#getHandler--} +``` +public Handler getHandler() +``` + + + + +**Returns:** +android.os.Handler +### getHasOverlappingRendering() {#getHasOverlappingRendering--} +``` +public final boolean getHasOverlappingRendering() +``` + + + + +**Returns:** +boolean +### getHeight() {#getHeight--} +``` +public final int getHeight() +``` + + + + +**Returns:** +int +### getHitRect(Rect arg0) {#getHitRect-android.graphics.Rect-} +``` +public void getHitRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getHorizontalFadingEdgeLength() {#getHorizontalFadingEdgeLength--} +``` +public int getHorizontalFadingEdgeLength() +``` + + + + +**Returns:** +int +### getHorizontalScrollbarThumbDrawable() {#getHorizontalScrollbarThumbDrawable--} +``` +public Drawable getHorizontalScrollbarThumbDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getHorizontalScrollbarTrackDrawable() {#getHorizontalScrollbarTrackDrawable--} +``` +public Drawable getHorizontalScrollbarTrackDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getId() {#getId--} +``` +public int getId() +``` + + + + +**Returns:** +int +### getImportantForAccessibility() {#getImportantForAccessibility--} +``` +public int getImportantForAccessibility() +``` + + + + +**Returns:** +int +### getImportantForAutofill() {#getImportantForAutofill--} +``` +public int getImportantForAutofill() +``` + + + + +**Returns:** +int +### getImportantForContentCapture() {#getImportantForContentCapture--} +``` +public int getImportantForContentCapture() +``` + + + + +**Returns:** +int +### getKeepScreenOn() {#getKeepScreenOn--} +``` +public boolean getKeepScreenOn() +``` + + + + +**Returns:** +boolean +### getKeyDispatcherState() {#getKeyDispatcherState--} +``` +public KeyEvent.DispatcherState getKeyDispatcherState() +``` + + + + +**Returns:** +android.view.KeyEvent.DispatcherState +### getLabelFor() {#getLabelFor--} +``` +public int getLabelFor() +``` + + + + +**Returns:** +int +### getLayerType() {#getLayerType--} +``` +public int getLayerType() +``` + + + + +**Returns:** +int +### getLayoutDirection() {#getLayoutDirection--} +``` +public int getLayoutDirection() +``` + + + + +**Returns:** +int +### getLayoutParams() {#getLayoutParams--} +``` +public ViewGroup.LayoutParams getLayoutParams() +``` + + + + +**Returns:** +android.view.ViewGroup.LayoutParams +### getLeft() {#getLeft--} +``` +public final int getLeft() +``` + + + + +**Returns:** +int +### getLocalVisibleRect(Rect arg0) {#getLocalVisibleRect-android.graphics.Rect-} +``` +public final boolean getLocalVisibleRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### getLocationInSurface(int[] arg0) {#getLocationInSurface-int---} +``` +public void getLocationInSurface(int[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | + +### getLocationInWindow(int[] arg0) {#getLocationInWindow-int---} +``` +public void getLocationInWindow(int[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | + +### getLocationOnScreen(int[] arg0) {#getLocationOnScreen-int---} +``` +public void getLocationOnScreen(int[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | + +### getMatrix() {#getMatrix--} +``` +public Matrix getMatrix() +``` + + + + +**Returns:** +android.graphics.Matrix +### getMeasuredHeight() {#getMeasuredHeight--} +``` +public final int getMeasuredHeight() +``` + + + + +**Returns:** +int +### getMeasuredHeightAndState() {#getMeasuredHeightAndState--} +``` +public final int getMeasuredHeightAndState() +``` + + + + +**Returns:** +int +### getMeasuredState() {#getMeasuredState--} +``` +public final int getMeasuredState() +``` + + + + +**Returns:** +int +### getMeasuredWidth() {#getMeasuredWidth--} +``` +public final int getMeasuredWidth() +``` + + + + +**Returns:** +int +### getMeasuredWidthAndState() {#getMeasuredWidthAndState--} +``` +public final int getMeasuredWidthAndState() +``` + + + + +**Returns:** +int +### getMinimumHeight() {#getMinimumHeight--} +``` +public int getMinimumHeight() +``` + + + + +**Returns:** +int +### getMinimumWidth() {#getMinimumWidth--} +``` +public int getMinimumWidth() +``` + + + + +**Returns:** +int +### getNextClusterForwardId() {#getNextClusterForwardId--} +``` +public int getNextClusterForwardId() +``` + + + + +**Returns:** +int +### getNextFocusDownId() {#getNextFocusDownId--} +``` +public int getNextFocusDownId() +``` + + + + +**Returns:** +int +### getNextFocusForwardId() {#getNextFocusForwardId--} +``` +public int getNextFocusForwardId() +``` + + + + +**Returns:** +int +### getNextFocusLeftId() {#getNextFocusLeftId--} +``` +public int getNextFocusLeftId() +``` + + + + +**Returns:** +int +### getNextFocusRightId() {#getNextFocusRightId--} +``` +public int getNextFocusRightId() +``` + + + + +**Returns:** +int +### getNextFocusUpId() {#getNextFocusUpId--} +``` +public int getNextFocusUpId() +``` + + + + +**Returns:** +int +### getOnFocusChangeListener() {#getOnFocusChangeListener--} +``` +public View.OnFocusChangeListener getOnFocusChangeListener() +``` + + + + +**Returns:** +android.view.View.OnFocusChangeListener +### getOutlineAmbientShadowColor() {#getOutlineAmbientShadowColor--} +``` +public int getOutlineAmbientShadowColor() +``` + + + + +**Returns:** +int +### getOutlineProvider() {#getOutlineProvider--} +``` +public ViewOutlineProvider getOutlineProvider() +``` + + + + +**Returns:** +android.view.ViewOutlineProvider +### getOutlineSpotShadowColor() {#getOutlineSpotShadowColor--} +``` +public int getOutlineSpotShadowColor() +``` + + + + +**Returns:** +int +### getOverScrollMode() {#getOverScrollMode--} +``` +public int getOverScrollMode() +``` + + + + +**Returns:** +int +### getOverlay() {#getOverlay--} +``` +public ViewOverlay getOverlay() +``` + + + + +**Returns:** +android.view.ViewOverlay +### getPaddingBottom() {#getPaddingBottom--} +``` +public int getPaddingBottom() +``` + + + + +**Returns:** +int +### getPaddingEnd() {#getPaddingEnd--} +``` +public int getPaddingEnd() +``` + + + + +**Returns:** +int +### getPaddingLeft() {#getPaddingLeft--} +``` +public int getPaddingLeft() +``` + + + + +**Returns:** +int +### getPaddingRight() {#getPaddingRight--} +``` +public int getPaddingRight() +``` + + + + +**Returns:** +int +### getPaddingStart() {#getPaddingStart--} +``` +public int getPaddingStart() +``` + + + + +**Returns:** +int +### getPaddingTop() {#getPaddingTop--} +``` +public int getPaddingTop() +``` + + + + +**Returns:** +int +### getParent() {#getParent--} +``` +public final ViewParent getParent() +``` + + + + +**Returns:** +android.view.ViewParent +### getParentForAccessibility() {#getParentForAccessibility--} +``` +public ViewParent getParentForAccessibility() +``` + + + + +**Returns:** +android.view.ViewParent +### getPivotX() {#getPivotX--} +``` +public float getPivotX() +``` + + + + +**Returns:** +float +### getPivotY() {#getPivotY--} +``` +public float getPivotY() +``` + + + + +**Returns:** +float +### getPointerIcon() {#getPointerIcon--} +``` +public PointerIcon getPointerIcon() +``` + + + + +**Returns:** +android.view.PointerIcon +### getPreferKeepClearRects() {#getPreferKeepClearRects--} +``` +public final List getPreferKeepClearRects() +``` + + + + +**Returns:** +java.util.List +### getReceiveContentMimeTypes() {#getReceiveContentMimeTypes--} +``` +public String[] getReceiveContentMimeTypes() +``` + + + + +**Returns:** +java.lang.String[] +### getResources() {#getResources--} +``` +public Resources getResources() +``` + + + + +**Returns:** +android.content.res.Resources +### getRevealOnFocusHint() {#getRevealOnFocusHint--} +``` +public final boolean getRevealOnFocusHint() +``` + + + + +**Returns:** +boolean +### getRight() {#getRight--} +``` +public final int getRight() +``` + + + + +**Returns:** +int +### getRootSurfaceControl() {#getRootSurfaceControl--} +``` +public AttachedSurfaceControl getRootSurfaceControl() +``` + + + + +**Returns:** +android.view.AttachedSurfaceControl +### getRootView() {#getRootView--} +``` +public View getRootView() +``` + + + + +**Returns:** +android.view.View +### getRootWindowInsets() {#getRootWindowInsets--} +``` +public WindowInsets getRootWindowInsets() +``` + + + + +**Returns:** +android.view.WindowInsets +### getRotation() {#getRotation--} +``` +public float getRotation() +``` + + + + +**Returns:** +float +### getRotationX() {#getRotationX--} +``` +public float getRotationX() +``` + + + + +**Returns:** +float +### getRotationY() {#getRotationY--} +``` +public float getRotationY() +``` + + + + +**Returns:** +float +### getScaleX() {#getScaleX--} +``` +public float getScaleX() +``` + + + + +**Returns:** +float +### getScaleY() {#getScaleY--} +``` +public float getScaleY() +``` + + + + +**Returns:** +float +### getScrollBarDefaultDelayBeforeFade() {#getScrollBarDefaultDelayBeforeFade--} +``` +public int getScrollBarDefaultDelayBeforeFade() +``` + + + + +**Returns:** +int +### getScrollBarFadeDuration() {#getScrollBarFadeDuration--} +``` +public int getScrollBarFadeDuration() +``` + + + + +**Returns:** +int +### getScrollBarSize() {#getScrollBarSize--} +``` +public int getScrollBarSize() +``` + + + + +**Returns:** +int +### getScrollBarStyle() {#getScrollBarStyle--} +``` +public int getScrollBarStyle() +``` + + + + +**Returns:** +int +### getScrollCaptureHint() {#getScrollCaptureHint--} +``` +public int getScrollCaptureHint() +``` + + + + +**Returns:** +int +### getScrollIndicators() {#getScrollIndicators--} +``` +public int getScrollIndicators() +``` + + + + +**Returns:** +int +### getScrollX() {#getScrollX--} +``` +public final int getScrollX() +``` + + + + +**Returns:** +int +### getScrollY() {#getScrollY--} +``` +public final int getScrollY() +``` + + + + +**Returns:** +int +### getSolidColor() {#getSolidColor--} +``` +public int getSolidColor() +``` + + + + +**Returns:** +int +### getSourceLayoutResId() {#getSourceLayoutResId--} +``` +public int getSourceLayoutResId() +``` + + + + +**Returns:** +int +### getStateDescription() {#getStateDescription--} +``` +public final CharSequence getStateDescription() +``` + + + + +**Returns:** +java.lang.CharSequence +### getStateListAnimator() {#getStateListAnimator--} +``` +public StateListAnimator getStateListAnimator() +``` + + + + +**Returns:** +android.animation.StateListAnimator +### getSurfaceTexture() {#getSurfaceTexture--} +``` +public SurfaceTexture getSurfaceTexture() +``` + + + + +**Returns:** +android.graphics.SurfaceTexture +### getSurfaceTextureListener() {#getSurfaceTextureListener--} +``` +public TextureView.SurfaceTextureListener getSurfaceTextureListener() +``` + + + + +**Returns:** +android.view.TextureView.SurfaceTextureListener +### getSystemGestureExclusionRects() {#getSystemGestureExclusionRects--} +``` +public List getSystemGestureExclusionRects() +``` + + + + +**Returns:** +java.util.List +### getSystemUiVisibility() {#getSystemUiVisibility--} +``` +public int getSystemUiVisibility() +``` + + + + +**Returns:** +int +### getTag() {#getTag--} +``` +public Object getTag() +``` + + + + +**Returns:** +java.lang.Object +### getTag(int arg0) {#getTag-int-} +``` +public Object getTag(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.Object +### getTextAlignment() {#getTextAlignment--} +``` +public int getTextAlignment() +``` + + + + +**Returns:** +int +### getTextDirection() {#getTextDirection--} +``` +public int getTextDirection() +``` + + + + +**Returns:** +int +### getTooltipText() {#getTooltipText--} +``` +public CharSequence getTooltipText() +``` + + + + +**Returns:** +java.lang.CharSequence +### getTop() {#getTop--} +``` +public final int getTop() +``` + + + + +**Returns:** +int +### getTouchDelegate() {#getTouchDelegate--} +``` +public TouchDelegate getTouchDelegate() +``` + + + + +**Returns:** +android.view.TouchDelegate +### getTouchables() {#getTouchables--} +``` +public ArrayList getTouchables() +``` + + + + +**Returns:** +java.util.ArrayList +### getTransform(Matrix arg0) {#getTransform-android.graphics.Matrix-} +``` +public Matrix getTransform(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +**Returns:** +android.graphics.Matrix +### getTransitionAlpha() {#getTransitionAlpha--} +``` +public float getTransitionAlpha() +``` + + + + +**Returns:** +float +### getTransitionName() {#getTransitionName--} +``` +public String getTransitionName() +``` + + + + +**Returns:** +java.lang.String +### getTranslationX() {#getTranslationX--} +``` +public float getTranslationX() +``` + + + + +**Returns:** +float +### getTranslationY() {#getTranslationY--} +``` +public float getTranslationY() +``` + + + + +**Returns:** +float +### getTranslationZ() {#getTranslationZ--} +``` +public float getTranslationZ() +``` + + + + +**Returns:** +float +### getUniqueDrawingId() {#getUniqueDrawingId--} +``` +public long getUniqueDrawingId() +``` + + + + +**Returns:** +long +### getVerticalFadingEdgeLength() {#getVerticalFadingEdgeLength--} +``` +public int getVerticalFadingEdgeLength() +``` + + + + +**Returns:** +int +### getVerticalScrollbarPosition() {#getVerticalScrollbarPosition--} +``` +public int getVerticalScrollbarPosition() +``` + + + + +**Returns:** +int +### getVerticalScrollbarThumbDrawable() {#getVerticalScrollbarThumbDrawable--} +``` +public Drawable getVerticalScrollbarThumbDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getVerticalScrollbarTrackDrawable() {#getVerticalScrollbarTrackDrawable--} +``` +public Drawable getVerticalScrollbarTrackDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getVerticalScrollbarWidth() {#getVerticalScrollbarWidth--} +``` +public int getVerticalScrollbarWidth() +``` + + + + +**Returns:** +int +### getViewTranslationResponse() {#getViewTranslationResponse--} +``` +public ViewTranslationResponse getViewTranslationResponse() +``` + + + + +**Returns:** +android.view.translation.ViewTranslationResponse +### getViewTreeObserver() {#getViewTreeObserver--} +``` +public ViewTreeObserver getViewTreeObserver() +``` + + + + +**Returns:** +android.view.ViewTreeObserver +### getVisibility() {#getVisibility--} +``` +public int getVisibility() +``` + + + + +**Returns:** +int +### getWidth() {#getWidth--} +``` +public final int getWidth() +``` + + + + +**Returns:** +int +### getWindowId() {#getWindowId--} +``` +public WindowId getWindowId() +``` + + + + +**Returns:** +android.view.WindowId +### getWindowInsetsController() {#getWindowInsetsController--} +``` +public WindowInsetsController getWindowInsetsController() +``` + + + + +**Returns:** +android.view.WindowInsetsController +### getWindowSystemUiVisibility() {#getWindowSystemUiVisibility--} +``` +public int getWindowSystemUiVisibility() +``` + + + + +**Returns:** +int +### getWindowToken() {#getWindowToken--} +``` +public IBinder getWindowToken() +``` + + + + +**Returns:** +android.os.IBinder +### getWindowVisibility() {#getWindowVisibility--} +``` +public int getWindowVisibility() +``` + + + + +**Returns:** +int +### getWindowVisibleDisplayFrame(Rect arg0) {#getWindowVisibleDisplayFrame-android.graphics.Rect-} +``` +public void getWindowVisibleDisplayFrame(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getX() {#getX--} +``` +public float getX() +``` + + + + +**Returns:** +float +### getY() {#getY--} +``` +public float getY() +``` + + + + +**Returns:** +float +### getZ() {#getZ--} +``` +public float getZ() +``` + + + + +**Returns:** +float +### hasExplicitFocusable() {#hasExplicitFocusable--} +``` +public boolean hasExplicitFocusable() +``` + + + + +**Returns:** +boolean +### hasFocus() {#hasFocus--} +``` +public boolean hasFocus() +``` + + + + +**Returns:** +boolean +### hasFocusable() {#hasFocusable--} +``` +public boolean hasFocusable() +``` + + + + +**Returns:** +boolean +### hasNestedScrollingParent() {#hasNestedScrollingParent--} +``` +public boolean hasNestedScrollingParent() +``` + + + + +**Returns:** +boolean +### hasOnClickListeners() {#hasOnClickListeners--} +``` +public boolean hasOnClickListeners() +``` + + + + +**Returns:** +boolean +### hasOnLongClickListeners() {#hasOnLongClickListeners--} +``` +public boolean hasOnLongClickListeners() +``` + + + + +**Returns:** +boolean +### hasOverlappingRendering() {#hasOverlappingRendering--} +``` +public boolean hasOverlappingRendering() +``` + + + + +**Returns:** +boolean +### hasPointerCapture() {#hasPointerCapture--} +``` +public boolean hasPointerCapture() +``` + + + + +**Returns:** +boolean +### hasTransientState() {#hasTransientState--} +``` +public boolean hasTransientState() +``` + + + + +**Returns:** +boolean +### hasWindowFocus() {#hasWindowFocus--} +``` +public boolean hasWindowFocus() +``` + + + + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### inflate(Context arg0, int arg1, ViewGroup arg2) {#inflate-android.content.Context-int-android.view.ViewGroup-} +``` +public static View inflate(Context arg0, int arg1, ViewGroup arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | int | | +| arg2 | android.view.ViewGroup | | + +**Returns:** +android.view.View +### invalidate() {#invalidate--} +``` +public void invalidate() +``` + + + + +### invalidate(Rect arg0) {#invalidate-android.graphics.Rect-} +``` +public void invalidate(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### invalidate(int arg0, int arg1, int arg2, int arg3) {#invalidate-int-int-int-int-} +``` +public void invalidate(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### invalidateDrawable(Drawable arg0) {#invalidateDrawable-android.graphics.drawable.Drawable-} +``` +public void invalidateDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### invalidateOutline() {#invalidateOutline--} +``` +public void invalidateOutline() +``` + + + + +### isAccessibilityFocused() {#isAccessibilityFocused--} +``` +public boolean isAccessibilityFocused() +``` + + + + +**Returns:** +boolean +### isAccessibilityHeading() {#isAccessibilityHeading--} +``` +public boolean isAccessibilityHeading() +``` + + + + +**Returns:** +boolean +### isActivated() {#isActivated--} +``` +public boolean isActivated() +``` + + + + +**Returns:** +boolean +### isAttachedToWindow() {#isAttachedToWindow--} +``` +public boolean isAttachedToWindow() +``` + + + + +**Returns:** +boolean +### isAutoHandwritingEnabled() {#isAutoHandwritingEnabled--} +``` +public boolean isAutoHandwritingEnabled() +``` + + + + +**Returns:** +boolean +### isAvailable() {#isAvailable--} +``` +public boolean isAvailable() +``` + + + + +**Returns:** +boolean +### isClickable() {#isClickable--} +``` +public boolean isClickable() +``` + + + + +**Returns:** +boolean +### isContextClickable() {#isContextClickable--} +``` +public boolean isContextClickable() +``` + + + + +**Returns:** +boolean +### isDirty() {#isDirty--} +``` +public boolean isDirty() +``` + + + + +**Returns:** +boolean +### isDrawingCacheEnabled() {#isDrawingCacheEnabled--} +``` +public boolean isDrawingCacheEnabled() +``` + + + + +**Returns:** +boolean +### isDuplicateParentStateEnabled() {#isDuplicateParentStateEnabled--} +``` +public boolean isDuplicateParentStateEnabled() +``` + + + + +**Returns:** +boolean +### isEnabled() {#isEnabled--} +``` +public boolean isEnabled() +``` + + + + +**Returns:** +boolean +### isFocusable() {#isFocusable--} +``` +public final boolean isFocusable() +``` + + + + +**Returns:** +boolean +### isFocusableInTouchMode() {#isFocusableInTouchMode--} +``` +public final boolean isFocusableInTouchMode() +``` + + + + +**Returns:** +boolean +### isFocused() {#isFocused--} +``` +public boolean isFocused() +``` + + + + +**Returns:** +boolean +### isFocusedByDefault() {#isFocusedByDefault--} +``` +public final boolean isFocusedByDefault() +``` + + + + +**Returns:** +boolean +### isForceDarkAllowed() {#isForceDarkAllowed--} +``` +public boolean isForceDarkAllowed() +``` + + + + +**Returns:** +boolean +### isHapticFeedbackEnabled() {#isHapticFeedbackEnabled--} +``` +public boolean isHapticFeedbackEnabled() +``` + + + + +**Returns:** +boolean +### isHardwareAccelerated() {#isHardwareAccelerated--} +``` +public boolean isHardwareAccelerated() +``` + + + + +**Returns:** +boolean +### isHorizontalFadingEdgeEnabled() {#isHorizontalFadingEdgeEnabled--} +``` +public boolean isHorizontalFadingEdgeEnabled() +``` + + + + +**Returns:** +boolean +### isHorizontalScrollBarEnabled() {#isHorizontalScrollBarEnabled--} +``` +public boolean isHorizontalScrollBarEnabled() +``` + + + + +**Returns:** +boolean +### isHovered() {#isHovered--} +``` +public boolean isHovered() +``` + + + + +**Returns:** +boolean +### isImportantForAccessibility() {#isImportantForAccessibility--} +``` +public boolean isImportantForAccessibility() +``` + + + + +**Returns:** +boolean +### isImportantForAutofill() {#isImportantForAutofill--} +``` +public final boolean isImportantForAutofill() +``` + + + + +**Returns:** +boolean +### isImportantForContentCapture() {#isImportantForContentCapture--} +``` +public final boolean isImportantForContentCapture() +``` + + + + +**Returns:** +boolean +### isInEditMode() {#isInEditMode--} +``` +public boolean isInEditMode() +``` + + + + +**Returns:** +boolean +### isInLayout() {#isInLayout--} +``` +public boolean isInLayout() +``` + + + + +**Returns:** +boolean +### isInTouchMode() {#isInTouchMode--} +``` +public boolean isInTouchMode() +``` + + + + +**Returns:** +boolean +### isKeyboardNavigationCluster() {#isKeyboardNavigationCluster--} +``` +public final boolean isKeyboardNavigationCluster() +``` + + + + +**Returns:** +boolean +### isLaidOut() {#isLaidOut--} +``` +public boolean isLaidOut() +``` + + + + +**Returns:** +boolean +### isLayoutDirectionResolved() {#isLayoutDirectionResolved--} +``` +public boolean isLayoutDirectionResolved() +``` + + + + +**Returns:** +boolean +### isLayoutRequested() {#isLayoutRequested--} +``` +public boolean isLayoutRequested() +``` + + + + +**Returns:** +boolean +### isLongClickable() {#isLongClickable--} +``` +public boolean isLongClickable() +``` + + + + +**Returns:** +boolean +### isNestedScrollingEnabled() {#isNestedScrollingEnabled--} +``` +public boolean isNestedScrollingEnabled() +``` + + + + +**Returns:** +boolean +### isOpaque() {#isOpaque--} +``` +public boolean isOpaque() +``` + + + + +**Returns:** +boolean +### isPaddingRelative() {#isPaddingRelative--} +``` +public boolean isPaddingRelative() +``` + + + + +**Returns:** +boolean +### isPivotSet() {#isPivotSet--} +``` +public boolean isPivotSet() +``` + + + + +**Returns:** +boolean +### isPreferKeepClear() {#isPreferKeepClear--} +``` +public final boolean isPreferKeepClear() +``` + + + + +**Returns:** +boolean +### isPressed() {#isPressed--} +``` +public boolean isPressed() +``` + + + + +**Returns:** +boolean +### isSaveEnabled() {#isSaveEnabled--} +``` +public boolean isSaveEnabled() +``` + + + + +**Returns:** +boolean +### isSaveFromParentEnabled() {#isSaveFromParentEnabled--} +``` +public boolean isSaveFromParentEnabled() +``` + + + + +**Returns:** +boolean +### isScreenReaderFocusable() {#isScreenReaderFocusable--} +``` +public boolean isScreenReaderFocusable() +``` + + + + +**Returns:** +boolean +### isScrollContainer() {#isScrollContainer--} +``` +public boolean isScrollContainer() +``` + + + + +**Returns:** +boolean +### isScrollbarFadingEnabled() {#isScrollbarFadingEnabled--} +``` +public boolean isScrollbarFadingEnabled() +``` + + + + +**Returns:** +boolean +### isSelected() {#isSelected--} +``` +public boolean isSelected() +``` + + + + +**Returns:** +boolean +### isShowingLayoutBounds() {#isShowingLayoutBounds--} +``` +public final boolean isShowingLayoutBounds() +``` + + + + +**Returns:** +boolean +### isShown() {#isShown--} +``` +public boolean isShown() +``` + + + + +**Returns:** +boolean +### isSoundEffectsEnabled() {#isSoundEffectsEnabled--} +``` +public boolean isSoundEffectsEnabled() +``` + + + + +**Returns:** +boolean +### isTemporarilyDetached() {#isTemporarilyDetached--} +``` +public final boolean isTemporarilyDetached() +``` + + + + +**Returns:** +boolean +### isTextAlignmentResolved() {#isTextAlignmentResolved--} +``` +public boolean isTextAlignmentResolved() +``` + + + + +**Returns:** +boolean +### isTextDirectionResolved() {#isTextDirectionResolved--} +``` +public boolean isTextDirectionResolved() +``` + + + + +**Returns:** +boolean +### isVerticalFadingEdgeEnabled() {#isVerticalFadingEdgeEnabled--} +``` +public boolean isVerticalFadingEdgeEnabled() +``` + + + + +**Returns:** +boolean +### isVerticalScrollBarEnabled() {#isVerticalScrollBarEnabled--} +``` +public boolean isVerticalScrollBarEnabled() +``` + + + + +**Returns:** +boolean +### isVisibleToUserForAutofill(int arg0) {#isVisibleToUserForAutofill-int-} +``` +public boolean isVisibleToUserForAutofill(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### jumpDrawablesToCurrentState() {#jumpDrawablesToCurrentState--} +``` +public void jumpDrawablesToCurrentState() +``` + + + + +### keyboardNavigationClusterSearch(View arg0, int arg1) {#keyboardNavigationClusterSearch-android.view.View-int-} +``` +public View keyboardNavigationClusterSearch(View arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | +| arg1 | int | | + +**Returns:** +android.view.View +### layout(int arg0, int arg1, int arg2, int arg3) {#layout-int-int-int-int-} +``` +public void layout(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### lockCanvas() {#lockCanvas--} +``` +public Canvas lockCanvas() +``` + + + + +**Returns:** +android.graphics.Canvas +### lockCanvas(Rect arg0) {#lockCanvas-android.graphics.Rect-} +``` +public Canvas lockCanvas(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +android.graphics.Canvas +### measure(int arg0, int arg1) {#measure-int-int-} +``` +public final void measure(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### offsetLeftAndRight(int arg0) {#offsetLeftAndRight-int-} +``` +public void offsetLeftAndRight(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### offsetTopAndBottom(int arg0) {#offsetTopAndBottom-int-} +``` +public void offsetTopAndBottom(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### onApplyWindowInsets(WindowInsets arg0) {#onApplyWindowInsets-android.view.WindowInsets-} +``` +public WindowInsets onApplyWindowInsets(WindowInsets arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | + +**Returns:** +android.view.WindowInsets +### onCancelPendingInputEvents() {#onCancelPendingInputEvents--} +``` +public void onCancelPendingInputEvents() +``` + + + + +### onCapturedPointerEvent(MotionEvent arg0) {#onCapturedPointerEvent-android.view.MotionEvent-} +``` +public boolean onCapturedPointerEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onCheckIsTextEditor() {#onCheckIsTextEditor--} +``` +public boolean onCheckIsTextEditor() +``` + + + + +**Returns:** +boolean +### onCreateInputConnection(EditorInfo arg0) {#onCreateInputConnection-android.view.inputmethod.EditorInfo-} +``` +public InputConnection onCreateInputConnection(EditorInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.inputmethod.EditorInfo | | + +**Returns:** +android.view.inputmethod.InputConnection +### onCreateViewTranslationRequest(int[] arg0, Consumer arg1) {#onCreateViewTranslationRequest-int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--} +``` +public void onCreateViewTranslationRequest(int[] arg0, Consumer arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | +| arg1 | java.util.function.Consumer | | + +### onCreateVirtualViewTranslationRequests(long[] arg0, int[] arg1, Consumer arg2) {#onCreateVirtualViewTranslationRequests-long---int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--} +``` +public void onCreateVirtualViewTranslationRequests(long[] arg0, int[] arg1, Consumer arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long[] | | +| arg1 | int[] | | +| arg2 | java.util.function.Consumer | | + +### onDetachedFromWindow() {#onDetachedFromWindow--} +``` +public void onDetachedFromWindow() +``` + + + + +### onDragEvent(DragEvent arg0) {#onDragEvent-android.view.DragEvent-} +``` +public boolean onDragEvent(DragEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.DragEvent | | + +**Returns:** +boolean +### onDrawForeground(Canvas arg0) {#onDrawForeground-android.graphics.Canvas-} +``` +public void onDrawForeground(Canvas arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Canvas | | + +### onFilterTouchEventForSecurity(MotionEvent arg0) {#onFilterTouchEventForSecurity-android.view.MotionEvent-} +``` +public boolean onFilterTouchEventForSecurity(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onFinishTemporaryDetach() {#onFinishTemporaryDetach--} +``` +public void onFinishTemporaryDetach() +``` + + + + +### onGenericMotionEvent(MotionEvent arg0) {#onGenericMotionEvent-android.view.MotionEvent-} +``` +public boolean onGenericMotionEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onHoverChanged(boolean arg0) {#onHoverChanged-boolean-} +``` +public void onHoverChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onHoverEvent(MotionEvent arg0) {#onHoverEvent-android.view.MotionEvent-} +``` +public boolean onHoverEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onInitializeAccessibilityEvent(AccessibilityEvent arg0) {#onInitializeAccessibilityEvent-android.view.accessibility.AccessibilityEvent-} +``` +public void onInitializeAccessibilityEvent(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +### onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo arg0) {#onInitializeAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-} +``` +public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityNodeInfo | | + +### onKeyDown(int arg0, KeyEvent arg1) {#onKeyDown-int-android.view.KeyEvent-} +``` +public boolean onKeyDown(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyLongPress(int arg0, KeyEvent arg1) {#onKeyLongPress-int-android.view.KeyEvent-} +``` +public boolean onKeyLongPress(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyMultiple(int arg0, int arg1, KeyEvent arg2) {#onKeyMultiple-int-int-android.view.KeyEvent-} +``` +public boolean onKeyMultiple(int arg0, int arg1, KeyEvent arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyPreIme(int arg0, KeyEvent arg1) {#onKeyPreIme-int-android.view.KeyEvent-} +``` +public boolean onKeyPreIme(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyShortcut(int arg0, KeyEvent arg1) {#onKeyShortcut-int-android.view.KeyEvent-} +``` +public boolean onKeyShortcut(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyUp(int arg0, KeyEvent arg1) {#onKeyUp-int-android.view.KeyEvent-} +``` +public boolean onKeyUp(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onPointerCaptureChange(boolean arg0) {#onPointerCaptureChange-boolean-} +``` +public void onPointerCaptureChange(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onPopulateAccessibilityEvent(AccessibilityEvent arg0) {#onPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-} +``` +public void onPopulateAccessibilityEvent(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +### onProvideAutofillStructure(ViewStructure arg0, int arg1) {#onProvideAutofillStructure-android.view.ViewStructure-int-} +``` +public void onProvideAutofillStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### onProvideAutofillVirtualStructure(ViewStructure arg0, int arg1) {#onProvideAutofillVirtualStructure-android.view.ViewStructure-int-} +``` +public void onProvideAutofillVirtualStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### onProvideContentCaptureStructure(ViewStructure arg0, int arg1) {#onProvideContentCaptureStructure-android.view.ViewStructure-int-} +``` +public void onProvideContentCaptureStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### onProvideStructure(ViewStructure arg0) {#onProvideStructure-android.view.ViewStructure-} +``` +public void onProvideStructure(ViewStructure arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | + +### onProvideVirtualStructure(ViewStructure arg0) {#onProvideVirtualStructure-android.view.ViewStructure-} +``` +public void onProvideVirtualStructure(ViewStructure arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | + +### onReceiveContent(ContentInfo arg0) {#onReceiveContent-android.view.ContentInfo-} +``` +public ContentInfo onReceiveContent(ContentInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContentInfo | | + +**Returns:** +android.view.ContentInfo +### onResolvePointerIcon(MotionEvent arg0, int arg1) {#onResolvePointerIcon-android.view.MotionEvent-int-} +``` +public PointerIcon onResolvePointerIcon(MotionEvent arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | +| arg1 | int | | + +**Returns:** +android.view.PointerIcon +### onRtlPropertiesChanged(int arg0) {#onRtlPropertiesChanged-int-} +``` +public void onRtlPropertiesChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### onScreenStateChanged(int arg0) {#onScreenStateChanged-int-} +``` +public void onScreenStateChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### onScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) {#onScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--} +``` +public void onScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | android.graphics.Point | | +| arg2 | java.util.function.Consumer | | + +### onStartTemporaryDetach() {#onStartTemporaryDetach--} +``` +public void onStartTemporaryDetach() +``` + + + + +### onTouchEvent(MotionEvent arg0) {#onTouchEvent-android.view.MotionEvent-} +``` +public boolean onTouchEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onTrackballEvent(MotionEvent arg0) {#onTrackballEvent-android.view.MotionEvent-} +``` +public boolean onTrackballEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onViewTranslationResponse(ViewTranslationResponse arg0) {#onViewTranslationResponse-android.view.translation.ViewTranslationResponse-} +``` +public void onViewTranslationResponse(ViewTranslationResponse arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.translation.ViewTranslationResponse | | + +### onVirtualViewTranslationResponses(LongSparseArray arg0) {#onVirtualViewTranslationResponses-android.util.LongSparseArray-android.view.translation.ViewTranslationResponse--} +``` +public void onVirtualViewTranslationResponses(LongSparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.LongSparseArray | | + +### onVisibilityAggregated(boolean arg0) {#onVisibilityAggregated-boolean-} +``` +public void onVisibilityAggregated(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onWindowFocusChanged(boolean arg0) {#onWindowFocusChanged-boolean-} +``` +public void onWindowFocusChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onWindowSystemUiVisibilityChanged(int arg0) {#onWindowSystemUiVisibilityChanged-int-} +``` +public void onWindowSystemUiVisibilityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### performAccessibilityAction(int arg0, Bundle arg1) {#performAccessibilityAction-int-android.os.Bundle-} +``` +public boolean performAccessibilityAction(int arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.os.Bundle | | + +**Returns:** +boolean +### performClick() {#performClick--} +``` +public boolean performClick() +``` + + + + +**Returns:** +boolean +### performContextClick() {#performContextClick--} +``` +public boolean performContextClick() +``` + + + + +**Returns:** +boolean +### performContextClick(float arg0, float arg1) {#performContextClick-float-float-} +``` +public boolean performContextClick(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### performHapticFeedback(int arg0) {#performHapticFeedback-int-} +``` +public boolean performHapticFeedback(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### performHapticFeedback(int arg0, int arg1) {#performHapticFeedback-int-int-} +``` +public boolean performHapticFeedback(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +boolean +### performLongClick() {#performLongClick--} +``` +public boolean performLongClick() +``` + + + + +**Returns:** +boolean +### performLongClick(float arg0, float arg1) {#performLongClick-float-float-} +``` +public boolean performLongClick(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### performReceiveContent(ContentInfo arg0) {#performReceiveContent-android.view.ContentInfo-} +``` +public ContentInfo performReceiveContent(ContentInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContentInfo | | + +**Returns:** +android.view.ContentInfo +### playSoundEffect(int arg0) {#playSoundEffect-int-} +``` +public void playSoundEffect(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### post(Runnable arg0) {#post-java.lang.Runnable-} +``` +public boolean post(Runnable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | + +**Returns:** +boolean +### postDelayed(Runnable arg0, long arg1) {#postDelayed-java.lang.Runnable-long-} +``` +public boolean postDelayed(Runnable arg0, long arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | +| arg1 | long | | + +**Returns:** +boolean +### postInvalidate() {#postInvalidate--} +``` +public void postInvalidate() +``` + + + + +### postInvalidate(int arg0, int arg1, int arg2, int arg3) {#postInvalidate-int-int-int-int-} +``` +public void postInvalidate(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### postInvalidateDelayed(long arg0) {#postInvalidateDelayed-long-} +``` +public void postInvalidateDelayed(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### postInvalidateDelayed(long arg0, int arg1, int arg2, int arg3, int arg4) {#postInvalidateDelayed-long-int-int-int-int-} +``` +public void postInvalidateDelayed(long arg0, int arg1, int arg2, int arg3, int arg4) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | +| arg4 | int | | + +### postInvalidateOnAnimation() {#postInvalidateOnAnimation--} +``` +public void postInvalidateOnAnimation() +``` + + + + +### postInvalidateOnAnimation(int arg0, int arg1, int arg2, int arg3) {#postInvalidateOnAnimation-int-int-int-int-} +``` +public void postInvalidateOnAnimation(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### postOnAnimation(Runnable arg0) {#postOnAnimation-java.lang.Runnable-} +``` +public void postOnAnimation(Runnable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | + +### postOnAnimationDelayed(Runnable arg0, long arg1) {#postOnAnimationDelayed-java.lang.Runnable-long-} +``` +public void postOnAnimationDelayed(Runnable arg0, long arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | +| arg1 | long | | + +### refreshDrawableState() {#refreshDrawableState--} +``` +public void refreshDrawableState() +``` + + + + +### releasePointerCapture() {#releasePointerCapture--} +``` +public void releasePointerCapture() +``` + + + + +### removeCallbacks(Runnable arg0) {#removeCallbacks-java.lang.Runnable-} +``` +public boolean removeCallbacks(Runnable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | + +**Returns:** +boolean +### removeOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) {#removeOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-} +``` +public void removeOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnAttachStateChangeListener | | + +### removeOnLayoutChangeListener(View.OnLayoutChangeListener arg0) {#removeOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-} +``` +public void removeOnLayoutChangeListener(View.OnLayoutChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnLayoutChangeListener | | + +### removeOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) {#removeOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-} +``` +public void removeOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnUnhandledKeyEventListener | | + +### requestApplyInsets() {#requestApplyInsets--} +``` +public void requestApplyInsets() +``` + + + + +### requestFitSystemWindows() {#requestFitSystemWindows--} +``` +public void requestFitSystemWindows() +``` + + + + +### requestFocus() {#requestFocus--} +``` +public final boolean requestFocus() +``` + + + + +**Returns:** +boolean +### requestFocus(int arg0) {#requestFocus-int-} +``` +public final boolean requestFocus(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### requestFocus(int arg0, Rect arg1) {#requestFocus-int-android.graphics.Rect-} +``` +public boolean requestFocus(int arg0, Rect arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.graphics.Rect | | + +**Returns:** +boolean +### requestFocusFromTouch() {#requestFocusFromTouch--} +``` +public final boolean requestFocusFromTouch() +``` + + + + +**Returns:** +boolean +### requestLayout() {#requestLayout--} +``` +public void requestLayout() +``` + + + + +### requestPointerCapture() {#requestPointerCapture--} +``` +public void requestPointerCapture() +``` + + + + +### requestRectangleOnScreen(Rect arg0) {#requestRectangleOnScreen-android.graphics.Rect-} +``` +public boolean requestRectangleOnScreen(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### requestRectangleOnScreen(Rect arg0, boolean arg1) {#requestRectangleOnScreen-android.graphics.Rect-boolean-} +``` +public boolean requestRectangleOnScreen(Rect arg0, boolean arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | boolean | | + +**Returns:** +boolean +### requestUnbufferedDispatch(MotionEvent arg0) {#requestUnbufferedDispatch-android.view.MotionEvent-} +``` +public final void requestUnbufferedDispatch(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +### requestUnbufferedDispatch(int arg0) {#requestUnbufferedDispatch-int-} +``` +public final void requestUnbufferedDispatch(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### resetPivot() {#resetPivot--} +``` +public void resetPivot() +``` + + + + +### resolveSize(int arg0, int arg1) {#resolveSize-int-int-} +``` +public static int resolveSize(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +int +### resolveSizeAndState(int arg0, int arg1, int arg2) {#resolveSizeAndState-int-int-int-} +``` +public static int resolveSizeAndState(int arg0, int arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | + +**Returns:** +int +### restoreDefaultFocus() {#restoreDefaultFocus--} +``` +public boolean restoreDefaultFocus() +``` + + + + +**Returns:** +boolean +### restoreHierarchyState(SparseArray arg0) {#restoreHierarchyState-android.util.SparseArray-android.os.Parcelable--} +``` +public void restoreHierarchyState(SparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.SparseArray | | + +### saveAttributeDataForStyleable(Context arg0, int[] arg1, AttributeSet arg2, TypedArray arg3, int arg4, int arg5) {#saveAttributeDataForStyleable-android.content.Context-int---android.util.AttributeSet-android.content.res.TypedArray-int-int-} +``` +public final void saveAttributeDataForStyleable(Context arg0, int[] arg1, AttributeSet arg2, TypedArray arg3, int arg4, int arg5) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | int[] | | +| arg2 | android.util.AttributeSet | | +| arg3 | android.content.res.TypedArray | | +| arg4 | int | | +| arg5 | int | | + +### saveHierarchyState(SparseArray arg0) {#saveHierarchyState-android.util.SparseArray-android.os.Parcelable--} +``` +public void saveHierarchyState(SparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.SparseArray | | + +### scanBarcode(CameraProcessingFragment.OnBarcodeBitmapAvailableListener onBarcodeBitmapAvailableListener, CameraProcessingFragmentSettings settings) {#scanBarcode-com.aspose.barcode.component.barcodescanner.CameraProcessingFragment.OnBarcodeBitmapAvailableListener-com.aspose.barcode.component.barcodescanner.CameraProcessingFragmentSettings-} +``` +public void scanBarcode(CameraProcessingFragment.OnBarcodeBitmapAvailableListener onBarcodeBitmapAvailableListener, CameraProcessingFragmentSettings settings) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| onBarcodeBitmapAvailableListener | com.aspose.barcode.component.barcodescanner.CameraProcessingFragment.OnBarcodeBitmapAvailableListener | | +| paramètres | com.aspose.barcode.component.barcodescanner.CameraProcessingFragmentSettings | | + +### scheduleDrawable(Drawable arg0, Runnable arg1, long arg2) {#scheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-long-} +``` +public void scheduleDrawable(Drawable arg0, Runnable arg1, long arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | +| arg1 | java.lang.Runnable | | +| arg2 | long | | + +### scrollBy(int arg0, int arg1) {#scrollBy-int-int-} +``` +public void scrollBy(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### scrollTo(int arg0, int arg1) {#scrollTo-int-int-} +``` +public void scrollTo(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### sendAccessibilityEvent(int arg0) {#sendAccessibilityEvent-int-} +``` +public void sendAccessibilityEvent(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### sendAccessibilityEventUnchecked(AccessibilityEvent arg0) {#sendAccessibilityEventUnchecked-android.view.accessibility.AccessibilityEvent-} +``` +public void sendAccessibilityEventUnchecked(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +### setAccessibilityDelegate(View.AccessibilityDelegate arg0) {#setAccessibilityDelegate-android.view.View.AccessibilityDelegate-} +``` +public void setAccessibilityDelegate(View.AccessibilityDelegate arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.AccessibilityDelegate | | + +### setAccessibilityHeading(boolean arg0) {#setAccessibilityHeading-boolean-} +``` +public void setAccessibilityHeading(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAccessibilityLiveRegion(int arg0) {#setAccessibilityLiveRegion-int-} +``` +public void setAccessibilityLiveRegion(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setAccessibilityPaneTitle(CharSequence arg0) {#setAccessibilityPaneTitle-java.lang.CharSequence-} +``` +public void setAccessibilityPaneTitle(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setAccessibilityTraversalAfter(int arg0) {#setAccessibilityTraversalAfter-int-} +``` +public void setAccessibilityTraversalAfter(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setAccessibilityTraversalBefore(int arg0) {#setAccessibilityTraversalBefore-int-} +``` +public void setAccessibilityTraversalBefore(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setActivated(boolean arg0) {#setActivated-boolean-} +``` +public void setActivated(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAllowClickWhenDisabled(boolean arg0) {#setAllowClickWhenDisabled-boolean-} +``` +public void setAllowClickWhenDisabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAlpha(float arg0) {#setAlpha-float-} +``` +public void setAlpha(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setAnimation(Animation arg0) {#setAnimation-android.view.animation.Animation-} +``` +public void setAnimation(Animation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.animation.Animation | | + +### setAnimationMatrix(Matrix arg0) {#setAnimationMatrix-android.graphics.Matrix-} +``` +public void setAnimationMatrix(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### setAutoHandwritingEnabled(boolean arg0) {#setAutoHandwritingEnabled-boolean-} +``` +public void setAutoHandwritingEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAutofillHints(String[] arg0) {#setAutofillHints-java.lang.String...-} +``` +public void setAutofillHints(String[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String[] | | + +### setAutofillId(AutofillId arg0) {#setAutofillId-android.view.autofill.AutofillId-} +``` +public void setAutofillId(AutofillId arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.autofill.AutofillId | | + +### setBackground(Drawable arg0) {#setBackground-android.graphics.drawable.Drawable-} +``` +public void setBackground(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setBackgroundColor(int arg0) {#setBackgroundColor-int-} +``` +public void setBackgroundColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setBackgroundDrawable(Drawable arg0) {#setBackgroundDrawable-android.graphics.drawable.Drawable-} +``` +public void setBackgroundDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setBackgroundResource(int arg0) {#setBackgroundResource-int-} +``` +public void setBackgroundResource(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setBackgroundTintBlendMode(BlendMode arg0) {#setBackgroundTintBlendMode-android.graphics.BlendMode-} +``` +public void setBackgroundTintBlendMode(BlendMode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.BlendMode | | + +### setBackgroundTintList(ColorStateList arg0) {#setBackgroundTintList-android.content.res.ColorStateList-} +``` +public void setBackgroundTintList(ColorStateList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.ColorStateList | | + +### setBackgroundTintMode(PorterDuff.Mode arg0) {#setBackgroundTintMode-android.graphics.PorterDuff.Mode-} +``` +public void setBackgroundTintMode(PorterDuff.Mode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.PorterDuff.Mode | | + +### setBottom(int arg0) {#setBottom-int-} +``` +public final void setBottom(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setCameraDistance(float arg0) {#setCameraDistance-float-} +``` +public void setCameraDistance(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setClickable(boolean arg0) {#setClickable-boolean-} +``` +public void setClickable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setClipBounds(Rect arg0) {#setClipBounds-android.graphics.Rect-} +``` +public void setClipBounds(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### setClipToOutline(boolean arg0) {#setClipToOutline-boolean-} +``` +public void setClipToOutline(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setContentCaptureSession(ContentCaptureSession arg0) {#setContentCaptureSession-android.view.contentcapture.ContentCaptureSession-} +``` +public void setContentCaptureSession(ContentCaptureSession arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.contentcapture.ContentCaptureSession | | + +### setContentDescription(CharSequence arg0) {#setContentDescription-java.lang.CharSequence-} +``` +public void setContentDescription(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setContextClickable(boolean arg0) {#setContextClickable-boolean-} +``` +public void setContextClickable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setDefaultFocusHighlightEnabled(boolean arg0) {#setDefaultFocusHighlightEnabled-boolean-} +``` +public void setDefaultFocusHighlightEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setDrawingCacheBackgroundColor(int arg0) {#setDrawingCacheBackgroundColor-int-} +``` +public void setDrawingCacheBackgroundColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setDrawingCacheEnabled(boolean arg0) {#setDrawingCacheEnabled-boolean-} +``` +public void setDrawingCacheEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setDrawingCacheQuality(int arg0) {#setDrawingCacheQuality-int-} +``` +public void setDrawingCacheQuality(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setDuplicateParentStateEnabled(boolean arg0) {#setDuplicateParentStateEnabled-boolean-} +``` +public void setDuplicateParentStateEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setElevation(float arg0) {#setElevation-float-} +``` +public void setElevation(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setEnabled(boolean arg0) {#setEnabled-boolean-} +``` +public void setEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFadingEdgeLength(int arg0) {#setFadingEdgeLength-int-} +``` +public void setFadingEdgeLength(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setFilterTouchesWhenObscured(boolean arg0) {#setFilterTouchesWhenObscured-boolean-} +``` +public void setFilterTouchesWhenObscured(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFitsSystemWindows(boolean arg0) {#setFitsSystemWindows-boolean-} +``` +public void setFitsSystemWindows(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFocusable(boolean arg0) {#setFocusable-boolean-} +``` +public void setFocusable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFocusable(int arg0) {#setFocusable-int-} +``` +public void setFocusable(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setFocusableInTouchMode(boolean arg0) {#setFocusableInTouchMode-boolean-} +``` +public void setFocusableInTouchMode(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFocusedByDefault(boolean arg0) {#setFocusedByDefault-boolean-} +``` +public void setFocusedByDefault(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setForceDarkAllowed(boolean arg0) {#setForceDarkAllowed-boolean-} +``` +public void setForceDarkAllowed(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setForeground(Drawable arg0) {#setForeground-android.graphics.drawable.Drawable-} +``` +public void setForeground(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setForegroundGravity(int arg0) {#setForegroundGravity-int-} +``` +public void setForegroundGravity(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setForegroundTintBlendMode(BlendMode arg0) {#setForegroundTintBlendMode-android.graphics.BlendMode-} +``` +public void setForegroundTintBlendMode(BlendMode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.BlendMode | | + +### setForegroundTintList(ColorStateList arg0) {#setForegroundTintList-android.content.res.ColorStateList-} +``` +public void setForegroundTintList(ColorStateList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.ColorStateList | | + +### setForegroundTintMode(PorterDuff.Mode arg0) {#setForegroundTintMode-android.graphics.PorterDuff.Mode-} +``` +public void setForegroundTintMode(PorterDuff.Mode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.PorterDuff.Mode | | + +### setHapticFeedbackEnabled(boolean arg0) {#setHapticFeedbackEnabled-boolean-} +``` +public void setHapticFeedbackEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHasTransientState(boolean arg0) {#setHasTransientState-boolean-} +``` +public void setHasTransientState(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHorizontalFadingEdgeEnabled(boolean arg0) {#setHorizontalFadingEdgeEnabled-boolean-} +``` +public void setHorizontalFadingEdgeEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHorizontalScrollBarEnabled(boolean arg0) {#setHorizontalScrollBarEnabled-boolean-} +``` +public void setHorizontalScrollBarEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHorizontalScrollbarThumbDrawable(Drawable arg0) {#setHorizontalScrollbarThumbDrawable-android.graphics.drawable.Drawable-} +``` +public void setHorizontalScrollbarThumbDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setHorizontalScrollbarTrackDrawable(Drawable arg0) {#setHorizontalScrollbarTrackDrawable-android.graphics.drawable.Drawable-} +``` +public void setHorizontalScrollbarTrackDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setHovered(boolean arg0) {#setHovered-boolean-} +``` +public void setHovered(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setId(int arg0) {#setId-int-} +``` +public void setId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImportantForAccessibility(int arg0) {#setImportantForAccessibility-int-} +``` +public void setImportantForAccessibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImportantForAutofill(int arg0) {#setImportantForAutofill-int-} +``` +public void setImportantForAutofill(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImportantForContentCapture(int arg0) {#setImportantForContentCapture-int-} +``` +public void setImportantForContentCapture(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setKeepScreenOn(boolean arg0) {#setKeepScreenOn-boolean-} +``` +public void setKeepScreenOn(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setKeyboardNavigationCluster(boolean arg0) {#setKeyboardNavigationCluster-boolean-} +``` +public void setKeyboardNavigationCluster(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setLabelFor(int arg0) {#setLabelFor-int-} +``` +public void setLabelFor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setLayerPaint(Paint arg0) {#setLayerPaint-android.graphics.Paint-} +``` +public void setLayerPaint(Paint arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Paint | | + +### setLayerType(int arg0, Paint arg1) {#setLayerType-int-android.graphics.Paint-} +``` +public void setLayerType(int arg0, Paint arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.graphics.Paint | | + +### setLayoutDirection(int arg0) {#setLayoutDirection-int-} +``` +public void setLayoutDirection(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setLayoutParams(ViewGroup.LayoutParams arg0) {#setLayoutParams-android.view.ViewGroup.LayoutParams-} +``` +public void setLayoutParams(ViewGroup.LayoutParams arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewGroup.LayoutParams | | + +### setLeft(int arg0) {#setLeft-int-} +``` +public final void setLeft(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setLeftTopRightBottom(int arg0, int arg1, int arg2, int arg3) {#setLeftTopRightBottom-int-int-int-int-} +``` +public final void setLeftTopRightBottom(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### setLongClickable(boolean arg0) {#setLongClickable-boolean-} +``` +public void setLongClickable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setMinimumHeight(int arg0) {#setMinimumHeight-int-} +``` +public void setMinimumHeight(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setMinimumWidth(int arg0) {#setMinimumWidth-int-} +``` +public void setMinimumWidth(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNestedScrollingEnabled(boolean arg0) {#setNestedScrollingEnabled-boolean-} +``` +public void setNestedScrollingEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setNextClusterForwardId(int arg0) {#setNextClusterForwardId-int-} +``` +public void setNextClusterForwardId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusDownId(int arg0) {#setNextFocusDownId-int-} +``` +public void setNextFocusDownId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusForwardId(int arg0) {#setNextFocusForwardId-int-} +``` +public void setNextFocusForwardId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusLeftId(int arg0) {#setNextFocusLeftId-int-} +``` +public void setNextFocusLeftId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusRightId(int arg0) {#setNextFocusRightId-int-} +``` +public void setNextFocusRightId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusUpId(int arg0) {#setNextFocusUpId-int-} +``` +public void setNextFocusUpId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setOnApplyWindowInsetsListener(View.OnApplyWindowInsetsListener arg0) {#setOnApplyWindowInsetsListener-android.view.View.OnApplyWindowInsetsListener-} +``` +public void setOnApplyWindowInsetsListener(View.OnApplyWindowInsetsListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnApplyWindowInsetsListener | | + +### setOnCapturedPointerListener(View.OnCapturedPointerListener arg0) {#setOnCapturedPointerListener-android.view.View.OnCapturedPointerListener-} +``` +public void setOnCapturedPointerListener(View.OnCapturedPointerListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnCapturedPointerListener | | + +### setOnClickListener(View.OnClickListener arg0) {#setOnClickListener-android.view.View.OnClickListener-} +``` +public void setOnClickListener(View.OnClickListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnClickListener | | + +### setOnContextClickListener(View.OnContextClickListener arg0) {#setOnContextClickListener-android.view.View.OnContextClickListener-} +``` +public void setOnContextClickListener(View.OnContextClickListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnContextClickListener | | + +### setOnCreateContextMenuListener(View.OnCreateContextMenuListener arg0) {#setOnCreateContextMenuListener-android.view.View.OnCreateContextMenuListener-} +``` +public void setOnCreateContextMenuListener(View.OnCreateContextMenuListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnCreateContextMenuListener | | + +### setOnDragListener(View.OnDragListener arg0) {#setOnDragListener-android.view.View.OnDragListener-} +``` +public void setOnDragListener(View.OnDragListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnDragListener | | + +### setOnFocusChangeListener(View.OnFocusChangeListener arg0) {#setOnFocusChangeListener-android.view.View.OnFocusChangeListener-} +``` +public void setOnFocusChangeListener(View.OnFocusChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnFocusChangeListener | | + +### setOnGenericMotionListener(View.OnGenericMotionListener arg0) {#setOnGenericMotionListener-android.view.View.OnGenericMotionListener-} +``` +public void setOnGenericMotionListener(View.OnGenericMotionListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnGenericMotionListener | | + +### setOnHoverListener(View.OnHoverListener arg0) {#setOnHoverListener-android.view.View.OnHoverListener-} +``` +public void setOnHoverListener(View.OnHoverListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnHoverListener | | + +### setOnKeyListener(View.OnKeyListener arg0) {#setOnKeyListener-android.view.View.OnKeyListener-} +``` +public void setOnKeyListener(View.OnKeyListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnKeyListener | | + +### setOnLongClickListener(View.OnLongClickListener arg0) {#setOnLongClickListener-android.view.View.OnLongClickListener-} +``` +public void setOnLongClickListener(View.OnLongClickListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnLongClickListener | | + +### setOnReceiveContentListener(String[] arg0, OnReceiveContentListener arg1) {#setOnReceiveContentListener-java.lang.String---android.view.OnReceiveContentListener-} +``` +public void setOnReceiveContentListener(String[] arg0, OnReceiveContentListener arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String[] | | +| arg1 | android.view.OnReceiveContentListener | | + +### setOnScrollChangeListener(View.OnScrollChangeListener arg0) {#setOnScrollChangeListener-android.view.View.OnScrollChangeListener-} +``` +public void setOnScrollChangeListener(View.OnScrollChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnScrollChangeListener | | + +### setOnSystemUiVisibilityChangeListener(View.OnSystemUiVisibilityChangeListener arg0) {#setOnSystemUiVisibilityChangeListener-android.view.View.OnSystemUiVisibilityChangeListener-} +``` +public void setOnSystemUiVisibilityChangeListener(View.OnSystemUiVisibilityChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnSystemUiVisibilityChangeListener | | + +### setOnTouchListener(View.OnTouchListener arg0) {#setOnTouchListener-android.view.View.OnTouchListener-} +``` +public void setOnTouchListener(View.OnTouchListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnTouchListener | | + +### setOpaque(boolean arg0) {#setOpaque-boolean-} +``` +public void setOpaque(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setOutlineAmbientShadowColor(int arg0) {#setOutlineAmbientShadowColor-int-} +``` +public void setOutlineAmbientShadowColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setOutlineProvider(ViewOutlineProvider arg0) {#setOutlineProvider-android.view.ViewOutlineProvider-} +``` +public void setOutlineProvider(ViewOutlineProvider arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewOutlineProvider | | + +### setOutlineSpotShadowColor(int arg0) {#setOutlineSpotShadowColor-int-} +``` +public void setOutlineSpotShadowColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setOverScrollMode(int arg0) {#setOverScrollMode-int-} +``` +public void setOverScrollMode(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setPadding(int arg0, int arg1, int arg2, int arg3) {#setPadding-int-int-int-int-} +``` +public void setPadding(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### setPaddingRelative(int arg0, int arg1, int arg2, int arg3) {#setPaddingRelative-int-int-int-int-} +``` +public void setPaddingRelative(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### setPivotX(float arg0) {#setPivotX-float-} +``` +public void setPivotX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setPivotY(float arg0) {#setPivotY-float-} +``` +public void setPivotY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setPointerIcon(PointerIcon arg0) {#setPointerIcon-android.view.PointerIcon-} +``` +public void setPointerIcon(PointerIcon arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.PointerIcon | | + +### setPreferKeepClear(boolean arg0) {#setPreferKeepClear-boolean-} +``` +public final void setPreferKeepClear(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setPreferKeepClearRects(List arg0) {#setPreferKeepClearRects-java.util.List-android.graphics.Rect--} +``` +public final void setPreferKeepClearRects(List arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.List | | + +### setPressed(boolean arg0) {#setPressed-boolean-} +``` +public void setPressed(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setRenderEffect(RenderEffect arg0) {#setRenderEffect-android.graphics.RenderEffect-} +``` +public void setRenderEffect(RenderEffect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.RenderEffect | | + +### setRevealOnFocusHint(boolean arg0) {#setRevealOnFocusHint-boolean-} +``` +public final void setRevealOnFocusHint(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setRight(int arg0) {#setRight-int-} +``` +public final void setRight(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setRotation(float arg0) {#setRotation-float-} +``` +public void setRotation(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setRotationX(float arg0) {#setRotationX-float-} +``` +public void setRotationX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setRotationY(float arg0) {#setRotationY-float-} +``` +public void setRotationY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setSaveEnabled(boolean arg0) {#setSaveEnabled-boolean-} +``` +public void setSaveEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSaveFromParentEnabled(boolean arg0) {#setSaveFromParentEnabled-boolean-} +``` +public void setSaveFromParentEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setScaleX(float arg0) {#setScaleX-float-} +``` +public void setScaleX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setScaleY(float arg0) {#setScaleY-float-} +``` +public void setScaleY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setScreenReaderFocusable(boolean arg0) {#setScreenReaderFocusable-boolean-} +``` +public void setScreenReaderFocusable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setScrollBarDefaultDelayBeforeFade(int arg0) {#setScrollBarDefaultDelayBeforeFade-int-} +``` +public void setScrollBarDefaultDelayBeforeFade(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollBarFadeDuration(int arg0) {#setScrollBarFadeDuration-int-} +``` +public void setScrollBarFadeDuration(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollBarSize(int arg0) {#setScrollBarSize-int-} +``` +public void setScrollBarSize(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollBarStyle(int arg0) {#setScrollBarStyle-int-} +``` +public void setScrollBarStyle(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollCaptureCallback(ScrollCaptureCallback arg0) {#setScrollCaptureCallback-android.view.ScrollCaptureCallback-} +``` +public final void setScrollCaptureCallback(ScrollCaptureCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ScrollCaptureCallback | | + +### setScrollCaptureHint(int arg0) {#setScrollCaptureHint-int-} +``` +public void setScrollCaptureHint(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollContainer(boolean arg0) {#setScrollContainer-boolean-} +``` +public void setScrollContainer(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setScrollIndicators(int arg0) {#setScrollIndicators-int-} +``` +public void setScrollIndicators(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollIndicators(int arg0, int arg1) {#setScrollIndicators-int-int-} +``` +public void setScrollIndicators(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### setScrollX(int arg0) {#setScrollX-int-} +``` +public void setScrollX(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollY(int arg0) {#setScrollY-int-} +``` +public void setScrollY(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollbarFadingEnabled(boolean arg0) {#setScrollbarFadingEnabled-boolean-} +``` +public void setScrollbarFadingEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSelected(boolean arg0) {#setSelected-boolean-} +``` +public void setSelected(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSoundEffectsEnabled(boolean arg0) {#setSoundEffectsEnabled-boolean-} +``` +public void setSoundEffectsEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setStateDescription(CharSequence arg0) {#setStateDescription-java.lang.CharSequence-} +``` +public void setStateDescription(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setStateListAnimator(StateListAnimator arg0) {#setStateListAnimator-android.animation.StateListAnimator-} +``` +public void setStateListAnimator(StateListAnimator arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.animation.StateListAnimator | | + +### setSurfaceTexture(SurfaceTexture arg0) {#setSurfaceTexture-android.graphics.SurfaceTexture-} +``` +public void setSurfaceTexture(SurfaceTexture arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.SurfaceTexture | | + +### setSurfaceTextureListener(TextureView.SurfaceTextureListener arg0) {#setSurfaceTextureListener-android.view.TextureView.SurfaceTextureListener-} +``` +public void setSurfaceTextureListener(TextureView.SurfaceTextureListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.TextureView.SurfaceTextureListener | | + +### setSystemGestureExclusionRects(List arg0) {#setSystemGestureExclusionRects-java.util.List-android.graphics.Rect--} +``` +public void setSystemGestureExclusionRects(List arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.List | | + +### setSystemUiVisibility(int arg0) {#setSystemUiVisibility-int-} +``` +public void setSystemUiVisibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTag(int arg0, Object arg1) {#setTag-int-java.lang.Object-} +``` +public void setTag(int arg0, Object arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.Object | | + +### setTag(Object arg0) {#setTag-java.lang.Object-} +``` +public void setTag(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setTextAlignment(int arg0) {#setTextAlignment-int-} +``` +public void setTextAlignment(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTextDirection(int arg0) {#setTextDirection-int-} +``` +public void setTextDirection(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTooltipText(CharSequence arg0) {#setTooltipText-java.lang.CharSequence-} +``` +public void setTooltipText(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setTop(int arg0) {#setTop-int-} +``` +public final void setTop(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTouchDelegate(TouchDelegate arg0) {#setTouchDelegate-android.view.TouchDelegate-} +``` +public void setTouchDelegate(TouchDelegate arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.TouchDelegate | | + +### setTransform(Matrix arg0) {#setTransform-android.graphics.Matrix-} +``` +public void setTransform(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### setTransitionAlpha(float arg0) {#setTransitionAlpha-float-} +``` +public void setTransitionAlpha(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setTransitionName(String arg0) {#setTransitionName-java.lang.String-} +``` +public final void setTransitionName(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +### setTransitionVisibility(int arg0) {#setTransitionVisibility-int-} +``` +public void setTransitionVisibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTranslationX(float arg0) {#setTranslationX-float-} +``` +public void setTranslationX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setTranslationY(float arg0) {#setTranslationY-float-} +``` +public void setTranslationY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setTranslationZ(float arg0) {#setTranslationZ-float-} +``` +public void setTranslationZ(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setVerticalFadingEdgeEnabled(boolean arg0) {#setVerticalFadingEdgeEnabled-boolean-} +``` +public void setVerticalFadingEdgeEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setVerticalScrollBarEnabled(boolean arg0) {#setVerticalScrollBarEnabled-boolean-} +``` +public void setVerticalScrollBarEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setVerticalScrollbarPosition(int arg0) {#setVerticalScrollbarPosition-int-} +``` +public void setVerticalScrollbarPosition(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setVerticalScrollbarThumbDrawable(Drawable arg0) {#setVerticalScrollbarThumbDrawable-android.graphics.drawable.Drawable-} +``` +public void setVerticalScrollbarThumbDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setVerticalScrollbarTrackDrawable(Drawable arg0) {#setVerticalScrollbarTrackDrawable-android.graphics.drawable.Drawable-} +``` +public void setVerticalScrollbarTrackDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setViewTranslationCallback(ViewTranslationCallback arg0) {#setViewTranslationCallback-android.view.translation.ViewTranslationCallback-} +``` +public void setViewTranslationCallback(ViewTranslationCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.translation.ViewTranslationCallback | | + +### setVisibility(int arg0) {#setVisibility-int-} +``` +public void setVisibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setWillNotCacheDrawing(boolean arg0) {#setWillNotCacheDrawing-boolean-} +``` +public void setWillNotCacheDrawing(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setWillNotDraw(boolean arg0) {#setWillNotDraw-boolean-} +``` +public void setWillNotDraw(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setWindowInsetsAnimationCallback(WindowInsetsAnimation.Callback arg0) {#setWindowInsetsAnimationCallback-android.view.WindowInsetsAnimation.Callback-} +``` +public void setWindowInsetsAnimationCallback(WindowInsetsAnimation.Callback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation.Callback | | + +### setX(float arg0) {#setX-float-} +``` +public void setX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setY(float arg0) {#setY-float-} +``` +public void setY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setZ(float arg0) {#setZ-float-} +``` +public void setZ(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### showContextMenu() {#showContextMenu--} +``` +public boolean showContextMenu() +``` + + + + +**Returns:** +boolean +### showContextMenu(float arg0, float arg1) {#showContextMenu-float-float-} +``` +public boolean showContextMenu(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### startActionMode(ActionMode.Callback arg0) {#startActionMode-android.view.ActionMode.Callback-} +``` +public ActionMode startActionMode(ActionMode.Callback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode.Callback | | + +**Returns:** +android.view.ActionMode +### startActionMode(ActionMode.Callback arg0, int arg1) {#startActionMode-android.view.ActionMode.Callback-int-} +``` +public ActionMode startActionMode(ActionMode.Callback arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode.Callback | | +| arg1 | int | | + +**Returns:** +android.view.ActionMode +### startAnimation(Animation arg0) {#startAnimation-android.view.animation.Animation-} +``` +public void startAnimation(Animation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.animation.Animation | | + +### startDrag(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) {#startDrag-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-} +``` +public final boolean startDrag(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ClipData | | +| arg1 | android.view.View.DragShadowBuilder | | +| arg2 | java.lang.Object | | +| arg3 | int | | + +**Returns:** +boolean +### startDragAndDrop(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) {#startDragAndDrop-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-} +``` +public final boolean startDragAndDrop(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ClipData | | +| arg1 | android.view.View.DragShadowBuilder | | +| arg2 | java.lang.Object | | +| arg3 | int | | + +**Returns:** +boolean +### startNestedScroll(int arg0) {#startNestedScroll-int-} +``` +public boolean startNestedScroll(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### stopNestedScroll() {#stopNestedScroll--} +``` +public void stopNestedScroll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### transformMatrixToGlobal(Matrix arg0) {#transformMatrixToGlobal-android.graphics.Matrix-} +``` +public void transformMatrixToGlobal(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### transformMatrixToLocal(Matrix arg0) {#transformMatrixToLocal-android.graphics.Matrix-} +``` +public void transformMatrixToLocal(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### unlockCanvasAndPost(Canvas arg0) {#unlockCanvasAndPost-android.graphics.Canvas-} +``` +public void unlockCanvasAndPost(Canvas arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Canvas | | + +### unscheduleDrawable(Drawable arg0) {#unscheduleDrawable-android.graphics.drawable.Drawable-} +``` +public void unscheduleDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### unscheduleDrawable(Drawable arg0, Runnable arg1) {#unscheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-} +``` +public void unscheduleDrawable(Drawable arg0, Runnable arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | +| arg1 | java.lang.Runnable | | + +### updateDragShadow(View.DragShadowBuilder arg0) {#updateDragShadow-android.view.View.DragShadowBuilder-} +``` +public final void updateDragShadow(View.DragShadowBuilder arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.DragShadowBuilder | | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### willNotCacheDrawing() {#willNotCacheDrawing--} +``` +public boolean willNotCacheDrawing() +``` + + + + +**Returns:** +boolean +### willNotDraw() {#willNotDraw--} +``` +public boolean willNotDraw() +``` + + + + +**Returns:** +boolean diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/cameramode/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/cameramode/_index.md new file mode 100644 index 000000000..4d1b3b4d8 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/cameramode/_index.md @@ -0,0 +1,250 @@ +--- +title: CameraMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Contient les modes d'obtention d'images depuis la caméra +type: docs +weight: 32 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/cameramode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum CameraMode extends Enum +``` + +Contient les modes d'obtention d'images depuis la caméra +## Champs + +| Champ | Description | +| --- | --- | +| [PHOTO](#PHOTO) | Ce mode permet de prendre une image de haute qualité, mais consomme beaucoup de ressources pour obtenir la photo et la traiter. | +| [SNAPSHOT](#SNAPSHOT) | Ce mode permet de prendre une image en instantané, mais l'image sera de faible qualité. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### PHOTO {#PHOTO} +``` +public static final CameraMode PHOTO +``` + + +Ce mode permet de prendre une image de haute qualité, mais consomme beaucoup de ressources pour obtenir la photo et la traiter. + +### SNAPSHOT {#SNAPSHOT} +``` +public static final CameraMode SNAPSHOT +``` + + +Ce mode permet de prendre une image en instantané, mais l'image sera de faible qualité. Ce mode est plus recommandé. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static CameraMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[CameraMode](../../com.aspose.barcode.component.barcodescanner/cameramode) +### values() {#values--} +``` +public static CameraMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.component.barcodescanner.CameraMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/cameraprocessingfragment/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/cameraprocessingfragment/_index.md new file mode 100644 index 000000000..109725b6f --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/cameraprocessingfragment/_index.md @@ -0,0 +1,1739 @@ +--- +title: CameraProcessingFragment +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Interne +type: docs +weight: 19 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/cameraprocessingfragment/ +--- +**Inheritance:** +java.lang.Object, androidx.fragment.app.Fragment +``` +public class CameraProcessingFragment extends Fragment +``` + +Interne +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [CameraProcessingFragment(BarcodeRecognitionSettings barcodeRecognitionSettings, boolean showPreferencesButton)](#CameraProcessingFragment-com.aspose.barcode.component.barcodescanner.BarcodeRecognitionSettings-boolean-) | | +| [CameraProcessingFragment()](#CameraProcessingFragment--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1)](#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultCallback-O--) | | +| [registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2)](#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultRegistry-androidx.activity.result.ActivityResultCallback-O--) | | +| [dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3)](#dump-java.lang.String-java.io.FileDescriptor-java.io.PrintWriter-java.lang.String---) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getActivity()](#getActivity--) | | +| [getAllowEnterTransitionOverlap()](#getAllowEnterTransitionOverlap--) | | +| [getAllowReturnTransitionOverlap()](#getAllowReturnTransitionOverlap--) | | +| [getArguments()](#getArguments--) | | +| [getChildFragmentManager()](#getChildFragmentManager--) | | +| [getClass()](#getClass--) | | +| [getContext()](#getContext--) | | +| [getDefaultViewModelProviderFactory()](#getDefaultViewModelProviderFactory--) | | +| [getEnterTransition()](#getEnterTransition--) | | +| [getExitTransition()](#getExitTransition--) | | +| [getFragmentManager()](#getFragmentManager--) | | +| [getHost()](#getHost--) | | +| [getId()](#getId--) | | +| [getLayoutInflater()](#getLayoutInflater--) | | +| [getLayoutInflater(Bundle arg0)](#getLayoutInflater-android.os.Bundle-) | | +| [getLifecycle()](#getLifecycle--) | | +| [getLoaderManager()](#getLoaderManager--) | | +| [getParentFragment()](#getParentFragment--) | | +| [getParentFragmentManager()](#getParentFragmentManager--) | | +| [getReenterTransition()](#getReenterTransition--) | | +| [getResources()](#getResources--) | | +| [getRetainInstance()](#getRetainInstance--) | | +| [getReturnTransition()](#getReturnTransition--) | | +| [getSavedStateRegistry()](#getSavedStateRegistry--) | | +| [getSharedElementEnterTransition()](#getSharedElementEnterTransition--) | | +| [getSharedElementReturnTransition()](#getSharedElementReturnTransition--) | | +| [getString(int arg0)](#getString-int-) | | +| [getString(int arg0, Object[] arg1)](#getString-int-java.lang.Object...-) | | +| [getTag()](#getTag--) | | +| [getTargetFragment()](#getTargetFragment--) | | +| [getTargetRequestCode()](#getTargetRequestCode--) | | +| [getText(int arg0)](#getText-int-) | | +| [getUserVisibleHint()](#getUserVisibleHint--) | | +| [getView()](#getView--) | | +| [getViewLifecycleOwner()](#getViewLifecycleOwner--) | | +| [getViewLifecycleOwnerLiveData()](#getViewLifecycleOwnerLiveData--) | | +| [getViewModelStore()](#getViewModelStore--) | | +| [hasOptionsMenu()](#hasOptionsMenu--) | | +| [hashCode()](#hashCode--) | | +| [instantiate(Context arg0, String arg1)](#instantiate-android.content.Context-java.lang.String-) | | +| [instantiate(Context arg0, String arg1, Bundle arg2)](#instantiate-android.content.Context-java.lang.String-android.os.Bundle-) | | +| [isAdded()](#isAdded--) | | +| [isDetached()](#isDetached--) | | +| [isHidden()](#isHidden--) | | +| [isInLayout()](#isInLayout--) | | +| [isMenuVisible()](#isMenuVisible--) | | +| [isRemoving()](#isRemoving--) | | +| [isResumed()](#isResumed--) | | +| [isStateSaved()](#isStateSaved--) | | +| [isVisible()](#isVisible--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [onActivityCreated(Bundle arg0)](#onActivityCreated-android.os.Bundle-) | | +| [onActivityResult(int arg0, int arg1, Intent arg2)](#onActivityResult-int-int-android.content.Intent-) | | +| [onAttach(Activity arg0)](#onAttach-android.app.Activity-) | | +| [onAttach(Context arg0)](#onAttach-android.content.Context-) | | +| [onAttachFragment(Fragment arg0)](#onAttachFragment-androidx.fragment.app.Fragment-) | | +| [onConfigurationChanged(Configuration arg0)](#onConfigurationChanged-android.content.res.Configuration-) | | +| [onContextItemSelected(MenuItem arg0)](#onContextItemSelected-android.view.MenuItem-) | | +| [onCreate(Bundle savedInstanceState)](#onCreate-android.os.Bundle-) | | +| [onCreateAnimation(int arg0, boolean arg1, int arg2)](#onCreateAnimation-int-boolean-int-) | | +| [onCreateAnimator(int arg0, boolean arg1, int arg2)](#onCreateAnimator-int-boolean-int-) | | +| [onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2)](#onCreateContextMenu-android.view.ContextMenu-android.view.View-android.view.ContextMenu.ContextMenuInfo-) | | +| [onCreateOptionsMenu(Menu arg0, MenuInflater arg1)](#onCreateOptionsMenu-android.view.Menu-android.view.MenuInflater-) | | +| [onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)](#onCreateView-android.view.LayoutInflater-android.view.ViewGroup-android.os.Bundle-) | | +| [onDestroy()](#onDestroy--) | | +| [onDestroyOptionsMenu()](#onDestroyOptionsMenu--) | | +| [onDestroyView()](#onDestroyView--) | | +| [onDetach()](#onDetach--) | | +| [onGetLayoutInflater(Bundle arg0)](#onGetLayoutInflater-android.os.Bundle-) | | +| [onHiddenChanged(boolean arg0)](#onHiddenChanged-boolean-) | | +| [onInflate(Activity arg0, AttributeSet arg1, Bundle arg2)](#onInflate-android.app.Activity-android.util.AttributeSet-android.os.Bundle-) | | +| [onInflate(Context arg0, AttributeSet arg1, Bundle arg2)](#onInflate-android.content.Context-android.util.AttributeSet-android.os.Bundle-) | | +| [onLowMemory()](#onLowMemory--) | | +| [onMultiWindowModeChanged(boolean arg0)](#onMultiWindowModeChanged-boolean-) | | +| [onOptionsItemSelected(MenuItem arg0)](#onOptionsItemSelected-android.view.MenuItem-) | | +| [onOptionsMenuClosed(Menu arg0)](#onOptionsMenuClosed-android.view.Menu-) | | +| [onPause()](#onPause--) | | +| [onPictureInPictureModeChanged(boolean arg0)](#onPictureInPictureModeChanged-boolean-) | | +| [onPrepareOptionsMenu(Menu arg0)](#onPrepareOptionsMenu-android.view.Menu-) | | +| [onPrimaryNavigationFragmentChanged(boolean arg0)](#onPrimaryNavigationFragmentChanged-boolean-) | | +| [onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2)](#onRequestPermissionsResult-int-java.lang.String---int---) | | +| [onResume()](#onResume--) | | +| [onSaveInstanceState(Bundle arg0)](#onSaveInstanceState-android.os.Bundle-) | | +| [onStart()](#onStart--) | | +| [onStop()](#onStop--) | | +| [onViewCreated(View view, Bundle savedInstanceState)](#onViewCreated-android.view.View-android.os.Bundle-) | | +| [onViewStateRestored(Bundle arg0)](#onViewStateRestored-android.os.Bundle-) | | +| [postponeEnterTransition()](#postponeEnterTransition--) | | +| [postponeEnterTransition(long arg0, TimeUnit arg1)](#postponeEnterTransition-long-java.util.concurrent.TimeUnit-) | | +| [registerForContextMenu(View arg0)](#registerForContextMenu-android.view.View-) | | +| [requestPermissions(String[] arg0, int arg1)](#requestPermissions-java.lang.String---int-) | | +| [requireActivity()](#requireActivity--) | | +| [requireArguments()](#requireArguments--) | | +| [requireContext()](#requireContext--) | | +| [requireFragmentManager()](#requireFragmentManager--) | | +| [requireHost()](#requireHost--) | | +| [requireParentFragment()](#requireParentFragment--) | | +| [requireView()](#requireView--) | | +| [setAllowEnterTransitionOverlap(boolean arg0)](#setAllowEnterTransitionOverlap-boolean-) | | +| [setAllowReturnTransitionOverlap(boolean arg0)](#setAllowReturnTransitionOverlap-boolean-) | | +| [setArguments(Bundle arg0)](#setArguments-android.os.Bundle-) | | +| [setEnterSharedElementCallback(SharedElementCallback arg0)](#setEnterSharedElementCallback-androidx.core.app.SharedElementCallback-) | | +| [setEnterTransition(Object arg0)](#setEnterTransition-java.lang.Object-) | | +| [setExitSharedElementCallback(SharedElementCallback arg0)](#setExitSharedElementCallback-androidx.core.app.SharedElementCallback-) | | +| [setExitTransition(Object arg0)](#setExitTransition-java.lang.Object-) | | +| [setHasOptionsMenu(boolean arg0)](#setHasOptionsMenu-boolean-) | | +| [setInitialSavedState(Fragment.SavedState arg0)](#setInitialSavedState-androidx.fragment.app.Fragment.SavedState-) | | +| [setMenuVisibility(boolean arg0)](#setMenuVisibility-boolean-) | | +| [setReenterTransition(Object arg0)](#setReenterTransition-java.lang.Object-) | | +| [setRetainInstance(boolean arg0)](#setRetainInstance-boolean-) | | +| [setReturnTransition(Object arg0)](#setReturnTransition-java.lang.Object-) | | +| [setSharedElementEnterTransition(Object arg0)](#setSharedElementEnterTransition-java.lang.Object-) | | +| [setSharedElementReturnTransition(Object arg0)](#setSharedElementReturnTransition-java.lang.Object-) | | +| [setTargetFragment(Fragment arg0, int arg1)](#setTargetFragment-androidx.fragment.app.Fragment-int-) | | +| [setUserVisibleHint(boolean arg0)](#setUserVisibleHint-boolean-) | | +| [shouldShowRequestPermissionRationale(String arg0)](#shouldShowRequestPermissionRationale-java.lang.String-) | | +| [startActivity(Intent arg0)](#startActivity-android.content.Intent-) | | +| [startActivity(Intent arg0, Bundle arg1)](#startActivity-android.content.Intent-android.os.Bundle-) | | +| [startActivityForResult(Intent arg0, int arg1)](#startActivityForResult-android.content.Intent-int-) | | +| [startActivityForResult(Intent arg0, int arg1, Bundle arg2)](#startActivityForResult-android.content.Intent-int-android.os.Bundle-) | | +| [startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6)](#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-) | | +| [startPostponedEnterTransition()](#startPostponedEnterTransition--) | | +| [toString()](#toString--) | | +| [unregisterForContextMenu(View arg0)](#unregisterForContextMenu-android.view.View-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CameraProcessingFragment(BarcodeRecognitionSettings barcodeRecognitionSettings, boolean showPreferencesButton) {#CameraProcessingFragment-com.aspose.barcode.component.barcodescanner.BarcodeRecognitionSettings-boolean-} +``` +public CameraProcessingFragment(BarcodeRecognitionSettings barcodeRecognitionSettings, boolean showPreferencesButton) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeRecognitionSettings | com.aspose.barcode.component.barcodescanner.BarcodeRecognitionSettings | | +| showPreferencesButton | boolean | | + +### CameraProcessingFragment() {#CameraProcessingFragment--} +``` +public CameraProcessingFragment() +``` + + +### registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1) {#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultCallback-O--} +``` +public final ActivityResultLauncher registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.result.contract.ActivityResultContract | | +| arg1 | androidx.activity.result.ActivityResultCallback | | + +**Returns:** +androidx.activity.result.ActivityResultLauncher +### registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2) {#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultRegistry-androidx.activity.result.ActivityResultCallback-O--} +``` +public final ActivityResultLauncher registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.result.contract.ActivityResultContract | | +| arg1 | androidx.activity.result.ActivityResultRegistry | | +| arg2 | androidx.activity.result.ActivityResultCallback | | + +**Returns:** +androidx.activity.result.ActivityResultLauncher +### dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3) {#dump-java.lang.String-java.io.FileDescriptor-java.io.PrintWriter-java.lang.String---} +``` +public void dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | java.io.FileDescriptor | | +| arg2 | java.io.PrintWriter | | +| arg3 | java.lang.String[] | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getActivity() {#getActivity--} +``` +public final FragmentActivity getActivity() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentActivity +### getAllowEnterTransitionOverlap() {#getAllowEnterTransitionOverlap--} +``` +public boolean getAllowEnterTransitionOverlap() +``` + + + + +**Returns:** +boolean +### getAllowReturnTransitionOverlap() {#getAllowReturnTransitionOverlap--} +``` +public boolean getAllowReturnTransitionOverlap() +``` + + + + +**Returns:** +boolean +### getArguments() {#getArguments--} +``` +public final Bundle getArguments() +``` + + + + +**Returns:** +android.os.Bundle +### getChildFragmentManager() {#getChildFragmentManager--} +``` +public final FragmentManager getChildFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getContext() {#getContext--} +``` +public Context getContext() +``` + + + + +**Returns:** +android.content.Context +### getDefaultViewModelProviderFactory() {#getDefaultViewModelProviderFactory--} +``` +public ViewModelProvider.Factory getDefaultViewModelProviderFactory() +``` + + + + +**Returns:** +androidx.lifecycle.ViewModelProvider.Factory +### getEnterTransition() {#getEnterTransition--} +``` +public Object getEnterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getExitTransition() {#getExitTransition--} +``` +public Object getExitTransition() +``` + + + + +**Returns:** +java.lang.Object +### getFragmentManager() {#getFragmentManager--} +``` +public final FragmentManager getFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getHost() {#getHost--} +``` +public final Object getHost() +``` + + + + +**Returns:** +java.lang.Object +### getId() {#getId--} +``` +public final int getId() +``` + + + + +**Returns:** +int +### getLayoutInflater() {#getLayoutInflater--} +``` +public final LayoutInflater getLayoutInflater() +``` + + + + +**Returns:** +android.view.LayoutInflater +### getLayoutInflater(Bundle arg0) {#getLayoutInflater-android.os.Bundle-} +``` +public LayoutInflater getLayoutInflater(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +**Returns:** +android.view.LayoutInflater +### getLifecycle() {#getLifecycle--} +``` +public Lifecycle getLifecycle() +``` + + + + +**Returns:** +androidx.lifecycle.Lifecycle +### getLoaderManager() {#getLoaderManager--} +``` +public LoaderManager getLoaderManager() +``` + + + + +**Returns:** +androidx.loader.app.LoaderManager +### getParentFragment() {#getParentFragment--} +``` +public final Fragment getParentFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### getParentFragmentManager() {#getParentFragmentManager--} +``` +public final FragmentManager getParentFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getReenterTransition() {#getReenterTransition--} +``` +public Object getReenterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getResources() {#getResources--} +``` +public final Resources getResources() +``` + + + + +**Returns:** +android.content.res.Resources +### getRetainInstance() {#getRetainInstance--} +``` +public final boolean getRetainInstance() +``` + + + + +**Returns:** +boolean +### getReturnTransition() {#getReturnTransition--} +``` +public Object getReturnTransition() +``` + + + + +**Returns:** +java.lang.Object +### getSavedStateRegistry() {#getSavedStateRegistry--} +``` +public final SavedStateRegistry getSavedStateRegistry() +``` + + + + +**Returns:** +androidx.savedstate.SavedStateRegistry +### getSharedElementEnterTransition() {#getSharedElementEnterTransition--} +``` +public Object getSharedElementEnterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getSharedElementReturnTransition() {#getSharedElementReturnTransition--} +``` +public Object getSharedElementReturnTransition() +``` + + + + +**Returns:** +java.lang.Object +### getString(int arg0) {#getString-int-} +``` +public final String getString(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.String +### getString(int arg0, Object[] arg1) {#getString-int-java.lang.Object...-} +``` +public final String getString(int arg0, Object[] arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.Object[] | | + +**Returns:** +java.lang.String +### getTag() {#getTag--} +``` +public final String getTag() +``` + + + + +**Returns:** +java.lang.String +### getTargetFragment() {#getTargetFragment--} +``` +public final Fragment getTargetFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### getTargetRequestCode() {#getTargetRequestCode--} +``` +public final int getTargetRequestCode() +``` + + + + +**Returns:** +int +### getText(int arg0) {#getText-int-} +``` +public final CharSequence getText(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.CharSequence +### getUserVisibleHint() {#getUserVisibleHint--} +``` +public boolean getUserVisibleHint() +``` + + + + +**Returns:** +boolean +### getView() {#getView--} +``` +public View getView() +``` + + + + +**Returns:** +android.view.View +### getViewLifecycleOwner() {#getViewLifecycleOwner--} +``` +public LifecycleOwner getViewLifecycleOwner() +``` + + + + +**Returns:** +androidx.lifecycle.LifecycleOwner +### getViewLifecycleOwnerLiveData() {#getViewLifecycleOwnerLiveData--} +``` +public LiveData getViewLifecycleOwnerLiveData() +``` + + + + +**Returns:** +androidx.lifecycle.LiveData +### getViewModelStore() {#getViewModelStore--} +``` +public ViewModelStore getViewModelStore() +``` + + + + +**Returns:** +androidx.lifecycle.ViewModelStore +### hasOptionsMenu() {#hasOptionsMenu--} +``` +public final boolean hasOptionsMenu() +``` + + + + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### instantiate(Context arg0, String arg1) {#instantiate-android.content.Context-java.lang.String-} +``` +public static Fragment instantiate(Context arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | java.lang.String | | + +**Returns:** +androidx.fragment.app.Fragment +### instantiate(Context arg0, String arg1, Bundle arg2) {#instantiate-android.content.Context-java.lang.String-android.os.Bundle-} +``` +public static Fragment instantiate(Context arg0, String arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | java.lang.String | | +| arg2 | android.os.Bundle | | + +**Returns:** +androidx.fragment.app.Fragment +### isAdded() {#isAdded--} +``` +public final boolean isAdded() +``` + + + + +**Returns:** +boolean +### isDetached() {#isDetached--} +``` +public final boolean isDetached() +``` + + + + +**Returns:** +boolean +### isHidden() {#isHidden--} +``` +public final boolean isHidden() +``` + + + + +**Returns:** +boolean +### isInLayout() {#isInLayout--} +``` +public final boolean isInLayout() +``` + + + + +**Returns:** +boolean +### isMenuVisible() {#isMenuVisible--} +``` +public final boolean isMenuVisible() +``` + + + + +**Returns:** +boolean +### isRemoving() {#isRemoving--} +``` +public final boolean isRemoving() +``` + + + + +**Returns:** +boolean +### isResumed() {#isResumed--} +``` +public final boolean isResumed() +``` + + + + +**Returns:** +boolean +### isStateSaved() {#isStateSaved--} +``` +public final boolean isStateSaved() +``` + + + + +**Returns:** +boolean +### isVisible() {#isVisible--} +``` +public final boolean isVisible() +``` + + + + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### onActivityCreated(Bundle arg0) {#onActivityCreated-android.os.Bundle-} +``` +public void onActivityCreated(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### onActivityResult(int arg0, int arg1, Intent arg2) {#onActivityResult-int-int-android.content.Intent-} +``` +public void onActivityResult(int arg0, int arg1, Intent arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | android.content.Intent | | + +### onAttach(Activity arg0) {#onAttach-android.app.Activity-} +``` +public void onAttach(Activity arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | + +### onAttach(Context arg0) {#onAttach-android.content.Context-} +``` +public void onAttach(Context arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | + +### onAttachFragment(Fragment arg0) {#onAttachFragment-androidx.fragment.app.Fragment-} +``` +public void onAttachFragment(Fragment arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | + +### onConfigurationChanged(Configuration arg0) {#onConfigurationChanged-android.content.res.Configuration-} +``` +public void onConfigurationChanged(Configuration arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.Configuration | | + +### onContextItemSelected(MenuItem arg0) {#onContextItemSelected-android.view.MenuItem-} +``` +public boolean onContextItemSelected(MenuItem arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MenuItem | | + +**Returns:** +boolean +### onCreate(Bundle savedInstanceState) {#onCreate-android.os.Bundle-} +``` +public void onCreate(Bundle savedInstanceState) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| savedInstanceState | android.os.Bundle | | + +### onCreateAnimation(int arg0, boolean arg1, int arg2) {#onCreateAnimation-int-boolean-int-} +``` +public Animation onCreateAnimation(int arg0, boolean arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | boolean | | +| arg2 | int | | + +**Returns:** +android.view.animation.Animation +### onCreateAnimator(int arg0, boolean arg1, int arg2) {#onCreateAnimator-int-boolean-int-} +``` +public Animator onCreateAnimator(int arg0, boolean arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | boolean | | +| arg2 | int | | + +**Returns:** +android.animation.Animator +### onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2) {#onCreateContextMenu-android.view.ContextMenu-android.view.View-android.view.ContextMenu.ContextMenuInfo-} +``` +public void onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContextMenu | | +| arg1 | android.view.View | | +| arg2 | android.view.ContextMenu.ContextMenuInfo | | + +### onCreateOptionsMenu(Menu arg0, MenuInflater arg1) {#onCreateOptionsMenu-android.view.Menu-android.view.MenuInflater-} +``` +public void onCreateOptionsMenu(Menu arg0, MenuInflater arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | +| arg1 | android.view.MenuInflater | | + +### onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {#onCreateView-android.view.LayoutInflater-android.view.ViewGroup-android.os.Bundle-} +``` +public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| inflater | android.view.LayoutInflater | | +| container | android.view.ViewGroup | | +| savedInstanceState | android.os.Bundle | | + +**Returns:** +android.view.View +### onDestroy() {#onDestroy--} +``` +public void onDestroy() +``` + + + + +### onDestroyOptionsMenu() {#onDestroyOptionsMenu--} +``` +public void onDestroyOptionsMenu() +``` + + + + +### onDestroyView() {#onDestroyView--} +``` +public void onDestroyView() +``` + + + + +### onDetach() {#onDetach--} +``` +public void onDetach() +``` + + + + +### onGetLayoutInflater(Bundle arg0) {#onGetLayoutInflater-android.os.Bundle-} +``` +public LayoutInflater onGetLayoutInflater(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +**Returns:** +android.view.LayoutInflater +### onHiddenChanged(boolean arg0) {#onHiddenChanged-boolean-} +``` +public void onHiddenChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onInflate(Activity arg0, AttributeSet arg1, Bundle arg2) {#onInflate-android.app.Activity-android.util.AttributeSet-android.os.Bundle-} +``` +public void onInflate(Activity arg0, AttributeSet arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | +| arg1 | android.util.AttributeSet | | +| arg2 | android.os.Bundle | | + +### onInflate(Context arg0, AttributeSet arg1, Bundle arg2) {#onInflate-android.content.Context-android.util.AttributeSet-android.os.Bundle-} +``` +public void onInflate(Context arg0, AttributeSet arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | android.util.AttributeSet | | +| arg2 | android.os.Bundle | | + +### onLowMemory() {#onLowMemory--} +``` +public void onLowMemory() +``` + + + + +### onMultiWindowModeChanged(boolean arg0) {#onMultiWindowModeChanged-boolean-} +``` +public void onMultiWindowModeChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onOptionsItemSelected(MenuItem arg0) {#onOptionsItemSelected-android.view.MenuItem-} +``` +public boolean onOptionsItemSelected(MenuItem arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MenuItem | | + +**Returns:** +boolean +### onOptionsMenuClosed(Menu arg0) {#onOptionsMenuClosed-android.view.Menu-} +``` +public void onOptionsMenuClosed(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +### onPause() {#onPause--} +``` +public void onPause() +``` + + + + +### onPictureInPictureModeChanged(boolean arg0) {#onPictureInPictureModeChanged-boolean-} +``` +public void onPictureInPictureModeChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onPrepareOptionsMenu(Menu arg0) {#onPrepareOptionsMenu-android.view.Menu-} +``` +public void onPrepareOptionsMenu(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +### onPrimaryNavigationFragmentChanged(boolean arg0) {#onPrimaryNavigationFragmentChanged-boolean-} +``` +public void onPrimaryNavigationFragmentChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2) {#onRequestPermissionsResult-int-java.lang.String---int---} +``` +public void onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.String[] | | +| arg2 | int[] | | + +### onResume() {#onResume--} +``` +public void onResume() +``` + + + + +### onSaveInstanceState(Bundle arg0) {#onSaveInstanceState-android.os.Bundle-} +``` +public void onSaveInstanceState(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### onStart() {#onStart--} +``` +public void onStart() +``` + + + + +### onStop() {#onStop--} +``` +public void onStop() +``` + + + + +### onViewCreated(View view, Bundle savedInstanceState) {#onViewCreated-android.view.View-android.os.Bundle-} +``` +public void onViewCreated(View view, Bundle savedInstanceState) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| vue | android.view.View | | +| savedInstanceState | android.os.Bundle | | + +### onViewStateRestored(Bundle arg0) {#onViewStateRestored-android.os.Bundle-} +``` +public void onViewStateRestored(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### postponeEnterTransition() {#postponeEnterTransition--} +``` +public void postponeEnterTransition() +``` + + + + +### postponeEnterTransition(long arg0, TimeUnit arg1) {#postponeEnterTransition-long-java.util.concurrent.TimeUnit-} +``` +public final void postponeEnterTransition(long arg0, TimeUnit arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | java.util.concurrent.TimeUnit | | + +### registerForContextMenu(View arg0) {#registerForContextMenu-android.view.View-} +``` +public void registerForContextMenu(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### requestPermissions(String[] arg0, int arg1) {#requestPermissions-java.lang.String---int-} +``` +public final void requestPermissions(String[] arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String[] | | +| arg1 | int | | + +### requireActivity() {#requireActivity--} +``` +public final FragmentActivity requireActivity() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentActivity +### requireArguments() {#requireArguments--} +``` +public final Bundle requireArguments() +``` + + + + +**Returns:** +android.os.Bundle +### requireContext() {#requireContext--} +``` +public final Context requireContext() +``` + + + + +**Returns:** +android.content.Context +### requireFragmentManager() {#requireFragmentManager--} +``` +public final FragmentManager requireFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### requireHost() {#requireHost--} +``` +public final Object requireHost() +``` + + + + +**Returns:** +java.lang.Object +### requireParentFragment() {#requireParentFragment--} +``` +public final Fragment requireParentFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### requireView() {#requireView--} +``` +public final View requireView() +``` + + + + +**Returns:** +android.view.View +### setAllowEnterTransitionOverlap(boolean arg0) {#setAllowEnterTransitionOverlap-boolean-} +``` +public void setAllowEnterTransitionOverlap(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAllowReturnTransitionOverlap(boolean arg0) {#setAllowReturnTransitionOverlap-boolean-} +``` +public void setAllowReturnTransitionOverlap(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setArguments(Bundle arg0) {#setArguments-android.os.Bundle-} +``` +public void setArguments(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### setEnterSharedElementCallback(SharedElementCallback arg0) {#setEnterSharedElementCallback-androidx.core.app.SharedElementCallback-} +``` +public void setEnterSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.SharedElementCallback | | + +### setEnterTransition(Object arg0) {#setEnterTransition-java.lang.Object-} +``` +public void setEnterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setExitSharedElementCallback(SharedElementCallback arg0) {#setExitSharedElementCallback-androidx.core.app.SharedElementCallback-} +``` +public void setExitSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.SharedElementCallback | | + +### setExitTransition(Object arg0) {#setExitTransition-java.lang.Object-} +``` +public void setExitTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setHasOptionsMenu(boolean arg0) {#setHasOptionsMenu-boolean-} +``` +public void setHasOptionsMenu(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setInitialSavedState(Fragment.SavedState arg0) {#setInitialSavedState-androidx.fragment.app.Fragment.SavedState-} +``` +public void setInitialSavedState(Fragment.SavedState arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment.SavedState | | + +### setMenuVisibility(boolean arg0) {#setMenuVisibility-boolean-} +``` +public void setMenuVisibility(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setReenterTransition(Object arg0) {#setReenterTransition-java.lang.Object-} +``` +public void setReenterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setRetainInstance(boolean arg0) {#setRetainInstance-boolean-} +``` +public void setRetainInstance(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setReturnTransition(Object arg0) {#setReturnTransition-java.lang.Object-} +``` +public void setReturnTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setSharedElementEnterTransition(Object arg0) {#setSharedElementEnterTransition-java.lang.Object-} +``` +public void setSharedElementEnterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setSharedElementReturnTransition(Object arg0) {#setSharedElementReturnTransition-java.lang.Object-} +``` +public void setSharedElementReturnTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setTargetFragment(Fragment arg0, int arg1) {#setTargetFragment-androidx.fragment.app.Fragment-int-} +``` +public void setTargetFragment(Fragment arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | +| arg1 | int | | + +### setUserVisibleHint(boolean arg0) {#setUserVisibleHint-boolean-} +``` +public void setUserVisibleHint(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### shouldShowRequestPermissionRationale(String arg0) {#shouldShowRequestPermissionRationale-java.lang.String-} +``` +public boolean shouldShowRequestPermissionRationale(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +boolean +### startActivity(Intent arg0) {#startActivity-android.content.Intent-} +``` +public void startActivity(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +### startActivity(Intent arg0, Bundle arg1) {#startActivity-android.content.Intent-android.os.Bundle-} +``` +public void startActivity(Intent arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.Bundle | | + +### startActivityForResult(Intent arg0, int arg1) {#startActivityForResult-android.content.Intent-int-} +``` +public void startActivityForResult(Intent arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | + +### startActivityForResult(Intent arg0, int arg1, Bundle arg2) {#startActivityForResult-android.content.Intent-int-android.os.Bundle-} +``` +public void startActivityForResult(Intent arg0, int arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | +| arg2 | android.os.Bundle | | + +### startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6) {#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-} +``` +public void startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.IntentSender | | +| arg1 | int | | +| arg2 | android.content.Intent | | +| arg3 | int | | +| arg4 | int | | +| arg5 | int | | +| arg6 | android.os.Bundle | | + +### startPostponedEnterTransition() {#startPostponedEnterTransition--} +``` +public void startPostponedEnterTransition() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### unregisterForContextMenu(View arg0) {#unregisterForContextMenu-android.view.View-} +``` +public void unregisterForContextMenu(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/cameraprocessingfragmentsettings/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/cameraprocessingfragmentsettings/_index.md new file mode 100644 index 000000000..a11f194af --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/cameraprocessingfragmentsettings/_index.md @@ -0,0 +1,364 @@ +--- +title: CameraProcessingFragmentSettings +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres pour CameraProcessingFragment +type: docs +weight: 20 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/cameraprocessingfragmentsettings/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +android.os.Parcelable +``` +public class CameraProcessingFragmentSettings implements Parcelable +``` + +Paramètres pour CameraProcessingFragment +## Champs + +| Champ | Description | +| --- | --- | +| [CREATOR](#CREATOR) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [describeContents()](#describeContents--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getCameraProcessingMode()](#getCameraProcessingMode--) | Obtient le mode d'utilisation de la caméra. | +| [getCameraResolution()](#getCameraResolution--) | Obtient la résolution actuelle de la caméra. La valeur par défaut est la résolution minimale. | +| [getClass()](#getClass--) | | +| [getPreferencesButtonContentDescriptionText()](#getPreferencesButtonContentDescriptionText--) | Obtient le ContentDescriptionText de PreferencesButtonContent | +| [getRecognitionAreaSettings()](#getRecognitionAreaSettings--) | Obtient le paramètre lié au marqueur de zone de reconnaissance | +| [getRecognitionButtonContentDescriptionText()](#getRecognitionButtonContentDescriptionText--) | Obtient le ContentDescriptionText de RecognitionButton | +| [getRecognizeButtonSize()](#getRecognizeButtonSize--) | Obtient la taille de RecognizeButton | +| [getScannerPreferencesButtonSize()](#getScannerPreferencesButtonSize--) | Obtient la taille de PreferencesButton | +| [hashCode()](#hashCode--) | | +| [isFlashEnabled()](#isFlashEnabled--) | Renvoie true si le flash est activé. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setCameraProcessingMode(CameraMode cameraProcessingMode)](#setCameraProcessingMode-com.aspose.barcode.component.barcodescanner.CameraMode-) | TODO Ajouter aux propriétés ? Définit le mode d'utilisation de la caméra. | +| [setCameraResolution(Size cameraResolution)](#setCameraResolution-android.util.Size-) | Définit la résolution de la caméra. La valeur par défaut est la résolution minimale. | +| [setFlashEnabled(boolean flashEnabled)](#setFlashEnabled-boolean-) | Active le flash. Convient uniquement avec CameraMode.PHOTO. La valeur par défaut est true. | +| [setPreferencesButtonContentDescriptionText(String preferencesButtonContentDescriptionText)](#setPreferencesButtonContentDescriptionText-java.lang.String-) | Définit le ContentDescriptionText de PreferencesButtonContent | +| [setRecognitionAreaSettings(RecognitionAreaSettings recognitionAreaSettings)](#setRecognitionAreaSettings-com.aspose.barcode.component.barcodescanner.RecognitionAreaSettings-) | Définit le paramètre lié au marqueur de zone de reconnaissance | +| [setRecognitionButtonContentDescriptionText(String recognitionButtonContentDescriptionText)](#setRecognitionButtonContentDescriptionText-java.lang.String-) | Définit le ContentDescriptionText de RecognitionButton | +| [setRecognizeButtonSize(int recognizeImageButtonSize)](#setRecognizeButtonSize-int-) | Définit la taille de RecognizeButton | +| [setScannerPreferencesButtonSize(int scannerPreferencesButtonSize)](#setScannerPreferencesButtonSize-int-) | Définit la taille de PreferencesButton | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [writeToParcel(Parcel parcel, int i)](#writeToParcel-android.os.Parcel-int-) | | +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### describeContents() {#describeContents--} +``` +public int describeContents() +``` + + + + +**Returns:** +int +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getCameraProcessingMode() {#getCameraProcessingMode--} +``` +public CameraMode getCameraProcessingMode() +``` + + +Obtient le mode d'utilisation de la caméra. Actuellement, deux modes sont pris en charge = PHOTO et SNAPSHOT + +**Returns:** +[CameraMode](../../com.aspose.barcode.component.barcodescanner/cameramode) - mode of camera usage +### getCameraResolution() {#getCameraResolution--} +``` +public Size getCameraResolution() +``` + + +Obtient la résolution actuelle de la caméra. La valeur par défaut est la résolution minimale. + +**Returns:** +android.util.Size - +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getPreferencesButtonContentDescriptionText() {#getPreferencesButtonContentDescriptionText--} +``` +public String getPreferencesButtonContentDescriptionText() +``` + + +Obtient le ContentDescriptionText de PreferencesButtonContent + +**Returns:** +java.lang.String - Texte de description du contenu de PreferencesButtonContent +### getRecognitionAreaSettings() {#getRecognitionAreaSettings--} +``` +public RecognitionAreaSettings getRecognitionAreaSettings() +``` + + +Obtient le paramètre lié au marqueur de zone de reconnaissance + +**Returns:** +com.aspose.barcode.component.barcodescanner.RecognitionAreaSettings +### getRecognitionButtonContentDescriptionText() {#getRecognitionButtonContentDescriptionText--} +``` +public String getRecognitionButtonContentDescriptionText() +``` + + +Obtient le ContentDescriptionText de RecognitionButton + +**Returns:** +java.lang.String - Texte de description du contenu de RecognitionButton +### getRecognizeButtonSize() {#getRecognizeButtonSize--} +``` +public int getRecognizeButtonSize() +``` + + +Obtient la taille de RecognizeButton + +**Returns:** +int - taille de RecognizeButton +### getScannerPreferencesButtonSize() {#getScannerPreferencesButtonSize--} +``` +public int getScannerPreferencesButtonSize() +``` + + +Obtient la taille de PreferencesButton + +**Returns:** +int - taille de PreferencesButton +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isFlashEnabled() {#isFlashEnabled--} +``` +public boolean isFlashEnabled() +``` + + +Renvoie vrai si le flash est activé. Convient uniquement avec CameraMode.PHOTO. La valeur par défaut est vraie + +**Returns:** +boolean - +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setCameraProcessingMode(CameraMode cameraProcessingMode) {#setCameraProcessingMode-com.aspose.barcode.component.barcodescanner.CameraMode-} +``` +public void setCameraProcessingMode(CameraMode cameraProcessingMode) +``` + + +TODO Ajouter aux propriétés ? Définit le mode d'utilisation de la caméra. Actuellement, deux modes sont pris en charge = PHOTO et SNAPSHOT + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cameraProcessingMode | [CameraMode](../../com.aspose.barcode.component.barcodescanner/cameramode) | | + +### setCameraResolution(Size cameraResolution) {#setCameraResolution-android.util.Size-} +``` +public void setCameraResolution(Size cameraResolution) +``` + + +Définit la résolution de la caméra. La valeur par défaut est la résolution minimale. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cameraResolution | android.util.Size | | + +### setFlashEnabled(boolean flashEnabled) {#setFlashEnabled-boolean-} +``` +public void setFlashEnabled(boolean flashEnabled) +``` + + +Active le flash. Convient uniquement avec CameraMode.PHOTO. La valeur par défaut est true. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flashEnabled | boolean | | + +### setPreferencesButtonContentDescriptionText(String preferencesButtonContentDescriptionText) {#setPreferencesButtonContentDescriptionText-java.lang.String-} +``` +public void setPreferencesButtonContentDescriptionText(String preferencesButtonContentDescriptionText) +``` + + +Définit le ContentDescriptionText de PreferencesButtonContent + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| preferencesButtonContentDescriptionText | java.lang.String | Texte de description du contenu de PreferencesButtonContent | + +### setRecognitionAreaSettings(RecognitionAreaSettings recognitionAreaSettings) {#setRecognitionAreaSettings-com.aspose.barcode.component.barcodescanner.RecognitionAreaSettings-} +``` +public void setRecognitionAreaSettings(RecognitionAreaSettings recognitionAreaSettings) +``` + + +Définit le paramètre lié au marqueur de zone de reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionAreaSettings | com.aspose.barcode.component.barcodescanner.RecognitionAreaSettings | | + +### setRecognitionButtonContentDescriptionText(String recognitionButtonContentDescriptionText) {#setRecognitionButtonContentDescriptionText-java.lang.String-} +``` +public void setRecognitionButtonContentDescriptionText(String recognitionButtonContentDescriptionText) +``` + + +Définit le ContentDescriptionText de RecognitionButton + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionButtonContentDescriptionText | java.lang.String | Texte de description du contenu de RecognitionButton | + +### setRecognizeButtonSize(int recognizeImageButtonSize) {#setRecognizeButtonSize-int-} +``` +public void setRecognizeButtonSize(int recognizeImageButtonSize) +``` + + +Définit la taille de RecognizeButton + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognizeImageButtonSize | int | taille de RecognizeButton | + +### setScannerPreferencesButtonSize(int scannerPreferencesButtonSize) {#setScannerPreferencesButtonSize-int-} +``` +public void setScannerPreferencesButtonSize(int scannerPreferencesButtonSize) +``` + + +Définit la taille de PreferencesButton + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| scannerPreferencesButtonSize | int | taille de PreferencesButton | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### writeToParcel(Parcel parcel, int i) {#writeToParcel-android.os.Parcel-int-} +``` +public void writeToParcel(Parcel parcel, int i) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parcel | android.os.Parcel | | +| i | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/onbarcodescannercompletedcallback/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/onbarcodescannercompletedcallback/_index.md new file mode 100644 index 000000000..f93627c13 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/onbarcodescannercompletedcallback/_index.md @@ -0,0 +1,30 @@ +--- +title: OnBarcodeScannerCompletedCallback +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Définition d'interface pour un rappel qui sera invoqué lorsqu'un processus de numérisation est terminé. +type: docs +weight: 30 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/onbarcodescannercompletedcallback/ +---``` +public interface OnBarcodeScannerCompletedCallback +``` + +Interface definition for a callback to be invoked when a scan process is finished. +## Methods + +| Method | Description | +| --- | --- | +| [onScanFinished(BarcodeRecognitionResultsHandlerParcelable barcodeRecognitionResult)](#onScanFinished-com.aspose.barcode.component.barcodescanner.BarcodeRecognitionResultsHandlerParcelable-) | | +### onScanFinished(BarcodeRecognitionResultsHandlerParcelable barcodeRecognitionResult) {#onScanFinished-com.aspose.barcode.component.barcodescanner.BarcodeRecognitionResultsHandlerParcelable-} +``` +public abstract void onScanFinished(BarcodeRecognitionResultsHandlerParcelable barcodeRecognitionResult) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| barcodeRecognitionResult | com.aspose.barcode.component.barcodescanner.BarcodeRecognitionResultsHandlerParcelable | Custom class extended from RecognitionResultsHandler. Contains a data that will returned from recognition activity after finishing the recognition of scanned image. These data will be obtained and processed according the implementation of BarcodeRecognitionResultHandlerParcelable interface. | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/onrecognitionpreferenceschangedlistener/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/onrecognitionpreferenceschangedlistener/_index.md new file mode 100644 index 000000000..356aeabd0 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/onrecognitionpreferenceschangedlistener/_index.md @@ -0,0 +1,23 @@ +--- +title: OnRecognitionPreferencesChangedListener +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 31 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/onrecognitionpreferenceschangedlistener/ +---``` +public interface OnRecognitionPreferencesChangedListener +``` +## Methods + +| Method | Description | +| --- | --- | +| [onChanged()](#onChanged--) | | +### onChanged() {#onChanged--} +``` +public abstract void onChanged() +``` + + + + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionareasettings/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionareasettings/_index.md new file mode 100644 index 000000000..310856d7e --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionareasettings/_index.md @@ -0,0 +1,551 @@ +--- +title: RecognitionAreaSettings +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 21 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/recognitionareasettings/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +android.os.Parcelable +``` +public class RecognitionAreaSettings implements Parcelable +``` +## Champs + +| Champ | Description | +| --- | --- | +| [CREATOR](#CREATOR) | | +| [DEFAULT_1D_RECOGNITION_AREA_SETTINGS](#DEFAULT-1D-RECOGNITION-AREA-SETTINGS) | | +| [DEFAULT_2D_RECOGNITION_AREA_SETTINGS](#DEFAULT-2D-RECOGNITION-AREA-SETTINGS) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [describeContents()](#describeContents--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFrameColor()](#getFrameColor--) | Obtient la couleur de peinture du cadre du scanner de code-barres | +| [getMaxAreaHeight()](#getMaxAreaHeight--) | Obtient la hauteur maximale de la zone de reconnaissance | +| [getMaxAreaWidth()](#getMaxAreaWidth--) | Obtient la largeur maximale de la zone de reconnaissance | +| [getOneDAreaBarcodeLineStyle()](#getOneDAreaBarcodeLineStyle--) | Obtient le style de la ligne de la zone de code-barres 1D | +| [getOneDLineColor()](#getOneDLineColor--) | Obtient la couleur du marqueur de reconnaissance 1D | +| [getOneDLineWidth()](#getOneDLineWidth--) | Obtient la largeur de la ligne de bordure de la zone 1D | +| [getRecognitionAreaColor()](#getRecognitionAreaColor--) | Obtient la couleur de peinture de la zone de reconnaissance de code-barres | +| [getTopOffset()](#getTopOffset--) | Obtient le décalage de la zone de reconnaissance depuis le haut de l'écran TODO en pourcentages | +| [getTwoDAreaBarcodeLineStyle()](#getTwoDAreaBarcodeLineStyle--) | Obtient le style de la ligne de la zone de code-barres 2D | +| [getTwoDAreaCornerRadius()](#getTwoDAreaCornerRadius--) | Renvoie le rayon des coins arrondis | +| [getTwoDAreaStyle()](#getTwoDAreaStyle--) | Obtient le style de la bordure de la zone de code-barres 2D | +| [getTwoDLineColor()](#getTwoDLineColor--) | Obtient la couleur du marqueur de reconnaissance 2D | +| [getTwoDLineWidth()](#getTwoDLineWidth--) | Obtient la largeur de la ligne de bordure de la zone 2D | +| [getWidthHeightAreaRatio()](#getWidthHeightAreaRatio--) | Obtient le rapport entre la largeur et la hauteur de la zone de reconnaissance | +| [hashCode()](#hashCode--) | | +| [isRecognizeOnlyInRecognitionArea()](#isRecognizeOnlyInRecognitionArea--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setFrameColor(int frameColor)](#setFrameColor-int-) | définit la couleur de peinture du cadre du scanner de code-barres | +| [setMaxAreaHeight(float maxAreaHeight)](#setMaxAreaHeight-float-) | Définit la hauteur maximale de la zone de reconnaissance | +| [setMaxAreaWidth(float maxAreaWidth)](#setMaxAreaWidth-float-) | Définit la largeur maximale de la zone de reconnaissance | +| [setOneDAreaBarcodeLineStyle(BarcodeAreaLineStyle oneDAreaBarcodeLineStyle)](#setOneDAreaBarcodeLineStyle-com.aspose.barcode.component.barcodescanner.recognitionareaview.BarcodeAreaLineStyle-) | Définit le style de la ligne de la zone de code-barres 1D | +| [setOneDLineColor(int oneDLineColor)](#setOneDLineColor-int-) | Définit la couleur du marqueur de reconnaissance 1D | +| [setOneDLineWidth(float oneDLineWidth)](#setOneDLineWidth-float-) | Définit la largeur de la ligne de bordure de la zone 1D | +| [setRecognitionAreaColor(int recognitionAreaColor)](#setRecognitionAreaColor-int-) | Définit la couleur de peinture de la zone de reconnaissance du code-barres | +| [setRecognizeOnlyInRecognitionArea(boolean recognizeOnlyInRecognitionArea)](#setRecognizeOnlyInRecognitionArea-boolean-) | | +| [setTopOffset(float topOffset)](#setTopOffset-float-) | Définit le décalage de la zone de reconnaissance depuis le haut de l'écran | +| [setTwoDAreaBarcodeLineStyle(BarcodeAreaLineStyle twoDAreaBarcodeLineStyle)](#setTwoDAreaBarcodeLineStyle-com.aspose.barcode.component.barcodescanner.recognitionareaview.BarcodeAreaLineStyle-) | Définit le style de la ligne de la zone de code-barres 2D | +| [setTwoDAreaCornerRadius(float twoDAreaCornerRadius)](#setTwoDAreaCornerRadius-float-) | Renvoie le rayon des coins arrondis | +| [setTwoDAreaStyle(TwoDAreaStyle twoDAreaStyle)](#setTwoDAreaStyle-com.aspose.barcode.component.barcodescanner.recognitionareaview.TwoDAreaStyle-) | Définit le style de la bordure de la zone de code-barres 2D | +| [setTwoDLineColor(int twoDLineColor)](#setTwoDLineColor-int-) | Définit la couleur du marqueur de reconnaissance 1D | +| [setTwoDLineWidth(float twoDLineWidth)](#setTwoDLineWidth-float-) | Définit la largeur de la ligne de bordure de la zone 2D | +| [setWidthHeightAreaRatio(float areaRatio)](#setWidthHeightAreaRatio-float-) | Définit le ratio entre la largeur et la hauteur de la zone de reconnaissance | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [writeToParcel(Parcel dest, int flags)](#writeToParcel-android.os.Parcel-int-) | | +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### DEFAULT_1D_RECOGNITION_AREA_SETTINGS {#DEFAULT-1D-RECOGNITION-AREA-SETTINGS} +``` +public static final RecognitionAreaSettings DEFAULT_1D_RECOGNITION_AREA_SETTINGS +``` + + +### DEFAULT_2D_RECOGNITION_AREA_SETTINGS {#DEFAULT-2D-RECOGNITION-AREA-SETTINGS} +``` +public static final RecognitionAreaSettings DEFAULT_2D_RECOGNITION_AREA_SETTINGS +``` + + +### describeContents() {#describeContents--} +``` +public int describeContents() +``` + + + + +**Returns:** +int +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFrameColor() {#getFrameColor--} +``` +public int getFrameColor() +``` + + +Obtient la couleur de peinture du cadre du scanner de code-barres + +**Returns:** +int - +### getMaxAreaHeight() {#getMaxAreaHeight--} +``` +public float getMaxAreaHeight() +``` + + +Obtient la hauteur maximale de la zone de reconnaissance + +**Returns:** +float - la hauteur maximale de la zone de reconnaissance +### getMaxAreaWidth() {#getMaxAreaWidth--} +``` +public float getMaxAreaWidth() +``` + + +Obtient la largeur maximale de la zone de reconnaissance + +**Returns:** +float - la largeur maximale de la zone de reconnaissance +### getOneDAreaBarcodeLineStyle() {#getOneDAreaBarcodeLineStyle--} +``` +public BarcodeAreaLineStyle getOneDAreaBarcodeLineStyle() +``` + + +Obtient le style de la ligne de la zone de code-barres 1D + +**Returns:** +[BarcodeAreaLineStyle](../../com.aspose.barcode.component.barcodescanner.recognitionareaview/barcodearealinestyle) - style of 1D BarcodeArea line +### getOneDLineColor() {#getOneDLineColor--} +``` +public int getOneDLineColor() +``` + + +Obtient la couleur du marqueur de reconnaissance 1D + +**Returns:** +int - la couleur du marqueur de reconnaissance 1D +### getOneDLineWidth() {#getOneDLineWidth--} +``` +public float getOneDLineWidth() +``` + + +Obtient la largeur de la ligne de bordure de la zone 1D + +**Returns:** +float - la largeur de la ligne de bordure de la zone 1D +### getRecognitionAreaColor() {#getRecognitionAreaColor--} +``` +public int getRecognitionAreaColor() +``` + + +Obtient la couleur de peinture de la zone de reconnaissance de code-barres + +**Returns:** +int - +### getTopOffset() {#getTopOffset--} +``` +public float getTopOffset() +``` + + +Obtient le décalage de la zone de reconnaissance depuis le haut de l'écran TODO en pourcentages + +**Returns:** +float - le décalage de la zone de reconnaissance depuis le haut de l'écran +### getTwoDAreaBarcodeLineStyle() {#getTwoDAreaBarcodeLineStyle--} +``` +public BarcodeAreaLineStyle getTwoDAreaBarcodeLineStyle() +``` + + +Obtient le style de la ligne de la zone de code-barres 2D + +**Returns:** +[BarcodeAreaLineStyle](../../com.aspose.barcode.component.barcodescanner.recognitionareaview/barcodearealinestyle) - style of 2D BarcodeArea line +### getTwoDAreaCornerRadius() {#getTwoDAreaCornerRadius--} +``` +public float getTwoDAreaCornerRadius() +``` + + +Renvoie le rayon des coins arrondis + +**Returns:** +float - rayon des coins arrondis +### getTwoDAreaStyle() {#getTwoDAreaStyle--} +``` +public TwoDAreaStyle getTwoDAreaStyle() +``` + + +Obtient le style de la bordure de la zone de code-barres 2D + +**Returns:** +com.aspose.barcode.component.barcodescanner.recognitionareaview.TwoDAreaStyle - style de la bordure de la zone de code-barres 2D +### getTwoDLineColor() {#getTwoDLineColor--} +``` +public int getTwoDLineColor() +``` + + +Obtient la couleur du marqueur de reconnaissance 2D + +**Returns:** +int - la couleur du marqueur de reconnaissance 1D +### getTwoDLineWidth() {#getTwoDLineWidth--} +``` +public float getTwoDLineWidth() +``` + + +Obtient la largeur de la ligne de bordure de la zone 2D + +**Returns:** +float - la largeur de la ligne de bordure de la zone 2D +### getWidthHeightAreaRatio() {#getWidthHeightAreaRatio--} +``` +public float getWidthHeightAreaRatio() +``` + + +Obtient le rapport entre la largeur et la hauteur de la zone de reconnaissance + +**Returns:** +float - ratio entre la largeur et la hauteur de la zone de reconnaissance +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isRecognizeOnlyInRecognitionArea() {#isRecognizeOnlyInRecognitionArea--} +``` +public boolean isRecognizeOnlyInRecognitionArea() +``` + + + + +**Returns:** +boolean - visibilité de la zone de reconnaissance +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setFrameColor(int frameColor) {#setFrameColor-int-} +``` +public void setFrameColor(int frameColor) +``` + + +définit la couleur de peinture du cadre du scanner de code-barres + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| frameColor | int | | + +### setMaxAreaHeight(float maxAreaHeight) {#setMaxAreaHeight-float-} +``` +public void setMaxAreaHeight(float maxAreaHeight) +``` + + +Définit la hauteur maximale de la zone de reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| maxAreaHeight | float | la hauteur maximale de la zone de reconnaissance | + +### setMaxAreaWidth(float maxAreaWidth) {#setMaxAreaWidth-float-} +``` +public void setMaxAreaWidth(float maxAreaWidth) +``` + + +Définit la largeur maximale de la zone de reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| maxAreaWidth | float | la largeur maximale de la zone de reconnaissance | + +### setOneDAreaBarcodeLineStyle(BarcodeAreaLineStyle oneDAreaBarcodeLineStyle) {#setOneDAreaBarcodeLineStyle-com.aspose.barcode.component.barcodescanner.recognitionareaview.BarcodeAreaLineStyle-} +``` +public void setOneDAreaBarcodeLineStyle(BarcodeAreaLineStyle oneDAreaBarcodeLineStyle) +``` + + +Définit le style de la ligne de la zone de code-barres 1D + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| oneDAreaBarcodeLineStyle | [BarcodeAreaLineStyle](../../com.aspose.barcode.component.barcodescanner.recognitionareaview/barcodearealinestyle) | style de la ligne de la zone de code-barres 1D | + +### setOneDLineColor(int oneDLineColor) {#setOneDLineColor-int-} +``` +public void setOneDLineColor(int oneDLineColor) +``` + + +Définit la couleur du marqueur de reconnaissance 1D + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| oneDLineColor | int | la couleur du marqueur de reconnaissance 1D | + +### setOneDLineWidth(float oneDLineWidth) {#setOneDLineWidth-float-} +``` +public void setOneDLineWidth(float oneDLineWidth) +``` + + +Définit la largeur de la ligne de bordure de la zone 1D + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| oneDLineWidth | float | la largeur de la ligne de bordure de la zone 1D | + +### setRecognitionAreaColor(int recognitionAreaColor) {#setRecognitionAreaColor-int-} +``` +public void setRecognitionAreaColor(int recognitionAreaColor) +``` + + +Définit la couleur de peinture de la zone de reconnaissance du code-barres + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionAreaColor | int | couleur de la zone de reconnaissance du code-barres. Si la couleur n'est pas transparente, la zone de reconnaissance du code-barres ne sera pas transparente | + +### setRecognizeOnlyInRecognitionArea(boolean recognizeOnlyInRecognitionArea) {#setRecognizeOnlyInRecognitionArea-boolean-} +``` +public void setRecognizeOnlyInRecognitionArea(boolean recognizeOnlyInRecognitionArea) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognizeOnlyInRecognitionArea | boolean | Visibilité de la zone de reconnaissance | + +### setTopOffset(float topOffset) {#setTopOffset-float-} +``` +public void setTopOffset(float topOffset) +``` + + +Définit le décalage de la zone de reconnaissance depuis le haut de l'écran + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| topOffset | float | le décalage de la zone de reconnaissance depuis le haut de l'écran | + +### setTwoDAreaBarcodeLineStyle(BarcodeAreaLineStyle twoDAreaBarcodeLineStyle) {#setTwoDAreaBarcodeLineStyle-com.aspose.barcode.component.barcodescanner.recognitionareaview.BarcodeAreaLineStyle-} +``` +public void setTwoDAreaBarcodeLineStyle(BarcodeAreaLineStyle twoDAreaBarcodeLineStyle) +``` + + +Définit le style de la ligne de la zone de code-barres 2D + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| twoDAreaBarcodeLineStyle | [BarcodeAreaLineStyle](../../com.aspose.barcode.component.barcodescanner.recognitionareaview/barcodearealinestyle) | style de la ligne de la zone de code-barres 2D | + +### setTwoDAreaCornerRadius(float twoDAreaCornerRadius) {#setTwoDAreaCornerRadius-float-} +``` +public void setTwoDAreaCornerRadius(float twoDAreaCornerRadius) +``` + + +Renvoie le rayon des coins arrondis + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| twoDAreaCornerRadius | float | rayon des coins arrondis | + +### setTwoDAreaStyle(TwoDAreaStyle twoDAreaStyle) {#setTwoDAreaStyle-com.aspose.barcode.component.barcodescanner.recognitionareaview.TwoDAreaStyle-} +``` +public void setTwoDAreaStyle(TwoDAreaStyle twoDAreaStyle) +``` + + +Définit le style de la bordure de la zone de code-barres 2D + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| twoDAreaStyle | com.aspose.barcode.component.barcodescanner.recognitionareaview.TwoDAreaStyle | style de la bordure de la zone de code-barres 2D | + +### setTwoDLineColor(int twoDLineColor) {#setTwoDLineColor-int-} +``` +public void setTwoDLineColor(int twoDLineColor) +``` + + +Définit la couleur du marqueur de reconnaissance 1D + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| twoDLineColor | int | la couleur du marqueur de reconnaissance 1D | + +### setTwoDLineWidth(float twoDLineWidth) {#setTwoDLineWidth-float-} +``` +public void setTwoDLineWidth(float twoDLineWidth) +``` + + +Définit la largeur de la ligne de bordure de la zone 2D + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| twoDLineWidth | float | la largeur de la ligne de bordure de la zone 2D | + +### setWidthHeightAreaRatio(float areaRatio) {#setWidthHeightAreaRatio-float-} +``` +public void setWidthHeightAreaRatio(float areaRatio) +``` + + +Définit le ratio entre la largeur et la hauteur de la zone de reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| areaRatio | float | ratio entre la largeur et la hauteur de la zone de reconnaissance | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### writeToParcel(Parcel dest, int flags) {#writeToParcel-android.os.Parcel-int-} +``` +public void writeToParcel(Parcel dest, int flags) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dest | android.os.Parcel | | +| flags | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionareaview/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionareaview/_index.md new file mode 100644 index 000000000..1376593e7 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionareaview/_index.md @@ -0,0 +1,9543 @@ +--- +title: RecognitionAreaView +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 22 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/recognitionareaview/ +--- +**Inheritance:** +java.lang.Object, android.view.View, android.widget.ImageView, androidx.appcompat.widget.AppCompatImageView +``` +public class RecognitionAreaView extends AppCompatImageView +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [RecognitionAreaView(Context context)](#RecognitionAreaView-android.content.Context-) | | +| [RecognitionAreaView(Context context, AttributeSet attrs)](#RecognitionAreaView-android.content.Context-android.util.AttributeSet-) | | +| [RecognitionAreaView(Context context, AttributeSet attrs, int defStyleAttr)](#RecognitionAreaView-android.content.Context-android.util.AttributeSet-int-) | | +## Champs + +| Champ | Description | +| --- | --- | +| [ACCESSIBILITY_LIVE_REGION_ASSERTIVE](#ACCESSIBILITY-LIVE-REGION-ASSERTIVE) | | +| [ACCESSIBILITY_LIVE_REGION_NONE](#ACCESSIBILITY-LIVE-REGION-NONE) | | +| [ACCESSIBILITY_LIVE_REGION_POLITE](#ACCESSIBILITY-LIVE-REGION-POLITE) | | +| [ALPHA](#ALPHA) | | +| [AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS](#AUTOFILL-FLAG-INCLUDE-NOT-IMPORTANT-VIEWS) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DATE) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DAY) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-MONTH) | | +| [AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR](#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-YEAR) | | +| [AUTOFILL_HINT_CREDIT_CARD_NUMBER](#AUTOFILL-HINT-CREDIT-CARD-NUMBER) | | +| [AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE](#AUTOFILL-HINT-CREDIT-CARD-SECURITY-CODE) | | +| [AUTOFILL_HINT_EMAIL_ADDRESS](#AUTOFILL-HINT-EMAIL-ADDRESS) | | +| [AUTOFILL_HINT_NAME](#AUTOFILL-HINT-NAME) | | +| [AUTOFILL_HINT_PASSWORD](#AUTOFILL-HINT-PASSWORD) | | +| [AUTOFILL_HINT_PHONE](#AUTOFILL-HINT-PHONE) | | +| [AUTOFILL_HINT_POSTAL_ADDRESS](#AUTOFILL-HINT-POSTAL-ADDRESS) | | +| [AUTOFILL_HINT_POSTAL_CODE](#AUTOFILL-HINT-POSTAL-CODE) | | +| [AUTOFILL_HINT_USERNAME](#AUTOFILL-HINT-USERNAME) | | +| [AUTOFILL_TYPE_DATE](#AUTOFILL-TYPE-DATE) | | +| [AUTOFILL_TYPE_LIST](#AUTOFILL-TYPE-LIST) | | +| [AUTOFILL_TYPE_NONE](#AUTOFILL-TYPE-NONE) | | +| [AUTOFILL_TYPE_TEXT](#AUTOFILL-TYPE-TEXT) | | +| [AUTOFILL_TYPE_TOGGLE](#AUTOFILL-TYPE-TOGGLE) | | +| [DRAG_FLAG_ACCESSIBILITY_ACTION](#DRAG-FLAG-ACCESSIBILITY-ACTION) | | +| [DRAG_FLAG_GLOBAL](#DRAG-FLAG-GLOBAL) | | +| [DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION](#DRAG-FLAG-GLOBAL-PERSISTABLE-URI-PERMISSION) | | +| [DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION](#DRAG-FLAG-GLOBAL-PREFIX-URI-PERMISSION) | | +| [DRAG_FLAG_GLOBAL_URI_READ](#DRAG-FLAG-GLOBAL-URI-READ) | | +| [DRAG_FLAG_GLOBAL_URI_WRITE](#DRAG-FLAG-GLOBAL-URI-WRITE) | | +| [DRAG_FLAG_OPAQUE](#DRAG-FLAG-OPAQUE) | | +| [DRAWING_CACHE_QUALITY_AUTO](#DRAWING-CACHE-QUALITY-AUTO) | | +| [DRAWING_CACHE_QUALITY_HIGH](#DRAWING-CACHE-QUALITY-HIGH) | | +| [DRAWING_CACHE_QUALITY_LOW](#DRAWING-CACHE-QUALITY-LOW) | | +| [FIND_VIEWS_WITH_CONTENT_DESCRIPTION](#FIND-VIEWS-WITH-CONTENT-DESCRIPTION) | | +| [FIND_VIEWS_WITH_TEXT](#FIND-VIEWS-WITH-TEXT) | | +| [FOCUSABLE](#FOCUSABLE) | | +| [FOCUSABLES_ALL](#FOCUSABLES-ALL) | | +| [FOCUSABLES_TOUCH_MODE](#FOCUSABLES-TOUCH-MODE) | | +| [FOCUSABLE_AUTO](#FOCUSABLE-AUTO) | | +| [FOCUS_BACKWARD](#FOCUS-BACKWARD) | | +| [FOCUS_DOWN](#FOCUS-DOWN) | | +| [FOCUS_FORWARD](#FOCUS-FORWARD) | | +| [FOCUS_LEFT](#FOCUS-LEFT) | | +| [FOCUS_RIGHT](#FOCUS-RIGHT) | | +| [FOCUS_UP](#FOCUS-UP) | | +| [GONE](#GONE) | | +| [HAPTIC_FEEDBACK_ENABLED](#HAPTIC-FEEDBACK-ENABLED) | | +| [IMPORTANT_FOR_ACCESSIBILITY_AUTO](#IMPORTANT-FOR-ACCESSIBILITY-AUTO) | | +| [IMPORTANT_FOR_ACCESSIBILITY_NO](#IMPORTANT-FOR-ACCESSIBILITY-NO) | | +| [IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS](#IMPORTANT-FOR-ACCESSIBILITY-NO-HIDE-DESCENDANTS) | | +| [IMPORTANT_FOR_ACCESSIBILITY_YES](#IMPORTANT-FOR-ACCESSIBILITY-YES) | | +| [IMPORTANT_FOR_AUTOFILL_AUTO](#IMPORTANT-FOR-AUTOFILL-AUTO) | | +| [IMPORTANT_FOR_AUTOFILL_NO](#IMPORTANT-FOR-AUTOFILL-NO) | | +| [IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-AUTOFILL-NO-EXCLUDE-DESCENDANTS) | | +| [IMPORTANT_FOR_AUTOFILL_YES](#IMPORTANT-FOR-AUTOFILL-YES) | | +| [IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-AUTOFILL-YES-EXCLUDE-DESCENDANTS) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_AUTO](#IMPORTANT-FOR-CONTENT-CAPTURE-AUTO) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_NO](#IMPORTANT-FOR-CONTENT-CAPTURE-NO) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-CONTENT-CAPTURE-NO-EXCLUDE-DESCENDANTS) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_YES](#IMPORTANT-FOR-CONTENT-CAPTURE-YES) | | +| [IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS](#IMPORTANT-FOR-CONTENT-CAPTURE-YES-EXCLUDE-DESCENDANTS) | | +| [INVISIBLE](#INVISIBLE) | | +| [KEEP_SCREEN_ON](#KEEP-SCREEN-ON) | | +| [LAYER_TYPE_HARDWARE](#LAYER-TYPE-HARDWARE) | | +| [LAYER_TYPE_NONE](#LAYER-TYPE-NONE) | | +| [LAYER_TYPE_SOFTWARE](#LAYER-TYPE-SOFTWARE) | | +| [LAYOUT_DIRECTION_INHERIT](#LAYOUT-DIRECTION-INHERIT) | | +| [LAYOUT_DIRECTION_LOCALE](#LAYOUT-DIRECTION-LOCALE) | | +| [LAYOUT_DIRECTION_LTR](#LAYOUT-DIRECTION-LTR) | | +| [LAYOUT_DIRECTION_RTL](#LAYOUT-DIRECTION-RTL) | | +| [MEASURED_HEIGHT_STATE_SHIFT](#MEASURED-HEIGHT-STATE-SHIFT) | | +| [MEASURED_SIZE_MASK](#MEASURED-SIZE-MASK) | | +| [MEASURED_STATE_MASK](#MEASURED-STATE-MASK) | | +| [MEASURED_STATE_TOO_SMALL](#MEASURED-STATE-TOO-SMALL) | | +| [NOT_FOCUSABLE](#NOT-FOCUSABLE) | | +| [NO_ID](#NO-ID) | | +| [OVER_SCROLL_ALWAYS](#OVER-SCROLL-ALWAYS) | | +| [OVER_SCROLL_IF_CONTENT_SCROLLS](#OVER-SCROLL-IF-CONTENT-SCROLLS) | | +| [OVER_SCROLL_NEVER](#OVER-SCROLL-NEVER) | | +| [ROTATION](#ROTATION) | | +| [ROTATION_X](#ROTATION-X) | | +| [ROTATION_Y](#ROTATION-Y) | | +| [SCALE_X](#SCALE-X) | | +| [SCALE_Y](#SCALE-Y) | | +| [SCREEN_STATE_OFF](#SCREEN-STATE-OFF) | | +| [SCREEN_STATE_ON](#SCREEN-STATE-ON) | | +| [SCROLLBARS_INSIDE_INSET](#SCROLLBARS-INSIDE-INSET) | | +| [SCROLLBARS_INSIDE_OVERLAY](#SCROLLBARS-INSIDE-OVERLAY) | | +| [SCROLLBARS_OUTSIDE_INSET](#SCROLLBARS-OUTSIDE-INSET) | | +| [SCROLLBARS_OUTSIDE_OVERLAY](#SCROLLBARS-OUTSIDE-OVERLAY) | | +| [SCROLLBAR_POSITION_DEFAULT](#SCROLLBAR-POSITION-DEFAULT) | | +| [SCROLLBAR_POSITION_LEFT](#SCROLLBAR-POSITION-LEFT) | | +| [SCROLLBAR_POSITION_RIGHT](#SCROLLBAR-POSITION-RIGHT) | | +| [SCROLL_AXIS_HORIZONTAL](#SCROLL-AXIS-HORIZONTAL) | | +| [SCROLL_AXIS_NONE](#SCROLL-AXIS-NONE) | | +| [SCROLL_AXIS_VERTICAL](#SCROLL-AXIS-VERTICAL) | | +| [SCROLL_CAPTURE_HINT_AUTO](#SCROLL-CAPTURE-HINT-AUTO) | | +| [SCROLL_CAPTURE_HINT_EXCLUDE](#SCROLL-CAPTURE-HINT-EXCLUDE) | | +| [SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS](#SCROLL-CAPTURE-HINT-EXCLUDE-DESCENDANTS) | | +| [SCROLL_CAPTURE_HINT_INCLUDE](#SCROLL-CAPTURE-HINT-INCLUDE) | | +| [SCROLL_INDICATOR_BOTTOM](#SCROLL-INDICATOR-BOTTOM) | | +| [SCROLL_INDICATOR_END](#SCROLL-INDICATOR-END) | | +| [SCROLL_INDICATOR_LEFT](#SCROLL-INDICATOR-LEFT) | | +| [SCROLL_INDICATOR_RIGHT](#SCROLL-INDICATOR-RIGHT) | | +| [SCROLL_INDICATOR_START](#SCROLL-INDICATOR-START) | | +| [SCROLL_INDICATOR_TOP](#SCROLL-INDICATOR-TOP) | | +| [SOUND_EFFECTS_ENABLED](#SOUND-EFFECTS-ENABLED) | | +| [STATUS_BAR_HIDDEN](#STATUS-BAR-HIDDEN) | | +| [STATUS_BAR_VISIBLE](#STATUS-BAR-VISIBLE) | | +| [SYSTEM_UI_FLAG_FULLSCREEN](#SYSTEM-UI-FLAG-FULLSCREEN) | | +| [SYSTEM_UI_FLAG_HIDE_NAVIGATION](#SYSTEM-UI-FLAG-HIDE-NAVIGATION) | | +| [SYSTEM_UI_FLAG_IMMERSIVE](#SYSTEM-UI-FLAG-IMMERSIVE) | | +| [SYSTEM_UI_FLAG_IMMERSIVE_STICKY](#SYSTEM-UI-FLAG-IMMERSIVE-STICKY) | | +| [SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN](#SYSTEM-UI-FLAG-LAYOUT-FULLSCREEN) | | +| [SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION](#SYSTEM-UI-FLAG-LAYOUT-HIDE-NAVIGATION) | | +| [SYSTEM_UI_FLAG_LAYOUT_STABLE](#SYSTEM-UI-FLAG-LAYOUT-STABLE) | | +| [SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR](#SYSTEM-UI-FLAG-LIGHT-NAVIGATION-BAR) | | +| [SYSTEM_UI_FLAG_LIGHT_STATUS_BAR](#SYSTEM-UI-FLAG-LIGHT-STATUS-BAR) | | +| [SYSTEM_UI_FLAG_LOW_PROFILE](#SYSTEM-UI-FLAG-LOW-PROFILE) | | +| [SYSTEM_UI_FLAG_VISIBLE](#SYSTEM-UI-FLAG-VISIBLE) | | +| [SYSTEM_UI_LAYOUT_FLAGS](#SYSTEM-UI-LAYOUT-FLAGS) | | +| [TEXT_ALIGNMENT_CENTER](#TEXT-ALIGNMENT-CENTER) | | +| [TEXT_ALIGNMENT_GRAVITY](#TEXT-ALIGNMENT-GRAVITY) | | +| [TEXT_ALIGNMENT_INHERIT](#TEXT-ALIGNMENT-INHERIT) | | +| [TEXT_ALIGNMENT_TEXT_END](#TEXT-ALIGNMENT-TEXT-END) | | +| [TEXT_ALIGNMENT_TEXT_START](#TEXT-ALIGNMENT-TEXT-START) | | +| [TEXT_ALIGNMENT_VIEW_END](#TEXT-ALIGNMENT-VIEW-END) | | +| [TEXT_ALIGNMENT_VIEW_START](#TEXT-ALIGNMENT-VIEW-START) | | +| [TEXT_DIRECTION_ANY_RTL](#TEXT-DIRECTION-ANY-RTL) | | +| [TEXT_DIRECTION_FIRST_STRONG](#TEXT-DIRECTION-FIRST-STRONG) | | +| [TEXT_DIRECTION_FIRST_STRONG_LTR](#TEXT-DIRECTION-FIRST-STRONG-LTR) | | +| [TEXT_DIRECTION_FIRST_STRONG_RTL](#TEXT-DIRECTION-FIRST-STRONG-RTL) | | +| [TEXT_DIRECTION_INHERIT](#TEXT-DIRECTION-INHERIT) | | +| [TEXT_DIRECTION_LOCALE](#TEXT-DIRECTION-LOCALE) | | +| [TEXT_DIRECTION_LTR](#TEXT-DIRECTION-LTR) | | +| [TEXT_DIRECTION_RTL](#TEXT-DIRECTION-RTL) | | +| [TRANSLATION_X](#TRANSLATION-X) | | +| [TRANSLATION_Y](#TRANSLATION-Y) | | +| [TRANSLATION_Z](#TRANSLATION-Z) | | +| [VISIBLE](#VISIBLE) | | +| [X](#X) | | +| [Y](#Y) | | +| [Z](#Z) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [findViewById(int arg0)](#-T-findViewById-int-) | | +| [findViewWithTag(Object arg0)](#-T-findViewWithTag-java.lang.Object-) | | +| [requireViewById(int arg0)](#-T-requireViewById-int-) | | +| [addChildrenForAccessibility(ArrayList arg0)](#addChildrenForAccessibility-java.util.ArrayList-android.view.View--) | | +| [addExtraDataToAccessibilityNodeInfo(AccessibilityNodeInfo arg0, String arg1, Bundle arg2)](#addExtraDataToAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-java.lang.String-android.os.Bundle-) | | +| [addFocusables(ArrayList arg0, int arg1)](#addFocusables-java.util.ArrayList-android.view.View--int-) | | +| [addFocusables(ArrayList arg0, int arg1, int arg2)](#addFocusables-java.util.ArrayList-android.view.View--int-int-) | | +| [addKeyboardNavigationClusters(Collection arg0, int arg1)](#addKeyboardNavigationClusters-java.util.Collection-android.view.View--int-) | | +| [addOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0)](#addOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-) | | +| [addOnLayoutChangeListener(View.OnLayoutChangeListener arg0)](#addOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-) | | +| [addOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0)](#addOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-) | | +| [addTouchables(ArrayList arg0)](#addTouchables-java.util.ArrayList-android.view.View--) | | +| [animate()](#animate--) | | +| [animateTransform(Matrix arg0)](#animateTransform-android.graphics.Matrix-) | | +| [announceForAccessibility(CharSequence arg0)](#announceForAccessibility-java.lang.CharSequence-) | | +| [autofill(SparseArray arg0)](#autofill-android.util.SparseArray-android.view.autofill.AutofillValue--) | | +| [autofill(AutofillValue arg0)](#autofill-android.view.autofill.AutofillValue-) | | +| [bringToFront()](#bringToFront--) | | +| [buildDrawingCache()](#buildDrawingCache--) | | +| [buildDrawingCache(boolean arg0)](#buildDrawingCache-boolean-) | | +| [buildLayer()](#buildLayer--) | | +| [callOnClick()](#callOnClick--) | | +| [canResolveLayoutDirection()](#canResolveLayoutDirection--) | | +| [canResolveTextAlignment()](#canResolveTextAlignment--) | | +| [canResolveTextDirection()](#canResolveTextDirection--) | | +| [canScrollHorizontally(int arg0)](#canScrollHorizontally-int-) | | +| [canScrollVertically(int arg0)](#canScrollVertically-int-) | | +| [cancelDragAndDrop()](#cancelDragAndDrop--) | | +| [cancelLongPress()](#cancelLongPress--) | | +| [cancelPendingInputEvents()](#cancelPendingInputEvents--) | | +| [checkInputConnectionProxy(View arg0)](#checkInputConnectionProxy-android.view.View-) | | +| [clearAnimation()](#clearAnimation--) | | +| [clearColorFilter()](#clearColorFilter--) | | +| [clearFocus()](#clearFocus--) | | +| [clearViewTranslationCallback()](#clearViewTranslationCallback--) | | +| [combineMeasuredStates(int arg0, int arg1)](#combineMeasuredStates-int-int-) | | +| [computeScroll()](#computeScroll--) | | +| [computeSystemWindowInsets(WindowInsets arg0, Rect arg1)](#computeSystemWindowInsets-android.view.WindowInsets-android.graphics.Rect-) | | +| [createAccessibilityNodeInfo()](#createAccessibilityNodeInfo--) | | +| [createContextMenu(ContextMenu arg0)](#createContextMenu-android.view.ContextMenu-) | | +| [destroyDrawingCache()](#destroyDrawingCache--) | | +| [dispatchApplyWindowInsets(WindowInsets arg0)](#dispatchApplyWindowInsets-android.view.WindowInsets-) | | +| [dispatchCapturedPointerEvent(MotionEvent arg0)](#dispatchCapturedPointerEvent-android.view.MotionEvent-) | | +| [dispatchConfigurationChanged(Configuration arg0)](#dispatchConfigurationChanged-android.content.res.Configuration-) | | +| [dispatchCreateViewTranslationRequest(Map arg0, int[] arg1, TranslationCapability arg2, List arg3)](#dispatchCreateViewTranslationRequest-java.util.Map-android.view.autofill.AutofillId-long----int---android.view.translation.TranslationCapability-java.util.List-android.view.translation.ViewTranslationRequest--) | | +| [dispatchDisplayHint(int arg0)](#dispatchDisplayHint-int-) | | +| [dispatchDragEvent(DragEvent arg0)](#dispatchDragEvent-android.view.DragEvent-) | | +| [dispatchDrawableHotspotChanged(float arg0, float arg1)](#dispatchDrawableHotspotChanged-float-float-) | | +| [dispatchFinishTemporaryDetach()](#dispatchFinishTemporaryDetach--) | | +| [dispatchGenericMotionEvent(MotionEvent arg0)](#dispatchGenericMotionEvent-android.view.MotionEvent-) | | +| [dispatchKeyEvent(KeyEvent arg0)](#dispatchKeyEvent-android.view.KeyEvent-) | | +| [dispatchKeyEventPreIme(KeyEvent arg0)](#dispatchKeyEventPreIme-android.view.KeyEvent-) | | +| [dispatchKeyShortcutEvent(KeyEvent arg0)](#dispatchKeyShortcutEvent-android.view.KeyEvent-) | | +| [dispatchNestedFling(float arg0, float arg1, boolean arg2)](#dispatchNestedFling-float-float-boolean-) | | +| [dispatchNestedPreFling(float arg0, float arg1)](#dispatchNestedPreFling-float-float-) | | +| [dispatchNestedPrePerformAccessibilityAction(int arg0, Bundle arg1)](#dispatchNestedPrePerformAccessibilityAction-int-android.os.Bundle-) | | +| [dispatchNestedPreScroll(int arg0, int arg1, int[] arg2, int[] arg3)](#dispatchNestedPreScroll-int-int-int---int---) | | +| [dispatchNestedScroll(int arg0, int arg1, int arg2, int arg3, int[] arg4)](#dispatchNestedScroll-int-int-int-int-int---) | | +| [dispatchPointerCaptureChanged(boolean arg0)](#dispatchPointerCaptureChanged-boolean-) | | +| [dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0)](#dispatchPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-) | | +| [dispatchProvideAutofillStructure(ViewStructure arg0, int arg1)](#dispatchProvideAutofillStructure-android.view.ViewStructure-int-) | | +| [dispatchProvideStructure(ViewStructure arg0)](#dispatchProvideStructure-android.view.ViewStructure-) | | +| [dispatchScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2)](#dispatchScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--) | | +| [dispatchStartTemporaryDetach()](#dispatchStartTemporaryDetach--) | | +| [dispatchSystemUiVisibilityChanged(int arg0)](#dispatchSystemUiVisibilityChanged-int-) | | +| [dispatchTouchEvent(MotionEvent arg0)](#dispatchTouchEvent-android.view.MotionEvent-) | | +| [dispatchTrackballEvent(MotionEvent arg0)](#dispatchTrackballEvent-android.view.MotionEvent-) | | +| [dispatchUnhandledMove(View arg0, int arg1)](#dispatchUnhandledMove-android.view.View-int-) | | +| [dispatchWindowFocusChanged(boolean arg0)](#dispatchWindowFocusChanged-boolean-) | | +| [dispatchWindowInsetsAnimationEnd(WindowInsetsAnimation arg0)](#dispatchWindowInsetsAnimationEnd-android.view.WindowInsetsAnimation-) | | +| [dispatchWindowInsetsAnimationPrepare(WindowInsetsAnimation arg0)](#dispatchWindowInsetsAnimationPrepare-android.view.WindowInsetsAnimation-) | | +| [dispatchWindowInsetsAnimationProgress(WindowInsets arg0, List arg1)](#dispatchWindowInsetsAnimationProgress-android.view.WindowInsets-java.util.List-android.view.WindowInsetsAnimation--) | | +| [dispatchWindowInsetsAnimationStart(WindowInsetsAnimation arg0, WindowInsetsAnimation.Bounds arg1)](#dispatchWindowInsetsAnimationStart-android.view.WindowInsetsAnimation-android.view.WindowInsetsAnimation.Bounds-) | | +| [dispatchWindowSystemUiVisiblityChanged(int arg0)](#dispatchWindowSystemUiVisiblityChanged-int-) | | +| [dispatchWindowVisibilityChanged(int arg0)](#dispatchWindowVisibilityChanged-int-) | | +| [draw(Canvas arg0)](#draw-android.graphics.Canvas-) | | +| [drawableHotspotChanged(float arg0, float arg1)](#drawableHotspotChanged-float-float-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [findFocus()](#findFocus--) | | +| [findOnBackInvokedDispatcher()](#findOnBackInvokedDispatcher--) | | +| [findViewsWithText(ArrayList arg0, CharSequence arg1, int arg2)](#findViewsWithText-java.util.ArrayList-android.view.View--java.lang.CharSequence-int-) | | +| [focusSearch(int arg0)](#focusSearch-int-) | | +| [forceHasOverlappingRendering(boolean arg0)](#forceHasOverlappingRendering-boolean-) | | +| [forceLayout()](#forceLayout--) | | +| [gatherTransparentRegion(Region arg0)](#gatherTransparentRegion-android.graphics.Region-) | | +| [generateDisplayHash(String arg0, Rect arg1, Executor arg2, DisplayHashResultCallback arg3)](#generateDisplayHash-java.lang.String-android.graphics.Rect-java.util.concurrent.Executor-android.view.displayhash.DisplayHashResultCallback-) | | +| [generateViewId()](#generateViewId--) | | +| [getAccessibilityClassName()](#getAccessibilityClassName--) | | +| [getAccessibilityDelegate()](#getAccessibilityDelegate--) | | +| [getAccessibilityLiveRegion()](#getAccessibilityLiveRegion--) | | +| [getAccessibilityNodeProvider()](#getAccessibilityNodeProvider--) | | +| [getAccessibilityPaneTitle()](#getAccessibilityPaneTitle--) | | +| [getAccessibilityTraversalAfter()](#getAccessibilityTraversalAfter--) | | +| [getAccessibilityTraversalBefore()](#getAccessibilityTraversalBefore--) | | +| [getAdjustViewBounds()](#getAdjustViewBounds--) | | +| [getAlpha()](#getAlpha--) | | +| [getAnimation()](#getAnimation--) | | +| [getAnimationMatrix()](#getAnimationMatrix--) | | +| [getApplicationWindowToken()](#getApplicationWindowToken--) | | +| [getAttributeResolutionStack(int arg0)](#getAttributeResolutionStack-int-) | | +| [getAttributeSourceResourceMap()](#getAttributeSourceResourceMap--) | | +| [getAutofillHints()](#getAutofillHints--) | | +| [getAutofillId()](#getAutofillId--) | | +| [getAutofillType()](#getAutofillType--) | | +| [getAutofillValue()](#getAutofillValue--) | | +| [getBackground()](#getBackground--) | | +| [getBackgroundTintBlendMode()](#getBackgroundTintBlendMode--) | | +| [getBackgroundTintList()](#getBackgroundTintList--) | | +| [getBackgroundTintMode()](#getBackgroundTintMode--) | | +| [getBaseline()](#getBaseline--) | | +| [getBaselineAlignBottom()](#getBaselineAlignBottom--) | | +| [getBottom()](#getBottom--) | | +| [getCameraDistance()](#getCameraDistance--) | | +| [getClass()](#getClass--) | | +| [getClipBounds()](#getClipBounds--) | | +| [getClipBounds(Rect arg0)](#getClipBounds-android.graphics.Rect-) | | +| [getClipToOutline()](#getClipToOutline--) | | +| [getColorFilter()](#getColorFilter--) | | +| [getContentCaptureSession()](#getContentCaptureSession--) | | +| [getContentDescription()](#getContentDescription--) | | +| [getContext()](#getContext--) | | +| [getCropToPadding()](#getCropToPadding--) | | +| [getDefaultFocusHighlightEnabled()](#getDefaultFocusHighlightEnabled--) | | +| [getDefaultSize(int arg0, int arg1)](#getDefaultSize-int-int-) | | +| [getDisplay()](#getDisplay--) | | +| [getDrawable()](#getDrawable--) | | +| [getDrawableState()](#getDrawableState--) | | +| [getDrawingCache()](#getDrawingCache--) | | +| [getDrawingCache(boolean arg0)](#getDrawingCache-boolean-) | | +| [getDrawingCacheBackgroundColor()](#getDrawingCacheBackgroundColor--) | | +| [getDrawingCacheQuality()](#getDrawingCacheQuality--) | | +| [getDrawingRect(Rect arg0)](#getDrawingRect-android.graphics.Rect-) | | +| [getDrawingTime()](#getDrawingTime--) | | +| [getElevation()](#getElevation--) | | +| [getExplicitStyle()](#getExplicitStyle--) | | +| [getFilterTouchesWhenObscured()](#getFilterTouchesWhenObscured--) | | +| [getFitsSystemWindows()](#getFitsSystemWindows--) | | +| [getFocusable()](#getFocusable--) | | +| [getFocusables(int arg0)](#getFocusables-int-) | | +| [getFocusedRect(Rect arg0)](#getFocusedRect-android.graphics.Rect-) | | +| [getForeground()](#getForeground--) | | +| [getForegroundGravity()](#getForegroundGravity--) | | +| [getForegroundTintBlendMode()](#getForegroundTintBlendMode--) | | +| [getForegroundTintList()](#getForegroundTintList--) | | +| [getForegroundTintMode()](#getForegroundTintMode--) | | +| [getGlobalVisibleRect(Rect arg0)](#getGlobalVisibleRect-android.graphics.Rect-) | | +| [getGlobalVisibleRect(Rect arg0, Point arg1)](#getGlobalVisibleRect-android.graphics.Rect-android.graphics.Point-) | | +| [getHandler()](#getHandler--) | | +| [getHasOverlappingRendering()](#getHasOverlappingRendering--) | | +| [getHeight()](#getHeight--) | | +| [getHitRect(Rect arg0)](#getHitRect-android.graphics.Rect-) | | +| [getHorizontalFadingEdgeLength()](#getHorizontalFadingEdgeLength--) | | +| [getHorizontalScrollbarThumbDrawable()](#getHorizontalScrollbarThumbDrawable--) | | +| [getHorizontalScrollbarTrackDrawable()](#getHorizontalScrollbarTrackDrawable--) | | +| [getId()](#getId--) | | +| [getImageAlpha()](#getImageAlpha--) | | +| [getImageMatrix()](#getImageMatrix--) | | +| [getImageTintBlendMode()](#getImageTintBlendMode--) | | +| [getImageTintList()](#getImageTintList--) | | +| [getImageTintMode()](#getImageTintMode--) | | +| [getImportantForAccessibility()](#getImportantForAccessibility--) | | +| [getImportantForAutofill()](#getImportantForAutofill--) | | +| [getImportantForContentCapture()](#getImportantForContentCapture--) | | +| [getKeepScreenOn()](#getKeepScreenOn--) | | +| [getKeyDispatcherState()](#getKeyDispatcherState--) | | +| [getLabelFor()](#getLabelFor--) | | +| [getLayerType()](#getLayerType--) | | +| [getLayoutDirection()](#getLayoutDirection--) | | +| [getLayoutParams()](#getLayoutParams--) | | +| [getLeft()](#getLeft--) | | +| [getLocalVisibleRect(Rect arg0)](#getLocalVisibleRect-android.graphics.Rect-) | | +| [getLocationInSurface(int[] arg0)](#getLocationInSurface-int---) | | +| [getLocationInWindow(int[] arg0)](#getLocationInWindow-int---) | | +| [getLocationOnScreen(int[] arg0)](#getLocationOnScreen-int---) | | +| [getMatrix()](#getMatrix--) | | +| [getMaxHeight()](#getMaxHeight--) | | +| [getMaxWidth()](#getMaxWidth--) | | +| [getMeasuredHeight()](#getMeasuredHeight--) | | +| [getMeasuredHeightAndState()](#getMeasuredHeightAndState--) | | +| [getMeasuredState()](#getMeasuredState--) | | +| [getMeasuredWidth()](#getMeasuredWidth--) | | +| [getMeasuredWidthAndState()](#getMeasuredWidthAndState--) | | +| [getMinimumHeight()](#getMinimumHeight--) | | +| [getMinimumWidth()](#getMinimumWidth--) | | +| [getNextClusterForwardId()](#getNextClusterForwardId--) | | +| [getNextFocusDownId()](#getNextFocusDownId--) | | +| [getNextFocusForwardId()](#getNextFocusForwardId--) | | +| [getNextFocusLeftId()](#getNextFocusLeftId--) | | +| [getNextFocusRightId()](#getNextFocusRightId--) | | +| [getNextFocusUpId()](#getNextFocusUpId--) | | +| [getOnFocusChangeListener()](#getOnFocusChangeListener--) | | +| [getOutlineAmbientShadowColor()](#getOutlineAmbientShadowColor--) | | +| [getOutlineProvider()](#getOutlineProvider--) | | +| [getOutlineSpotShadowColor()](#getOutlineSpotShadowColor--) | | +| [getOverScrollMode()](#getOverScrollMode--) | | +| [getOverlay()](#getOverlay--) | | +| [getPaddingBottom()](#getPaddingBottom--) | | +| [getPaddingEnd()](#getPaddingEnd--) | | +| [getPaddingLeft()](#getPaddingLeft--) | | +| [getPaddingRight()](#getPaddingRight--) | | +| [getPaddingStart()](#getPaddingStart--) | | +| [getPaddingTop()](#getPaddingTop--) | | +| [getParent()](#getParent--) | | +| [getParentForAccessibility()](#getParentForAccessibility--) | | +| [getPivotX()](#getPivotX--) | | +| [getPivotY()](#getPivotY--) | | +| [getPointerIcon()](#getPointerIcon--) | | +| [getPreferKeepClearRects()](#getPreferKeepClearRects--) | | +| [getReceiveContentMimeTypes()](#getReceiveContentMimeTypes--) | | +| [getResources()](#getResources--) | | +| [getRevealOnFocusHint()](#getRevealOnFocusHint--) | | +| [getRight()](#getRight--) | | +| [getRootSurfaceControl()](#getRootSurfaceControl--) | | +| [getRootView()](#getRootView--) | | +| [getRootWindowInsets()](#getRootWindowInsets--) | | +| [getRotation()](#getRotation--) | | +| [getRotationX()](#getRotationX--) | | +| [getRotationY()](#getRotationY--) | | +| [getScaleType()](#getScaleType--) | | +| [getScaleX()](#getScaleX--) | | +| [getScaleY()](#getScaleY--) | | +| [getScrollBarDefaultDelayBeforeFade()](#getScrollBarDefaultDelayBeforeFade--) | | +| [getScrollBarFadeDuration()](#getScrollBarFadeDuration--) | | +| [getScrollBarSize()](#getScrollBarSize--) | | +| [getScrollBarStyle()](#getScrollBarStyle--) | | +| [getScrollCaptureHint()](#getScrollCaptureHint--) | | +| [getScrollIndicators()](#getScrollIndicators--) | | +| [getScrollX()](#getScrollX--) | | +| [getScrollY()](#getScrollY--) | | +| [getSolidColor()](#getSolidColor--) | | +| [getSourceLayoutResId()](#getSourceLayoutResId--) | | +| [getStateDescription()](#getStateDescription--) | | +| [getStateListAnimator()](#getStateListAnimator--) | | +| [getSupportBackgroundTintList()](#getSupportBackgroundTintList--) | | +| [getSupportBackgroundTintMode()](#getSupportBackgroundTintMode--) | | +| [getSupportImageTintList()](#getSupportImageTintList--) | | +| [getSupportImageTintMode()](#getSupportImageTintMode--) | | +| [getSystemGestureExclusionRects()](#getSystemGestureExclusionRects--) | | +| [getSystemUiVisibility()](#getSystemUiVisibility--) | | +| [getTag()](#getTag--) | | +| [getTag(int arg0)](#getTag-int-) | | +| [getTextAlignment()](#getTextAlignment--) | | +| [getTextDirection()](#getTextDirection--) | | +| [getTooltipText()](#getTooltipText--) | | +| [getTop()](#getTop--) | | +| [getTouchDelegate()](#getTouchDelegate--) | | +| [getTouchables()](#getTouchables--) | | +| [getTransitionAlpha()](#getTransitionAlpha--) | | +| [getTransitionName()](#getTransitionName--) | | +| [getTranslationX()](#getTranslationX--) | | +| [getTranslationY()](#getTranslationY--) | | +| [getTranslationZ()](#getTranslationZ--) | | +| [getUniqueDrawingId()](#getUniqueDrawingId--) | | +| [getVerticalFadingEdgeLength()](#getVerticalFadingEdgeLength--) | | +| [getVerticalScrollbarPosition()](#getVerticalScrollbarPosition--) | | +| [getVerticalScrollbarThumbDrawable()](#getVerticalScrollbarThumbDrawable--) | | +| [getVerticalScrollbarTrackDrawable()](#getVerticalScrollbarTrackDrawable--) | | +| [getVerticalScrollbarWidth()](#getVerticalScrollbarWidth--) | | +| [getViewTranslationResponse()](#getViewTranslationResponse--) | | +| [getViewTreeObserver()](#getViewTreeObserver--) | | +| [getVisibility()](#getVisibility--) | | +| [getWidth()](#getWidth--) | | +| [getWindowId()](#getWindowId--) | | +| [getWindowInsetsController()](#getWindowInsetsController--) | | +| [getWindowSystemUiVisibility()](#getWindowSystemUiVisibility--) | | +| [getWindowToken()](#getWindowToken--) | | +| [getWindowVisibility()](#getWindowVisibility--) | | +| [getWindowVisibleDisplayFrame(Rect arg0)](#getWindowVisibleDisplayFrame-android.graphics.Rect-) | | +| [getX()](#getX--) | | +| [getY()](#getY--) | | +| [getZ()](#getZ--) | | +| [hasExplicitFocusable()](#hasExplicitFocusable--) | | +| [hasFocus()](#hasFocus--) | | +| [hasFocusable()](#hasFocusable--) | | +| [hasNestedScrollingParent()](#hasNestedScrollingParent--) | | +| [hasOnClickListeners()](#hasOnClickListeners--) | | +| [hasOnLongClickListeners()](#hasOnLongClickListeners--) | | +| [hasOverlappingRendering()](#hasOverlappingRendering--) | | +| [hasPointerCapture()](#hasPointerCapture--) | | +| [hasTransientState()](#hasTransientState--) | | +| [hasWindowFocus()](#hasWindowFocus--) | | +| [hashCode()](#hashCode--) | | +| [inflate(Context arg0, int arg1, ViewGroup arg2)](#inflate-android.content.Context-int-android.view.ViewGroup-) | | +| [invalidate()](#invalidate--) | | +| [invalidate(Rect arg0)](#invalidate-android.graphics.Rect-) | | +| [invalidate(int arg0, int arg1, int arg2, int arg3)](#invalidate-int-int-int-int-) | | +| [invalidateDrawable(Drawable arg0)](#invalidateDrawable-android.graphics.drawable.Drawable-) | | +| [invalidateOutline()](#invalidateOutline--) | | +| [isAccessibilityFocused()](#isAccessibilityFocused--) | | +| [isAccessibilityHeading()](#isAccessibilityHeading--) | | +| [isActivated()](#isActivated--) | | +| [isAttachedToWindow()](#isAttachedToWindow--) | | +| [isAutoHandwritingEnabled()](#isAutoHandwritingEnabled--) | | +| [isClickable()](#isClickable--) | | +| [isContextClickable()](#isContextClickable--) | | +| [isDirty()](#isDirty--) | | +| [isDrawingCacheEnabled()](#isDrawingCacheEnabled--) | | +| [isDuplicateParentStateEnabled()](#isDuplicateParentStateEnabled--) | | +| [isEnabled()](#isEnabled--) | | +| [isFocusable()](#isFocusable--) | | +| [isFocusableInTouchMode()](#isFocusableInTouchMode--) | | +| [isFocused()](#isFocused--) | | +| [isFocusedByDefault()](#isFocusedByDefault--) | | +| [isForceDarkAllowed()](#isForceDarkAllowed--) | | +| [isHapticFeedbackEnabled()](#isHapticFeedbackEnabled--) | | +| [isHardwareAccelerated()](#isHardwareAccelerated--) | | +| [isHorizontalFadingEdgeEnabled()](#isHorizontalFadingEdgeEnabled--) | | +| [isHorizontalScrollBarEnabled()](#isHorizontalScrollBarEnabled--) | | +| [isHovered()](#isHovered--) | | +| [isImportantForAccessibility()](#isImportantForAccessibility--) | | +| [isImportantForAutofill()](#isImportantForAutofill--) | | +| [isImportantForContentCapture()](#isImportantForContentCapture--) | | +| [isInEditMode()](#isInEditMode--) | | +| [isInLayout()](#isInLayout--) | | +| [isInTouchMode()](#isInTouchMode--) | | +| [isKeyboardNavigationCluster()](#isKeyboardNavigationCluster--) | | +| [isLaidOut()](#isLaidOut--) | | +| [isLayoutDirectionResolved()](#isLayoutDirectionResolved--) | | +| [isLayoutRequested()](#isLayoutRequested--) | | +| [isLongClickable()](#isLongClickable--) | | +| [isNestedScrollingEnabled()](#isNestedScrollingEnabled--) | | +| [isOpaque()](#isOpaque--) | | +| [isPaddingRelative()](#isPaddingRelative--) | | +| [isPivotSet()](#isPivotSet--) | | +| [isPreferKeepClear()](#isPreferKeepClear--) | | +| [isPressed()](#isPressed--) | | +| [isSaveEnabled()](#isSaveEnabled--) | | +| [isSaveFromParentEnabled()](#isSaveFromParentEnabled--) | | +| [isScreenReaderFocusable()](#isScreenReaderFocusable--) | | +| [isScrollContainer()](#isScrollContainer--) | | +| [isScrollbarFadingEnabled()](#isScrollbarFadingEnabled--) | | +| [isSelected()](#isSelected--) | | +| [isShowingLayoutBounds()](#isShowingLayoutBounds--) | | +| [isShown()](#isShown--) | | +| [isSoundEffectsEnabled()](#isSoundEffectsEnabled--) | | +| [isTemporarilyDetached()](#isTemporarilyDetached--) | | +| [isTextAlignmentResolved()](#isTextAlignmentResolved--) | | +| [isTextDirectionResolved()](#isTextDirectionResolved--) | | +| [isVerticalFadingEdgeEnabled()](#isVerticalFadingEdgeEnabled--) | | +| [isVerticalScrollBarEnabled()](#isVerticalScrollBarEnabled--) | | +| [isVisibleToUserForAutofill(int arg0)](#isVisibleToUserForAutofill-int-) | | +| [jumpDrawablesToCurrentState()](#jumpDrawablesToCurrentState--) | | +| [keyboardNavigationClusterSearch(View arg0, int arg1)](#keyboardNavigationClusterSearch-android.view.View-int-) | | +| [layout(int arg0, int arg1, int arg2, int arg3)](#layout-int-int-int-int-) | | +| [measure(int arg0, int arg1)](#measure-int-int-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [offsetLeftAndRight(int arg0)](#offsetLeftAndRight-int-) | | +| [offsetTopAndBottom(int arg0)](#offsetTopAndBottom-int-) | | +| [onApplyWindowInsets(WindowInsets arg0)](#onApplyWindowInsets-android.view.WindowInsets-) | | +| [onAttachedToWindow()](#onAttachedToWindow--) | | +| [onCancelPendingInputEvents()](#onCancelPendingInputEvents--) | | +| [onCapturedPointerEvent(MotionEvent arg0)](#onCapturedPointerEvent-android.view.MotionEvent-) | | +| [onCheckIsTextEditor()](#onCheckIsTextEditor--) | | +| [onCreateDrawableState(int arg0)](#onCreateDrawableState-int-) | | +| [onCreateInputConnection(EditorInfo arg0)](#onCreateInputConnection-android.view.inputmethod.EditorInfo-) | | +| [onCreateViewTranslationRequest(int[] arg0, Consumer arg1)](#onCreateViewTranslationRequest-int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--) | | +| [onCreateVirtualViewTranslationRequests(long[] arg0, int[] arg1, Consumer arg2)](#onCreateVirtualViewTranslationRequests-long---int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--) | | +| [onDragEvent(DragEvent arg0)](#onDragEvent-android.view.DragEvent-) | | +| [onDrawForeground(Canvas arg0)](#onDrawForeground-android.graphics.Canvas-) | | +| [onFilterTouchEventForSecurity(MotionEvent arg0)](#onFilterTouchEventForSecurity-android.view.MotionEvent-) | | +| [onFinishTemporaryDetach()](#onFinishTemporaryDetach--) | | +| [onGenericMotionEvent(MotionEvent arg0)](#onGenericMotionEvent-android.view.MotionEvent-) | | +| [onHoverChanged(boolean arg0)](#onHoverChanged-boolean-) | | +| [onHoverEvent(MotionEvent arg0)](#onHoverEvent-android.view.MotionEvent-) | | +| [onInitializeAccessibilityEvent(AccessibilityEvent arg0)](#onInitializeAccessibilityEvent-android.view.accessibility.AccessibilityEvent-) | | +| [onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo arg0)](#onInitializeAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-) | | +| [onKeyDown(int arg0, KeyEvent arg1)](#onKeyDown-int-android.view.KeyEvent-) | | +| [onKeyLongPress(int arg0, KeyEvent arg1)](#onKeyLongPress-int-android.view.KeyEvent-) | | +| [onKeyMultiple(int arg0, int arg1, KeyEvent arg2)](#onKeyMultiple-int-int-android.view.KeyEvent-) | | +| [onKeyPreIme(int arg0, KeyEvent arg1)](#onKeyPreIme-int-android.view.KeyEvent-) | | +| [onKeyShortcut(int arg0, KeyEvent arg1)](#onKeyShortcut-int-android.view.KeyEvent-) | | +| [onKeyUp(int arg0, KeyEvent arg1)](#onKeyUp-int-android.view.KeyEvent-) | | +| [onPointerCaptureChange(boolean arg0)](#onPointerCaptureChange-boolean-) | | +| [onPopulateAccessibilityEvent(AccessibilityEvent arg0)](#onPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-) | | +| [onProvideAutofillStructure(ViewStructure arg0, int arg1)](#onProvideAutofillStructure-android.view.ViewStructure-int-) | | +| [onProvideAutofillVirtualStructure(ViewStructure arg0, int arg1)](#onProvideAutofillVirtualStructure-android.view.ViewStructure-int-) | | +| [onProvideContentCaptureStructure(ViewStructure arg0, int arg1)](#onProvideContentCaptureStructure-android.view.ViewStructure-int-) | | +| [onProvideStructure(ViewStructure arg0)](#onProvideStructure-android.view.ViewStructure-) | | +| [onProvideVirtualStructure(ViewStructure arg0)](#onProvideVirtualStructure-android.view.ViewStructure-) | | +| [onReceiveContent(ContentInfo arg0)](#onReceiveContent-android.view.ContentInfo-) | | +| [onResolvePointerIcon(MotionEvent arg0, int arg1)](#onResolvePointerIcon-android.view.MotionEvent-int-) | | +| [onRtlPropertiesChanged(int arg0)](#onRtlPropertiesChanged-int-) | | +| [onScreenStateChanged(int arg0)](#onScreenStateChanged-int-) | | +| [onScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2)](#onScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--) | | +| [onStartTemporaryDetach()](#onStartTemporaryDetach--) | | +| [onTouchEvent(MotionEvent arg0)](#onTouchEvent-android.view.MotionEvent-) | | +| [onTrackballEvent(MotionEvent arg0)](#onTrackballEvent-android.view.MotionEvent-) | | +| [onViewTranslationResponse(ViewTranslationResponse arg0)](#onViewTranslationResponse-android.view.translation.ViewTranslationResponse-) | | +| [onVirtualViewTranslationResponses(LongSparseArray arg0)](#onVirtualViewTranslationResponses-android.util.LongSparseArray-android.view.translation.ViewTranslationResponse--) | | +| [onVisibilityAggregated(boolean arg0)](#onVisibilityAggregated-boolean-) | | +| [onWindowFocusChanged(boolean arg0)](#onWindowFocusChanged-boolean-) | | +| [onWindowSystemUiVisibilityChanged(int arg0)](#onWindowSystemUiVisibilityChanged-int-) | | +| [performAccessibilityAction(int arg0, Bundle arg1)](#performAccessibilityAction-int-android.os.Bundle-) | | +| [performClick()](#performClick--) | | +| [performContextClick()](#performContextClick--) | | +| [performContextClick(float arg0, float arg1)](#performContextClick-float-float-) | | +| [performHapticFeedback(int arg0)](#performHapticFeedback-int-) | | +| [performHapticFeedback(int arg0, int arg1)](#performHapticFeedback-int-int-) | | +| [performLongClick()](#performLongClick--) | | +| [performLongClick(float arg0, float arg1)](#performLongClick-float-float-) | | +| [performReceiveContent(ContentInfo arg0)](#performReceiveContent-android.view.ContentInfo-) | | +| [playSoundEffect(int arg0)](#playSoundEffect-int-) | | +| [post(Runnable arg0)](#post-java.lang.Runnable-) | | +| [postDelayed(Runnable arg0, long arg1)](#postDelayed-java.lang.Runnable-long-) | | +| [postInvalidate()](#postInvalidate--) | | +| [postInvalidate(int arg0, int arg1, int arg2, int arg3)](#postInvalidate-int-int-int-int-) | | +| [postInvalidateDelayed(long arg0)](#postInvalidateDelayed-long-) | | +| [postInvalidateDelayed(long arg0, int arg1, int arg2, int arg3, int arg4)](#postInvalidateDelayed-long-int-int-int-int-) | | +| [postInvalidateOnAnimation()](#postInvalidateOnAnimation--) | | +| [postInvalidateOnAnimation(int arg0, int arg1, int arg2, int arg3)](#postInvalidateOnAnimation-int-int-int-int-) | | +| [postOnAnimation(Runnable arg0)](#postOnAnimation-java.lang.Runnable-) | | +| [postOnAnimationDelayed(Runnable arg0, long arg1)](#postOnAnimationDelayed-java.lang.Runnable-long-) | | +| [refreshDrawableState()](#refreshDrawableState--) | | +| [releasePointerCapture()](#releasePointerCapture--) | | +| [removeCallbacks(Runnable arg0)](#removeCallbacks-java.lang.Runnable-) | | +| [removeOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0)](#removeOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-) | | +| [removeOnLayoutChangeListener(View.OnLayoutChangeListener arg0)](#removeOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-) | | +| [removeOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0)](#removeOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-) | | +| [requestApplyInsets()](#requestApplyInsets--) | | +| [requestFitSystemWindows()](#requestFitSystemWindows--) | | +| [requestFocus()](#requestFocus--) | | +| [requestFocus(int arg0)](#requestFocus-int-) | | +| [requestFocus(int arg0, Rect arg1)](#requestFocus-int-android.graphics.Rect-) | | +| [requestFocusFromTouch()](#requestFocusFromTouch--) | | +| [requestLayout()](#requestLayout--) | | +| [requestPointerCapture()](#requestPointerCapture--) | | +| [requestRectangleOnScreen(Rect arg0)](#requestRectangleOnScreen-android.graphics.Rect-) | | +| [requestRectangleOnScreen(Rect arg0, boolean arg1)](#requestRectangleOnScreen-android.graphics.Rect-boolean-) | | +| [requestUnbufferedDispatch(MotionEvent arg0)](#requestUnbufferedDispatch-android.view.MotionEvent-) | | +| [requestUnbufferedDispatch(int arg0)](#requestUnbufferedDispatch-int-) | | +| [resetPivot()](#resetPivot--) | | +| [resolveSize(int arg0, int arg1)](#resolveSize-int-int-) | | +| [resolveSizeAndState(int arg0, int arg1, int arg2)](#resolveSizeAndState-int-int-int-) | | +| [restoreDefaultFocus()](#restoreDefaultFocus--) | | +| [restoreHierarchyState(SparseArray arg0)](#restoreHierarchyState-android.util.SparseArray-android.os.Parcelable--) | | +| [saveAttributeDataForStyleable(Context arg0, int[] arg1, AttributeSet arg2, TypedArray arg3, int arg4, int arg5)](#saveAttributeDataForStyleable-android.content.Context-int---android.util.AttributeSet-android.content.res.TypedArray-int-int-) | | +| [saveHierarchyState(SparseArray arg0)](#saveHierarchyState-android.util.SparseArray-android.os.Parcelable--) | | +| [scheduleDrawable(Drawable arg0, Runnable arg1, long arg2)](#scheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-long-) | | +| [scrollBy(int arg0, int arg1)](#scrollBy-int-int-) | | +| [scrollTo(int arg0, int arg1)](#scrollTo-int-int-) | | +| [sendAccessibilityEvent(int arg0)](#sendAccessibilityEvent-int-) | | +| [sendAccessibilityEventUnchecked(AccessibilityEvent arg0)](#sendAccessibilityEventUnchecked-android.view.accessibility.AccessibilityEvent-) | | +| [setAccessibilityDelegate(View.AccessibilityDelegate arg0)](#setAccessibilityDelegate-android.view.View.AccessibilityDelegate-) | | +| [setAccessibilityHeading(boolean arg0)](#setAccessibilityHeading-boolean-) | | +| [setAccessibilityLiveRegion(int arg0)](#setAccessibilityLiveRegion-int-) | | +| [setAccessibilityPaneTitle(CharSequence arg0)](#setAccessibilityPaneTitle-java.lang.CharSequence-) | | +| [setAccessibilityTraversalAfter(int arg0)](#setAccessibilityTraversalAfter-int-) | | +| [setAccessibilityTraversalBefore(int arg0)](#setAccessibilityTraversalBefore-int-) | | +| [setActivated(boolean arg0)](#setActivated-boolean-) | | +| [setAdjustViewBounds(boolean arg0)](#setAdjustViewBounds-boolean-) | | +| [setAllowClickWhenDisabled(boolean arg0)](#setAllowClickWhenDisabled-boolean-) | | +| [setAlpha(float arg0)](#setAlpha-float-) | | +| [setAlpha(int arg0)](#setAlpha-int-) | | +| [setAnimation(Animation arg0)](#setAnimation-android.view.animation.Animation-) | | +| [setAnimationMatrix(Matrix arg0)](#setAnimationMatrix-android.graphics.Matrix-) | | +| [setAutoHandwritingEnabled(boolean arg0)](#setAutoHandwritingEnabled-boolean-) | | +| [setAutofillHints(String[] arg0)](#setAutofillHints-java.lang.String...-) | | +| [setAutofillId(AutofillId arg0)](#setAutofillId-android.view.autofill.AutofillId-) | | +| [setBackground(Drawable arg0)](#setBackground-android.graphics.drawable.Drawable-) | | +| [setBackgroundColor(int arg0)](#setBackgroundColor-int-) | | +| [setBackgroundDrawable(Drawable arg0)](#setBackgroundDrawable-android.graphics.drawable.Drawable-) | | +| [setBackgroundResource(int arg0)](#setBackgroundResource-int-) | | +| [setBackgroundTintBlendMode(BlendMode arg0)](#setBackgroundTintBlendMode-android.graphics.BlendMode-) | | +| [setBackgroundTintList(ColorStateList arg0)](#setBackgroundTintList-android.content.res.ColorStateList-) | | +| [setBackgroundTintMode(PorterDuff.Mode arg0)](#setBackgroundTintMode-android.graphics.PorterDuff.Mode-) | | +| [setBaseline(int arg0)](#setBaseline-int-) | | +| [setBaselineAlignBottom(boolean arg0)](#setBaselineAlignBottom-boolean-) | | +| [setBottom(int arg0)](#setBottom-int-) | | +| [setCameraDistance(float arg0)](#setCameraDistance-float-) | | +| [setClickable(boolean arg0)](#setClickable-boolean-) | | +| [setClipBounds(Rect arg0)](#setClipBounds-android.graphics.Rect-) | | +| [setClipToOutline(boolean arg0)](#setClipToOutline-boolean-) | | +| [setColorFilter(ColorFilter arg0)](#setColorFilter-android.graphics.ColorFilter-) | | +| [setColorFilter(int arg0)](#setColorFilter-int-) | | +| [setColorFilter(int arg0, PorterDuff.Mode arg1)](#setColorFilter-int-android.graphics.PorterDuff.Mode-) | | +| [setContentCaptureSession(ContentCaptureSession arg0)](#setContentCaptureSession-android.view.contentcapture.ContentCaptureSession-) | | +| [setContentDescription(CharSequence arg0)](#setContentDescription-java.lang.CharSequence-) | | +| [setContextClickable(boolean arg0)](#setContextClickable-boolean-) | | +| [setCropToPadding(boolean arg0)](#setCropToPadding-boolean-) | | +| [setDefaultFocusHighlightEnabled(boolean arg0)](#setDefaultFocusHighlightEnabled-boolean-) | | +| [setDrawingCacheBackgroundColor(int arg0)](#setDrawingCacheBackgroundColor-int-) | | +| [setDrawingCacheEnabled(boolean arg0)](#setDrawingCacheEnabled-boolean-) | | +| [setDrawingCacheQuality(int arg0)](#setDrawingCacheQuality-int-) | | +| [setDuplicateParentStateEnabled(boolean arg0)](#setDuplicateParentStateEnabled-boolean-) | | +| [setElevation(float arg0)](#setElevation-float-) | | +| [setEnabled(boolean arg0)](#setEnabled-boolean-) | | +| [setFadingEdgeLength(int arg0)](#setFadingEdgeLength-int-) | | +| [setFilterTouchesWhenObscured(boolean arg0)](#setFilterTouchesWhenObscured-boolean-) | | +| [setFitsSystemWindows(boolean arg0)](#setFitsSystemWindows-boolean-) | | +| [setFocusable(boolean arg0)](#setFocusable-boolean-) | | +| [setFocusable(int arg0)](#setFocusable-int-) | | +| [setFocusableInTouchMode(boolean arg0)](#setFocusableInTouchMode-boolean-) | | +| [setFocusedByDefault(boolean arg0)](#setFocusedByDefault-boolean-) | | +| [setForceDarkAllowed(boolean arg0)](#setForceDarkAllowed-boolean-) | | +| [setForeground(Drawable arg0)](#setForeground-android.graphics.drawable.Drawable-) | | +| [setForegroundGravity(int arg0)](#setForegroundGravity-int-) | | +| [setForegroundTintBlendMode(BlendMode arg0)](#setForegroundTintBlendMode-android.graphics.BlendMode-) | | +| [setForegroundTintList(ColorStateList arg0)](#setForegroundTintList-android.content.res.ColorStateList-) | | +| [setForegroundTintMode(PorterDuff.Mode arg0)](#setForegroundTintMode-android.graphics.PorterDuff.Mode-) | | +| [setHapticFeedbackEnabled(boolean arg0)](#setHapticFeedbackEnabled-boolean-) | | +| [setHasTransientState(boolean arg0)](#setHasTransientState-boolean-) | | +| [setHorizontalFadingEdgeEnabled(boolean arg0)](#setHorizontalFadingEdgeEnabled-boolean-) | | +| [setHorizontalScrollBarEnabled(boolean arg0)](#setHorizontalScrollBarEnabled-boolean-) | | +| [setHorizontalScrollbarThumbDrawable(Drawable arg0)](#setHorizontalScrollbarThumbDrawable-android.graphics.drawable.Drawable-) | | +| [setHorizontalScrollbarTrackDrawable(Drawable arg0)](#setHorizontalScrollbarTrackDrawable-android.graphics.drawable.Drawable-) | | +| [setHovered(boolean arg0)](#setHovered-boolean-) | | +| [setId(int arg0)](#setId-int-) | | +| [setImageAlpha(int arg0)](#setImageAlpha-int-) | | +| [setImageBitmap(Bitmap arg0)](#setImageBitmap-android.graphics.Bitmap-) | | +| [setImageDrawable(Drawable arg0)](#setImageDrawable-android.graphics.drawable.Drawable-) | | +| [setImageIcon(Icon arg0)](#setImageIcon-android.graphics.drawable.Icon-) | | +| [setImageLevel(int arg0)](#setImageLevel-int-) | | +| [setImageMatrix(Matrix arg0)](#setImageMatrix-android.graphics.Matrix-) | | +| [setImageResource(int arg0)](#setImageResource-int-) | | +| [setImageState(int[] arg0, boolean arg1)](#setImageState-int---boolean-) | | +| [setImageTintBlendMode(BlendMode arg0)](#setImageTintBlendMode-android.graphics.BlendMode-) | | +| [setImageTintList(ColorStateList arg0)](#setImageTintList-android.content.res.ColorStateList-) | | +| [setImageTintMode(PorterDuff.Mode arg0)](#setImageTintMode-android.graphics.PorterDuff.Mode-) | | +| [setImageURI(Uri arg0)](#setImageURI-android.net.Uri-) | | +| [setImportantForAccessibility(int arg0)](#setImportantForAccessibility-int-) | | +| [setImportantForAutofill(int arg0)](#setImportantForAutofill-int-) | | +| [setImportantForContentCapture(int arg0)](#setImportantForContentCapture-int-) | | +| [setKeepScreenOn(boolean arg0)](#setKeepScreenOn-boolean-) | | +| [setKeyboardNavigationCluster(boolean arg0)](#setKeyboardNavigationCluster-boolean-) | | +| [setLabelFor(int arg0)](#setLabelFor-int-) | | +| [setLayerPaint(Paint arg0)](#setLayerPaint-android.graphics.Paint-) | | +| [setLayerType(int arg0, Paint arg1)](#setLayerType-int-android.graphics.Paint-) | | +| [setLayoutDirection(int arg0)](#setLayoutDirection-int-) | | +| [setLayoutParams(ViewGroup.LayoutParams arg0)](#setLayoutParams-android.view.ViewGroup.LayoutParams-) | | +| [setLeft(int arg0)](#setLeft-int-) | | +| [setLeftTopRightBottom(int arg0, int arg1, int arg2, int arg3)](#setLeftTopRightBottom-int-int-int-int-) | | +| [setLongClickable(boolean arg0)](#setLongClickable-boolean-) | | +| [setMaskBitmapStyle(RecognitionAreaPattern pattern)](#setMaskBitmapStyle-com.aspose.barcode.component.barcodescanner.barcodepatterns.RecognitionAreaPattern-) | | +| [setMaxHeight(int arg0)](#setMaxHeight-int-) | | +| [setMaxWidth(int arg0)](#setMaxWidth-int-) | | +| [setMinimumHeight(int arg0)](#setMinimumHeight-int-) | | +| [setMinimumWidth(int arg0)](#setMinimumWidth-int-) | | +| [setNestedScrollingEnabled(boolean arg0)](#setNestedScrollingEnabled-boolean-) | | +| [setNextClusterForwardId(int arg0)](#setNextClusterForwardId-int-) | | +| [setNextFocusDownId(int arg0)](#setNextFocusDownId-int-) | | +| [setNextFocusForwardId(int arg0)](#setNextFocusForwardId-int-) | | +| [setNextFocusLeftId(int arg0)](#setNextFocusLeftId-int-) | | +| [setNextFocusRightId(int arg0)](#setNextFocusRightId-int-) | | +| [setNextFocusUpId(int arg0)](#setNextFocusUpId-int-) | | +| [setOnApplyWindowInsetsListener(View.OnApplyWindowInsetsListener arg0)](#setOnApplyWindowInsetsListener-android.view.View.OnApplyWindowInsetsListener-) | | +| [setOnCapturedPointerListener(View.OnCapturedPointerListener arg0)](#setOnCapturedPointerListener-android.view.View.OnCapturedPointerListener-) | | +| [setOnClickListener(View.OnClickListener arg0)](#setOnClickListener-android.view.View.OnClickListener-) | | +| [setOnContextClickListener(View.OnContextClickListener arg0)](#setOnContextClickListener-android.view.View.OnContextClickListener-) | | +| [setOnCreateContextMenuListener(View.OnCreateContextMenuListener arg0)](#setOnCreateContextMenuListener-android.view.View.OnCreateContextMenuListener-) | | +| [setOnDragListener(View.OnDragListener arg0)](#setOnDragListener-android.view.View.OnDragListener-) | | +| [setOnFocusChangeListener(View.OnFocusChangeListener arg0)](#setOnFocusChangeListener-android.view.View.OnFocusChangeListener-) | | +| [setOnGenericMotionListener(View.OnGenericMotionListener arg0)](#setOnGenericMotionListener-android.view.View.OnGenericMotionListener-) | | +| [setOnHoverListener(View.OnHoverListener arg0)](#setOnHoverListener-android.view.View.OnHoverListener-) | | +| [setOnKeyListener(View.OnKeyListener arg0)](#setOnKeyListener-android.view.View.OnKeyListener-) | | +| [setOnLongClickListener(View.OnLongClickListener arg0)](#setOnLongClickListener-android.view.View.OnLongClickListener-) | | +| [setOnReceiveContentListener(String[] arg0, OnReceiveContentListener arg1)](#setOnReceiveContentListener-java.lang.String---android.view.OnReceiveContentListener-) | | +| [setOnScrollChangeListener(View.OnScrollChangeListener arg0)](#setOnScrollChangeListener-android.view.View.OnScrollChangeListener-) | | +| [setOnSystemUiVisibilityChangeListener(View.OnSystemUiVisibilityChangeListener arg0)](#setOnSystemUiVisibilityChangeListener-android.view.View.OnSystemUiVisibilityChangeListener-) | | +| [setOnTouchListener(View.OnTouchListener arg0)](#setOnTouchListener-android.view.View.OnTouchListener-) | | +| [setOutlineAmbientShadowColor(int arg0)](#setOutlineAmbientShadowColor-int-) | | +| [setOutlineProvider(ViewOutlineProvider arg0)](#setOutlineProvider-android.view.ViewOutlineProvider-) | | +| [setOutlineSpotShadowColor(int arg0)](#setOutlineSpotShadowColor-int-) | | +| [setOverScrollMode(int arg0)](#setOverScrollMode-int-) | | +| [setPadding(int arg0, int arg1, int arg2, int arg3)](#setPadding-int-int-int-int-) | | +| [setPaddingRelative(int arg0, int arg1, int arg2, int arg3)](#setPaddingRelative-int-int-int-int-) | | +| [setPivotX(float arg0)](#setPivotX-float-) | | +| [setPivotY(float arg0)](#setPivotY-float-) | | +| [setPointerIcon(PointerIcon arg0)](#setPointerIcon-android.view.PointerIcon-) | | +| [setPreferKeepClear(boolean arg0)](#setPreferKeepClear-boolean-) | | +| [setPreferKeepClearRects(List arg0)](#setPreferKeepClearRects-java.util.List-android.graphics.Rect--) | | +| [setPressed(boolean arg0)](#setPressed-boolean-) | | +| [setRenderEffect(RenderEffect arg0)](#setRenderEffect-android.graphics.RenderEffect-) | | +| [setRevealOnFocusHint(boolean arg0)](#setRevealOnFocusHint-boolean-) | | +| [setRight(int arg0)](#setRight-int-) | | +| [setRotation(float arg0)](#setRotation-float-) | | +| [setRotationX(float arg0)](#setRotationX-float-) | | +| [setRotationY(float arg0)](#setRotationY-float-) | | +| [setSaveEnabled(boolean arg0)](#setSaveEnabled-boolean-) | | +| [setSaveFromParentEnabled(boolean arg0)](#setSaveFromParentEnabled-boolean-) | | +| [setScaleType(ImageView.ScaleType arg0)](#setScaleType-android.widget.ImageView.ScaleType-) | | +| [setScaleX(float arg0)](#setScaleX-float-) | | +| [setScaleY(float arg0)](#setScaleY-float-) | | +| [setScreenReaderFocusable(boolean arg0)](#setScreenReaderFocusable-boolean-) | | +| [setScrollBarDefaultDelayBeforeFade(int arg0)](#setScrollBarDefaultDelayBeforeFade-int-) | | +| [setScrollBarFadeDuration(int arg0)](#setScrollBarFadeDuration-int-) | | +| [setScrollBarSize(int arg0)](#setScrollBarSize-int-) | | +| [setScrollBarStyle(int arg0)](#setScrollBarStyle-int-) | | +| [setScrollCaptureCallback(ScrollCaptureCallback arg0)](#setScrollCaptureCallback-android.view.ScrollCaptureCallback-) | | +| [setScrollCaptureHint(int arg0)](#setScrollCaptureHint-int-) | | +| [setScrollContainer(boolean arg0)](#setScrollContainer-boolean-) | | +| [setScrollIndicators(int arg0)](#setScrollIndicators-int-) | | +| [setScrollIndicators(int arg0, int arg1)](#setScrollIndicators-int-int-) | | +| [setScrollX(int arg0)](#setScrollX-int-) | | +| [setScrollY(int arg0)](#setScrollY-int-) | | +| [setScrollbarFadingEnabled(boolean arg0)](#setScrollbarFadingEnabled-boolean-) | | +| [setSelected(boolean arg0)](#setSelected-boolean-) | | +| [setSoundEffectsEnabled(boolean arg0)](#setSoundEffectsEnabled-boolean-) | | +| [setStateDescription(CharSequence arg0)](#setStateDescription-java.lang.CharSequence-) | | +| [setStateListAnimator(StateListAnimator arg0)](#setStateListAnimator-android.animation.StateListAnimator-) | | +| [setSupportBackgroundTintList(ColorStateList arg0)](#setSupportBackgroundTintList-android.content.res.ColorStateList-) | | +| [setSupportBackgroundTintMode(PorterDuff.Mode arg0)](#setSupportBackgroundTintMode-android.graphics.PorterDuff.Mode-) | | +| [setSupportImageTintList(ColorStateList arg0)](#setSupportImageTintList-android.content.res.ColorStateList-) | | +| [setSupportImageTintMode(PorterDuff.Mode arg0)](#setSupportImageTintMode-android.graphics.PorterDuff.Mode-) | | +| [setSystemGestureExclusionRects(List arg0)](#setSystemGestureExclusionRects-java.util.List-android.graphics.Rect--) | | +| [setSystemUiVisibility(int arg0)](#setSystemUiVisibility-int-) | | +| [setTag(int arg0, Object arg1)](#setTag-int-java.lang.Object-) | | +| [setTag(Object arg0)](#setTag-java.lang.Object-) | | +| [setTextAlignment(int arg0)](#setTextAlignment-int-) | | +| [setTextDirection(int arg0)](#setTextDirection-int-) | | +| [setTooltipText(CharSequence arg0)](#setTooltipText-java.lang.CharSequence-) | | +| [setTop(int arg0)](#setTop-int-) | | +| [setTouchDelegate(TouchDelegate arg0)](#setTouchDelegate-android.view.TouchDelegate-) | | +| [setTransitionAlpha(float arg0)](#setTransitionAlpha-float-) | | +| [setTransitionName(String arg0)](#setTransitionName-java.lang.String-) | | +| [setTransitionVisibility(int arg0)](#setTransitionVisibility-int-) | | +| [setTranslationX(float arg0)](#setTranslationX-float-) | | +| [setTranslationY(float arg0)](#setTranslationY-float-) | | +| [setTranslationZ(float arg0)](#setTranslationZ-float-) | | +| [setVerticalFadingEdgeEnabled(boolean arg0)](#setVerticalFadingEdgeEnabled-boolean-) | | +| [setVerticalScrollBarEnabled(boolean arg0)](#setVerticalScrollBarEnabled-boolean-) | | +| [setVerticalScrollbarPosition(int arg0)](#setVerticalScrollbarPosition-int-) | | +| [setVerticalScrollbarThumbDrawable(Drawable arg0)](#setVerticalScrollbarThumbDrawable-android.graphics.drawable.Drawable-) | | +| [setVerticalScrollbarTrackDrawable(Drawable arg0)](#setVerticalScrollbarTrackDrawable-android.graphics.drawable.Drawable-) | | +| [setViewTranslationCallback(ViewTranslationCallback arg0)](#setViewTranslationCallback-android.view.translation.ViewTranslationCallback-) | | +| [setVisibility(int arg0)](#setVisibility-int-) | | +| [setWillNotCacheDrawing(boolean arg0)](#setWillNotCacheDrawing-boolean-) | | +| [setWillNotDraw(boolean arg0)](#setWillNotDraw-boolean-) | | +| [setWindowInsetsAnimationCallback(WindowInsetsAnimation.Callback arg0)](#setWindowInsetsAnimationCallback-android.view.WindowInsetsAnimation.Callback-) | | +| [setX(float arg0)](#setX-float-) | | +| [setY(float arg0)](#setY-float-) | | +| [setZ(float arg0)](#setZ-float-) | | +| [showContextMenu()](#showContextMenu--) | | +| [showContextMenu(float arg0, float arg1)](#showContextMenu-float-float-) | | +| [startActionMode(ActionMode.Callback arg0)](#startActionMode-android.view.ActionMode.Callback-) | | +| [startActionMode(ActionMode.Callback arg0, int arg1)](#startActionMode-android.view.ActionMode.Callback-int-) | | +| [startAnimation(Animation arg0)](#startAnimation-android.view.animation.Animation-) | | +| [startDrag(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3)](#startDrag-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-) | | +| [startDragAndDrop(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3)](#startDragAndDrop-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-) | | +| [startNestedScroll(int arg0)](#startNestedScroll-int-) | | +| [stopNestedScroll()](#stopNestedScroll--) | | +| [toString()](#toString--) | | +| [transformMatrixToGlobal(Matrix arg0)](#transformMatrixToGlobal-android.graphics.Matrix-) | | +| [transformMatrixToLocal(Matrix arg0)](#transformMatrixToLocal-android.graphics.Matrix-) | | +| [unscheduleDrawable(Drawable arg0)](#unscheduleDrawable-android.graphics.drawable.Drawable-) | | +| [unscheduleDrawable(Drawable arg0, Runnable arg1)](#unscheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-) | | +| [updateDragShadow(View.DragShadowBuilder arg0)](#updateDragShadow-android.view.View.DragShadowBuilder-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [willNotCacheDrawing()](#willNotCacheDrawing--) | | +| [willNotDraw()](#willNotDraw--) | | +### RecognitionAreaView(Context context) {#RecognitionAreaView-android.content.Context-} +``` +public RecognitionAreaView(Context context) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| contexte | android.content.Context | | + +### RecognitionAreaView(Context context, AttributeSet attrs) {#RecognitionAreaView-android.content.Context-android.util.AttributeSet-} +``` +public RecognitionAreaView(Context context, AttributeSet attrs) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| contexte | android.content.Context | | +| attrs | android.util.AttributeSet | | + +### RecognitionAreaView(Context context, AttributeSet attrs, int defStyleAttr) {#RecognitionAreaView-android.content.Context-android.util.AttributeSet-int-} +``` +public RecognitionAreaView(Context context, AttributeSet attrs, int defStyleAttr) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| contexte | android.content.Context | | +| attrs | android.util.AttributeSet | | +| defStyleAttr | int | | + +### ACCESSIBILITY_LIVE_REGION_ASSERTIVE {#ACCESSIBILITY-LIVE-REGION-ASSERTIVE} +``` +public static final int ACCESSIBILITY_LIVE_REGION_ASSERTIVE +``` + + +### ACCESSIBILITY_LIVE_REGION_NONE {#ACCESSIBILITY-LIVE-REGION-NONE} +``` +public static final int ACCESSIBILITY_LIVE_REGION_NONE +``` + + +### ACCESSIBILITY_LIVE_REGION_POLITE {#ACCESSIBILITY-LIVE-REGION-POLITE} +``` +public static final int ACCESSIBILITY_LIVE_REGION_POLITE +``` + + +### ALPHA {#ALPHA} +``` +public static final Property ALPHA +``` + + +### AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS {#AUTOFILL-FLAG-INCLUDE-NOT-IMPORTANT-VIEWS} +``` +public static final int AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DATE} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-DAY} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-MONTH} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH +``` + + +### AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR {#AUTOFILL-HINT-CREDIT-CARD-EXPIRATION-YEAR} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR +``` + + +### AUTOFILL_HINT_CREDIT_CARD_NUMBER {#AUTOFILL-HINT-CREDIT-CARD-NUMBER} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_NUMBER +``` + + +### AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE {#AUTOFILL-HINT-CREDIT-CARD-SECURITY-CODE} +``` +public static final String AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE +``` + + +### AUTOFILL_HINT_EMAIL_ADDRESS {#AUTOFILL-HINT-EMAIL-ADDRESS} +``` +public static final String AUTOFILL_HINT_EMAIL_ADDRESS +``` + + +### AUTOFILL_HINT_NAME {#AUTOFILL-HINT-NAME} +``` +public static final String AUTOFILL_HINT_NAME +``` + + +### AUTOFILL_HINT_PASSWORD {#AUTOFILL-HINT-PASSWORD} +``` +public static final String AUTOFILL_HINT_PASSWORD +``` + + +### AUTOFILL_HINT_PHONE {#AUTOFILL-HINT-PHONE} +``` +public static final String AUTOFILL_HINT_PHONE +``` + + +### AUTOFILL_HINT_POSTAL_ADDRESS {#AUTOFILL-HINT-POSTAL-ADDRESS} +``` +public static final String AUTOFILL_HINT_POSTAL_ADDRESS +``` + + +### AUTOFILL_HINT_POSTAL_CODE {#AUTOFILL-HINT-POSTAL-CODE} +``` +public static final String AUTOFILL_HINT_POSTAL_CODE +``` + + +### AUTOFILL_HINT_USERNAME {#AUTOFILL-HINT-USERNAME} +``` +public static final String AUTOFILL_HINT_USERNAME +``` + + +### AUTOFILL_TYPE_DATE {#AUTOFILL-TYPE-DATE} +``` +public static final int AUTOFILL_TYPE_DATE +``` + + +### AUTOFILL_TYPE_LIST {#AUTOFILL-TYPE-LIST} +``` +public static final int AUTOFILL_TYPE_LIST +``` + + +### AUTOFILL_TYPE_NONE {#AUTOFILL-TYPE-NONE} +``` +public static final int AUTOFILL_TYPE_NONE +``` + + +### AUTOFILL_TYPE_TEXT {#AUTOFILL-TYPE-TEXT} +``` +public static final int AUTOFILL_TYPE_TEXT +``` + + +### AUTOFILL_TYPE_TOGGLE {#AUTOFILL-TYPE-TOGGLE} +``` +public static final int AUTOFILL_TYPE_TOGGLE +``` + + +### DRAG_FLAG_ACCESSIBILITY_ACTION {#DRAG-FLAG-ACCESSIBILITY-ACTION} +``` +public static final int DRAG_FLAG_ACCESSIBILITY_ACTION +``` + + +### DRAG_FLAG_GLOBAL {#DRAG-FLAG-GLOBAL} +``` +public static final int DRAG_FLAG_GLOBAL +``` + + +### DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION {#DRAG-FLAG-GLOBAL-PERSISTABLE-URI-PERMISSION} +``` +public static final int DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION +``` + + +### DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION {#DRAG-FLAG-GLOBAL-PREFIX-URI-PERMISSION} +``` +public static final int DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION +``` + + +### DRAG_FLAG_GLOBAL_URI_READ {#DRAG-FLAG-GLOBAL-URI-READ} +``` +public static final int DRAG_FLAG_GLOBAL_URI_READ +``` + + +### DRAG_FLAG_GLOBAL_URI_WRITE {#DRAG-FLAG-GLOBAL-URI-WRITE} +``` +public static final int DRAG_FLAG_GLOBAL_URI_WRITE +``` + + +### DRAG_FLAG_OPAQUE {#DRAG-FLAG-OPAQUE} +``` +public static final int DRAG_FLAG_OPAQUE +``` + + +### DRAWING_CACHE_QUALITY_AUTO {#DRAWING-CACHE-QUALITY-AUTO} +``` +public static final int DRAWING_CACHE_QUALITY_AUTO +``` + + +### DRAWING_CACHE_QUALITY_HIGH {#DRAWING-CACHE-QUALITY-HIGH} +``` +public static final int DRAWING_CACHE_QUALITY_HIGH +``` + + +### DRAWING_CACHE_QUALITY_LOW {#DRAWING-CACHE-QUALITY-LOW} +``` +public static final int DRAWING_CACHE_QUALITY_LOW +``` + + +### FIND_VIEWS_WITH_CONTENT_DESCRIPTION {#FIND-VIEWS-WITH-CONTENT-DESCRIPTION} +``` +public static final int FIND_VIEWS_WITH_CONTENT_DESCRIPTION +``` + + +### FIND_VIEWS_WITH_TEXT {#FIND-VIEWS-WITH-TEXT} +``` +public static final int FIND_VIEWS_WITH_TEXT +``` + + +### FOCUSABLE {#FOCUSABLE} +``` +public static final int FOCUSABLE +``` + + +### FOCUSABLES_ALL {#FOCUSABLES-ALL} +``` +public static final int FOCUSABLES_ALL +``` + + +### FOCUSABLES_TOUCH_MODE {#FOCUSABLES-TOUCH-MODE} +``` +public static final int FOCUSABLES_TOUCH_MODE +``` + + +### FOCUSABLE_AUTO {#FOCUSABLE-AUTO} +``` +public static final int FOCUSABLE_AUTO +``` + + +### FOCUS_BACKWARD {#FOCUS-BACKWARD} +``` +public static final int FOCUS_BACKWARD +``` + + +### FOCUS_DOWN {#FOCUS-DOWN} +``` +public static final int FOCUS_DOWN +``` + + +### FOCUS_FORWARD {#FOCUS-FORWARD} +``` +public static final int FOCUS_FORWARD +``` + + +### FOCUS_LEFT {#FOCUS-LEFT} +``` +public static final int FOCUS_LEFT +``` + + +### FOCUS_RIGHT {#FOCUS-RIGHT} +``` +public static final int FOCUS_RIGHT +``` + + +### FOCUS_UP {#FOCUS-UP} +``` +public static final int FOCUS_UP +``` + + +### GONE {#GONE} +``` +public static final int GONE +``` + + +### HAPTIC_FEEDBACK_ENABLED {#HAPTIC-FEEDBACK-ENABLED} +``` +public static final int HAPTIC_FEEDBACK_ENABLED +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_AUTO {#IMPORTANT-FOR-ACCESSIBILITY-AUTO} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_AUTO +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_NO {#IMPORTANT-FOR-ACCESSIBILITY-NO} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_NO +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS {#IMPORTANT-FOR-ACCESSIBILITY-NO-HIDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_ACCESSIBILITY_YES {#IMPORTANT-FOR-ACCESSIBILITY-YES} +``` +public static final int IMPORTANT_FOR_ACCESSIBILITY_YES +``` + + +### IMPORTANT_FOR_AUTOFILL_AUTO {#IMPORTANT-FOR-AUTOFILL-AUTO} +``` +public static final int IMPORTANT_FOR_AUTOFILL_AUTO +``` + + +### IMPORTANT_FOR_AUTOFILL_NO {#IMPORTANT-FOR-AUTOFILL-NO} +``` +public static final int IMPORTANT_FOR_AUTOFILL_NO +``` + + +### IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-AUTOFILL-NO-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_AUTOFILL_YES {#IMPORTANT-FOR-AUTOFILL-YES} +``` +public static final int IMPORTANT_FOR_AUTOFILL_YES +``` + + +### IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-AUTOFILL-YES-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_AUTO {#IMPORTANT-FOR-CONTENT-CAPTURE-AUTO} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_AUTO +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_NO {#IMPORTANT-FOR-CONTENT-CAPTURE-NO} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_NO +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-CONTENT-CAPTURE-NO-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_YES {#IMPORTANT-FOR-CONTENT-CAPTURE-YES} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_YES +``` + + +### IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS {#IMPORTANT-FOR-CONTENT-CAPTURE-YES-EXCLUDE-DESCENDANTS} +``` +public static final int IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS +``` + + +### INVISIBLE {#INVISIBLE} +``` +public static final int INVISIBLE +``` + + +### KEEP_SCREEN_ON {#KEEP-SCREEN-ON} +``` +public static final int KEEP_SCREEN_ON +``` + + +### LAYER_TYPE_HARDWARE {#LAYER-TYPE-HARDWARE} +``` +public static final int LAYER_TYPE_HARDWARE +``` + + +### LAYER_TYPE_NONE {#LAYER-TYPE-NONE} +``` +public static final int LAYER_TYPE_NONE +``` + + +### LAYER_TYPE_SOFTWARE {#LAYER-TYPE-SOFTWARE} +``` +public static final int LAYER_TYPE_SOFTWARE +``` + + +### LAYOUT_DIRECTION_INHERIT {#LAYOUT-DIRECTION-INHERIT} +``` +public static final int LAYOUT_DIRECTION_INHERIT +``` + + +### LAYOUT_DIRECTION_LOCALE {#LAYOUT-DIRECTION-LOCALE} +``` +public static final int LAYOUT_DIRECTION_LOCALE +``` + + +### LAYOUT_DIRECTION_LTR {#LAYOUT-DIRECTION-LTR} +``` +public static final int LAYOUT_DIRECTION_LTR +``` + + +### LAYOUT_DIRECTION_RTL {#LAYOUT-DIRECTION-RTL} +``` +public static final int LAYOUT_DIRECTION_RTL +``` + + +### MEASURED_HEIGHT_STATE_SHIFT {#MEASURED-HEIGHT-STATE-SHIFT} +``` +public static final int MEASURED_HEIGHT_STATE_SHIFT +``` + + +### MEASURED_SIZE_MASK {#MEASURED-SIZE-MASK} +``` +public static final int MEASURED_SIZE_MASK +``` + + +### MEASURED_STATE_MASK {#MEASURED-STATE-MASK} +``` +public static final int MEASURED_STATE_MASK +``` + + +### MEASURED_STATE_TOO_SMALL {#MEASURED-STATE-TOO-SMALL} +``` +public static final int MEASURED_STATE_TOO_SMALL +``` + + +### NOT_FOCUSABLE {#NOT-FOCUSABLE} +``` +public static final int NOT_FOCUSABLE +``` + + +### NO_ID {#NO-ID} +``` +public static final int NO_ID +``` + + +### OVER_SCROLL_ALWAYS {#OVER-SCROLL-ALWAYS} +``` +public static final int OVER_SCROLL_ALWAYS +``` + + +### OVER_SCROLL_IF_CONTENT_SCROLLS {#OVER-SCROLL-IF-CONTENT-SCROLLS} +``` +public static final int OVER_SCROLL_IF_CONTENT_SCROLLS +``` + + +### OVER_SCROLL_NEVER {#OVER-SCROLL-NEVER} +``` +public static final int OVER_SCROLL_NEVER +``` + + +### ROTATION {#ROTATION} +``` +public static final Property ROTATION +``` + + +### ROTATION_X {#ROTATION-X} +``` +public static final Property ROTATION_X +``` + + +### ROTATION_Y {#ROTATION-Y} +``` +public static final Property ROTATION_Y +``` + + +### SCALE_X {#SCALE-X} +``` +public static final Property SCALE_X +``` + + +### SCALE_Y {#SCALE-Y} +``` +public static final Property SCALE_Y +``` + + +### SCREEN_STATE_OFF {#SCREEN-STATE-OFF} +``` +public static final int SCREEN_STATE_OFF +``` + + +### SCREEN_STATE_ON {#SCREEN-STATE-ON} +``` +public static final int SCREEN_STATE_ON +``` + + +### SCROLLBARS_INSIDE_INSET {#SCROLLBARS-INSIDE-INSET} +``` +public static final int SCROLLBARS_INSIDE_INSET +``` + + +### SCROLLBARS_INSIDE_OVERLAY {#SCROLLBARS-INSIDE-OVERLAY} +``` +public static final int SCROLLBARS_INSIDE_OVERLAY +``` + + +### SCROLLBARS_OUTSIDE_INSET {#SCROLLBARS-OUTSIDE-INSET} +``` +public static final int SCROLLBARS_OUTSIDE_INSET +``` + + +### SCROLLBARS_OUTSIDE_OVERLAY {#SCROLLBARS-OUTSIDE-OVERLAY} +``` +public static final int SCROLLBARS_OUTSIDE_OVERLAY +``` + + +### SCROLLBAR_POSITION_DEFAULT {#SCROLLBAR-POSITION-DEFAULT} +``` +public static final int SCROLLBAR_POSITION_DEFAULT +``` + + +### SCROLLBAR_POSITION_LEFT {#SCROLLBAR-POSITION-LEFT} +``` +public static final int SCROLLBAR_POSITION_LEFT +``` + + +### SCROLLBAR_POSITION_RIGHT {#SCROLLBAR-POSITION-RIGHT} +``` +public static final int SCROLLBAR_POSITION_RIGHT +``` + + +### SCROLL_AXIS_HORIZONTAL {#SCROLL-AXIS-HORIZONTAL} +``` +public static final int SCROLL_AXIS_HORIZONTAL +``` + + +### SCROLL_AXIS_NONE {#SCROLL-AXIS-NONE} +``` +public static final int SCROLL_AXIS_NONE +``` + + +### SCROLL_AXIS_VERTICAL {#SCROLL-AXIS-VERTICAL} +``` +public static final int SCROLL_AXIS_VERTICAL +``` + + +### SCROLL_CAPTURE_HINT_AUTO {#SCROLL-CAPTURE-HINT-AUTO} +``` +public static final int SCROLL_CAPTURE_HINT_AUTO +``` + + +### SCROLL_CAPTURE_HINT_EXCLUDE {#SCROLL-CAPTURE-HINT-EXCLUDE} +``` +public static final int SCROLL_CAPTURE_HINT_EXCLUDE +``` + + +### SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS {#SCROLL-CAPTURE-HINT-EXCLUDE-DESCENDANTS} +``` +public static final int SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS +``` + + +### SCROLL_CAPTURE_HINT_INCLUDE {#SCROLL-CAPTURE-HINT-INCLUDE} +``` +public static final int SCROLL_CAPTURE_HINT_INCLUDE +``` + + +### SCROLL_INDICATOR_BOTTOM {#SCROLL-INDICATOR-BOTTOM} +``` +public static final int SCROLL_INDICATOR_BOTTOM +``` + + +### SCROLL_INDICATOR_END {#SCROLL-INDICATOR-END} +``` +public static final int SCROLL_INDICATOR_END +``` + + +### SCROLL_INDICATOR_LEFT {#SCROLL-INDICATOR-LEFT} +``` +public static final int SCROLL_INDICATOR_LEFT +``` + + +### SCROLL_INDICATOR_RIGHT {#SCROLL-INDICATOR-RIGHT} +``` +public static final int SCROLL_INDICATOR_RIGHT +``` + + +### SCROLL_INDICATOR_START {#SCROLL-INDICATOR-START} +``` +public static final int SCROLL_INDICATOR_START +``` + + +### SCROLL_INDICATOR_TOP {#SCROLL-INDICATOR-TOP} +``` +public static final int SCROLL_INDICATOR_TOP +``` + + +### SOUND_EFFECTS_ENABLED {#SOUND-EFFECTS-ENABLED} +``` +public static final int SOUND_EFFECTS_ENABLED +``` + + +### STATUS_BAR_HIDDEN {#STATUS-BAR-HIDDEN} +``` +public static final int STATUS_BAR_HIDDEN +``` + + +### STATUS_BAR_VISIBLE {#STATUS-BAR-VISIBLE} +``` +public static final int STATUS_BAR_VISIBLE +``` + + +### SYSTEM_UI_FLAG_FULLSCREEN {#SYSTEM-UI-FLAG-FULLSCREEN} +``` +public static final int SYSTEM_UI_FLAG_FULLSCREEN +``` + + +### SYSTEM_UI_FLAG_HIDE_NAVIGATION {#SYSTEM-UI-FLAG-HIDE-NAVIGATION} +``` +public static final int SYSTEM_UI_FLAG_HIDE_NAVIGATION +``` + + +### SYSTEM_UI_FLAG_IMMERSIVE {#SYSTEM-UI-FLAG-IMMERSIVE} +``` +public static final int SYSTEM_UI_FLAG_IMMERSIVE +``` + + +### SYSTEM_UI_FLAG_IMMERSIVE_STICKY {#SYSTEM-UI-FLAG-IMMERSIVE-STICKY} +``` +public static final int SYSTEM_UI_FLAG_IMMERSIVE_STICKY +``` + + +### SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN {#SYSTEM-UI-FLAG-LAYOUT-FULLSCREEN} +``` +public static final int SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN +``` + + +### SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION {#SYSTEM-UI-FLAG-LAYOUT-HIDE-NAVIGATION} +``` +public static final int SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION +``` + + +### SYSTEM_UI_FLAG_LAYOUT_STABLE {#SYSTEM-UI-FLAG-LAYOUT-STABLE} +``` +public static final int SYSTEM_UI_FLAG_LAYOUT_STABLE +``` + + +### SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR {#SYSTEM-UI-FLAG-LIGHT-NAVIGATION-BAR} +``` +public static final int SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR +``` + + +### SYSTEM_UI_FLAG_LIGHT_STATUS_BAR {#SYSTEM-UI-FLAG-LIGHT-STATUS-BAR} +``` +public static final int SYSTEM_UI_FLAG_LIGHT_STATUS_BAR +``` + + +### SYSTEM_UI_FLAG_LOW_PROFILE {#SYSTEM-UI-FLAG-LOW-PROFILE} +``` +public static final int SYSTEM_UI_FLAG_LOW_PROFILE +``` + + +### SYSTEM_UI_FLAG_VISIBLE {#SYSTEM-UI-FLAG-VISIBLE} +``` +public static final int SYSTEM_UI_FLAG_VISIBLE +``` + + +### SYSTEM_UI_LAYOUT_FLAGS {#SYSTEM-UI-LAYOUT-FLAGS} +``` +public static final int SYSTEM_UI_LAYOUT_FLAGS +``` + + +### TEXT_ALIGNMENT_CENTER {#TEXT-ALIGNMENT-CENTER} +``` +public static final int TEXT_ALIGNMENT_CENTER +``` + + +### TEXT_ALIGNMENT_GRAVITY {#TEXT-ALIGNMENT-GRAVITY} +``` +public static final int TEXT_ALIGNMENT_GRAVITY +``` + + +### TEXT_ALIGNMENT_INHERIT {#TEXT-ALIGNMENT-INHERIT} +``` +public static final int TEXT_ALIGNMENT_INHERIT +``` + + +### TEXT_ALIGNMENT_TEXT_END {#TEXT-ALIGNMENT-TEXT-END} +``` +public static final int TEXT_ALIGNMENT_TEXT_END +``` + + +### TEXT_ALIGNMENT_TEXT_START {#TEXT-ALIGNMENT-TEXT-START} +``` +public static final int TEXT_ALIGNMENT_TEXT_START +``` + + +### TEXT_ALIGNMENT_VIEW_END {#TEXT-ALIGNMENT-VIEW-END} +``` +public static final int TEXT_ALIGNMENT_VIEW_END +``` + + +### TEXT_ALIGNMENT_VIEW_START {#TEXT-ALIGNMENT-VIEW-START} +``` +public static final int TEXT_ALIGNMENT_VIEW_START +``` + + +### TEXT_DIRECTION_ANY_RTL {#TEXT-DIRECTION-ANY-RTL} +``` +public static final int TEXT_DIRECTION_ANY_RTL +``` + + +### TEXT_DIRECTION_FIRST_STRONG {#TEXT-DIRECTION-FIRST-STRONG} +``` +public static final int TEXT_DIRECTION_FIRST_STRONG +``` + + +### TEXT_DIRECTION_FIRST_STRONG_LTR {#TEXT-DIRECTION-FIRST-STRONG-LTR} +``` +public static final int TEXT_DIRECTION_FIRST_STRONG_LTR +``` + + +### TEXT_DIRECTION_FIRST_STRONG_RTL {#TEXT-DIRECTION-FIRST-STRONG-RTL} +``` +public static final int TEXT_DIRECTION_FIRST_STRONG_RTL +``` + + +### TEXT_DIRECTION_INHERIT {#TEXT-DIRECTION-INHERIT} +``` +public static final int TEXT_DIRECTION_INHERIT +``` + + +### TEXT_DIRECTION_LOCALE {#TEXT-DIRECTION-LOCALE} +``` +public static final int TEXT_DIRECTION_LOCALE +``` + + +### TEXT_DIRECTION_LTR {#TEXT-DIRECTION-LTR} +``` +public static final int TEXT_DIRECTION_LTR +``` + + +### TEXT_DIRECTION_RTL {#TEXT-DIRECTION-RTL} +``` +public static final int TEXT_DIRECTION_RTL +``` + + +### TRANSLATION_X {#TRANSLATION-X} +``` +public static final Property TRANSLATION_X +``` + + +### TRANSLATION_Y {#TRANSLATION-Y} +``` +public static final Property TRANSLATION_Y +``` + + +### TRANSLATION_Z {#TRANSLATION-Z} +``` +public static final Property TRANSLATION_Z +``` + + +### VISIBLE {#VISIBLE} +``` +public static final int VISIBLE +``` + + +### X {#X} +``` +public static final Property X +``` + + +### Y {#Y} +``` +public static final Property Y +``` + + +### Z {#Z} +``` +public static final Property Z +``` + + +### findViewById(int arg0) {#-T-findViewById-int-} +``` +public final T findViewById(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +T +### findViewWithTag(Object arg0) {#-T-findViewWithTag-java.lang.Object-} +``` +public final T findViewWithTag(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +T +### requireViewById(int arg0) {#-T-requireViewById-int-} +``` +public final T requireViewById(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +T +### addChildrenForAccessibility(ArrayList arg0) {#addChildrenForAccessibility-java.util.ArrayList-android.view.View--} +``` +public void addChildrenForAccessibility(ArrayList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | + +### addExtraDataToAccessibilityNodeInfo(AccessibilityNodeInfo arg0, String arg1, Bundle arg2) {#addExtraDataToAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-java.lang.String-android.os.Bundle-} +``` +public void addExtraDataToAccessibilityNodeInfo(AccessibilityNodeInfo arg0, String arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityNodeInfo | | +| arg1 | java.lang.String | | +| arg2 | android.os.Bundle | | + +### addFocusables(ArrayList arg0, int arg1) {#addFocusables-java.util.ArrayList-android.view.View--int-} +``` +public void addFocusables(ArrayList arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | +| arg1 | int | | + +### addFocusables(ArrayList arg0, int arg1, int arg2) {#addFocusables-java.util.ArrayList-android.view.View--int-int-} +``` +public void addFocusables(ArrayList arg0, int arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | +| arg1 | int | | +| arg2 | int | | + +### addKeyboardNavigationClusters(Collection arg0, int arg1) {#addKeyboardNavigationClusters-java.util.Collection-android.view.View--int-} +``` +public void addKeyboardNavigationClusters(Collection arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | +| arg1 | int | | + +### addOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) {#addOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-} +``` +public void addOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnAttachStateChangeListener | | + +### addOnLayoutChangeListener(View.OnLayoutChangeListener arg0) {#addOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-} +``` +public void addOnLayoutChangeListener(View.OnLayoutChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnLayoutChangeListener | | + +### addOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) {#addOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-} +``` +public void addOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnUnhandledKeyEventListener | | + +### addTouchables(ArrayList arg0) {#addTouchables-java.util.ArrayList-android.view.View--} +``` +public void addTouchables(ArrayList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | + +### animate() {#animate--} +``` +public ViewPropertyAnimator animate() +``` + + + + +**Returns:** +android.view.ViewPropertyAnimator +### animateTransform(Matrix arg0) {#animateTransform-android.graphics.Matrix-} +``` +public void animateTransform(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### announceForAccessibility(CharSequence arg0) {#announceForAccessibility-java.lang.CharSequence-} +``` +public void announceForAccessibility(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### autofill(SparseArray arg0) {#autofill-android.util.SparseArray-android.view.autofill.AutofillValue--} +``` +public void autofill(SparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.SparseArray | | + +### autofill(AutofillValue arg0) {#autofill-android.view.autofill.AutofillValue-} +``` +public void autofill(AutofillValue arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.autofill.AutofillValue | | + +### bringToFront() {#bringToFront--} +``` +public void bringToFront() +``` + + + + +### buildDrawingCache() {#buildDrawingCache--} +``` +public void buildDrawingCache() +``` + + + + +### buildDrawingCache(boolean arg0) {#buildDrawingCache-boolean-} +``` +public void buildDrawingCache(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### buildLayer() {#buildLayer--} +``` +public void buildLayer() +``` + + + + +### callOnClick() {#callOnClick--} +``` +public boolean callOnClick() +``` + + + + +**Returns:** +boolean +### canResolveLayoutDirection() {#canResolveLayoutDirection--} +``` +public boolean canResolveLayoutDirection() +``` + + + + +**Returns:** +boolean +### canResolveTextAlignment() {#canResolveTextAlignment--} +``` +public boolean canResolveTextAlignment() +``` + + + + +**Returns:** +boolean +### canResolveTextDirection() {#canResolveTextDirection--} +``` +public boolean canResolveTextDirection() +``` + + + + +**Returns:** +boolean +### canScrollHorizontally(int arg0) {#canScrollHorizontally-int-} +``` +public boolean canScrollHorizontally(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### canScrollVertically(int arg0) {#canScrollVertically-int-} +``` +public boolean canScrollVertically(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### cancelDragAndDrop() {#cancelDragAndDrop--} +``` +public final void cancelDragAndDrop() +``` + + + + +### cancelLongPress() {#cancelLongPress--} +``` +public void cancelLongPress() +``` + + + + +### cancelPendingInputEvents() {#cancelPendingInputEvents--} +``` +public final void cancelPendingInputEvents() +``` + + + + +### checkInputConnectionProxy(View arg0) {#checkInputConnectionProxy-android.view.View-} +``` +public boolean checkInputConnectionProxy(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +**Returns:** +boolean +### clearAnimation() {#clearAnimation--} +``` +public void clearAnimation() +``` + + + + +### clearColorFilter() {#clearColorFilter--} +``` +public final void clearColorFilter() +``` + + + + +### clearFocus() {#clearFocus--} +``` +public void clearFocus() +``` + + + + +### clearViewTranslationCallback() {#clearViewTranslationCallback--} +``` +public void clearViewTranslationCallback() +``` + + + + +### combineMeasuredStates(int arg0, int arg1) {#combineMeasuredStates-int-int-} +``` +public static int combineMeasuredStates(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +int +### computeScroll() {#computeScroll--} +``` +public void computeScroll() +``` + + + + +### computeSystemWindowInsets(WindowInsets arg0, Rect arg1) {#computeSystemWindowInsets-android.view.WindowInsets-android.graphics.Rect-} +``` +public WindowInsets computeSystemWindowInsets(WindowInsets arg0, Rect arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | +| arg1 | android.graphics.Rect | | + +**Returns:** +android.view.WindowInsets +### createAccessibilityNodeInfo() {#createAccessibilityNodeInfo--} +``` +public AccessibilityNodeInfo createAccessibilityNodeInfo() +``` + + + + +**Returns:** +android.view.accessibility.AccessibilityNodeInfo +### createContextMenu(ContextMenu arg0) {#createContextMenu-android.view.ContextMenu-} +``` +public void createContextMenu(ContextMenu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContextMenu | | + +### destroyDrawingCache() {#destroyDrawingCache--} +``` +public void destroyDrawingCache() +``` + + + + +### dispatchApplyWindowInsets(WindowInsets arg0) {#dispatchApplyWindowInsets-android.view.WindowInsets-} +``` +public WindowInsets dispatchApplyWindowInsets(WindowInsets arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | + +**Returns:** +android.view.WindowInsets +### dispatchCapturedPointerEvent(MotionEvent arg0) {#dispatchCapturedPointerEvent-android.view.MotionEvent-} +``` +public boolean dispatchCapturedPointerEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchConfigurationChanged(Configuration arg0) {#dispatchConfigurationChanged-android.content.res.Configuration-} +``` +public void dispatchConfigurationChanged(Configuration arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.Configuration | | + +### dispatchCreateViewTranslationRequest(Map arg0, int[] arg1, TranslationCapability arg2, List arg3) {#dispatchCreateViewTranslationRequest-java.util.Map-android.view.autofill.AutofillId-long----int---android.view.translation.TranslationCapability-java.util.List-android.view.translation.ViewTranslationRequest--} +``` +public void dispatchCreateViewTranslationRequest(Map arg0, int[] arg1, TranslationCapability arg2, List arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Map | | +| arg1 | int[] | | +| arg2 | android.view.translation.TranslationCapability | | +| arg3 | java.util.List | | + +### dispatchDisplayHint(int arg0) {#dispatchDisplayHint-int-} +``` +public void dispatchDisplayHint(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### dispatchDragEvent(DragEvent arg0) {#dispatchDragEvent-android.view.DragEvent-} +``` +public boolean dispatchDragEvent(DragEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.DragEvent | | + +**Returns:** +boolean +### dispatchDrawableHotspotChanged(float arg0, float arg1) {#dispatchDrawableHotspotChanged-float-float-} +``` +public void dispatchDrawableHotspotChanged(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +### dispatchFinishTemporaryDetach() {#dispatchFinishTemporaryDetach--} +``` +public void dispatchFinishTemporaryDetach() +``` + + + + +### dispatchGenericMotionEvent(MotionEvent arg0) {#dispatchGenericMotionEvent-android.view.MotionEvent-} +``` +public boolean dispatchGenericMotionEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchKeyEvent(KeyEvent arg0) {#dispatchKeyEvent-android.view.KeyEvent-} +``` +public boolean dispatchKeyEvent(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### dispatchKeyEventPreIme(KeyEvent arg0) {#dispatchKeyEventPreIme-android.view.KeyEvent-} +``` +public boolean dispatchKeyEventPreIme(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### dispatchKeyShortcutEvent(KeyEvent arg0) {#dispatchKeyShortcutEvent-android.view.KeyEvent-} +``` +public boolean dispatchKeyShortcutEvent(KeyEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.KeyEvent | | + +**Returns:** +boolean +### dispatchNestedFling(float arg0, float arg1, boolean arg2) {#dispatchNestedFling-float-float-boolean-} +``` +public boolean dispatchNestedFling(float arg0, float arg1, boolean arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | +| arg2 | boolean | | + +**Returns:** +boolean +### dispatchNestedPreFling(float arg0, float arg1) {#dispatchNestedPreFling-float-float-} +``` +public boolean dispatchNestedPreFling(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### dispatchNestedPrePerformAccessibilityAction(int arg0, Bundle arg1) {#dispatchNestedPrePerformAccessibilityAction-int-android.os.Bundle-} +``` +public boolean dispatchNestedPrePerformAccessibilityAction(int arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.os.Bundle | | + +**Returns:** +boolean +### dispatchNestedPreScroll(int arg0, int arg1, int[] arg2, int[] arg3) {#dispatchNestedPreScroll-int-int-int---int---} +``` +public boolean dispatchNestedPreScroll(int arg0, int arg1, int[] arg2, int[] arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int[] | | +| arg3 | int[] | | + +**Returns:** +boolean +### dispatchNestedScroll(int arg0, int arg1, int arg2, int arg3, int[] arg4) {#dispatchNestedScroll-int-int-int-int-int---} +``` +public boolean dispatchNestedScroll(int arg0, int arg1, int arg2, int arg3, int[] arg4) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | +| arg4 | int[] | | + +**Returns:** +boolean +### dispatchPointerCaptureChanged(boolean arg0) {#dispatchPointerCaptureChanged-boolean-} +``` +public void dispatchPointerCaptureChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0) {#dispatchPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-} +``` +public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +**Returns:** +boolean +### dispatchProvideAutofillStructure(ViewStructure arg0, int arg1) {#dispatchProvideAutofillStructure-android.view.ViewStructure-int-} +``` +public void dispatchProvideAutofillStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### dispatchProvideStructure(ViewStructure arg0) {#dispatchProvideStructure-android.view.ViewStructure-} +``` +public void dispatchProvideStructure(ViewStructure arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | + +### dispatchScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) {#dispatchScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--} +``` +public void dispatchScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | android.graphics.Point | | +| arg2 | java.util.function.Consumer | | + +### dispatchStartTemporaryDetach() {#dispatchStartTemporaryDetach--} +``` +public void dispatchStartTemporaryDetach() +``` + + + + +### dispatchSystemUiVisibilityChanged(int arg0) {#dispatchSystemUiVisibilityChanged-int-} +``` +public void dispatchSystemUiVisibilityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### dispatchTouchEvent(MotionEvent arg0) {#dispatchTouchEvent-android.view.MotionEvent-} +``` +public boolean dispatchTouchEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchTrackballEvent(MotionEvent arg0) {#dispatchTrackballEvent-android.view.MotionEvent-} +``` +public boolean dispatchTrackballEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### dispatchUnhandledMove(View arg0, int arg1) {#dispatchUnhandledMove-android.view.View-int-} +``` +public boolean dispatchUnhandledMove(View arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | +| arg1 | int | | + +**Returns:** +boolean +### dispatchWindowFocusChanged(boolean arg0) {#dispatchWindowFocusChanged-boolean-} +``` +public void dispatchWindowFocusChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### dispatchWindowInsetsAnimationEnd(WindowInsetsAnimation arg0) {#dispatchWindowInsetsAnimationEnd-android.view.WindowInsetsAnimation-} +``` +public void dispatchWindowInsetsAnimationEnd(WindowInsetsAnimation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation | | + +### dispatchWindowInsetsAnimationPrepare(WindowInsetsAnimation arg0) {#dispatchWindowInsetsAnimationPrepare-android.view.WindowInsetsAnimation-} +``` +public void dispatchWindowInsetsAnimationPrepare(WindowInsetsAnimation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation | | + +### dispatchWindowInsetsAnimationProgress(WindowInsets arg0, List arg1) {#dispatchWindowInsetsAnimationProgress-android.view.WindowInsets-java.util.List-android.view.WindowInsetsAnimation--} +``` +public WindowInsets dispatchWindowInsetsAnimationProgress(WindowInsets arg0, List arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | +| arg1 | java.util.List | | + +**Returns:** +android.view.WindowInsets +### dispatchWindowInsetsAnimationStart(WindowInsetsAnimation arg0, WindowInsetsAnimation.Bounds arg1) {#dispatchWindowInsetsAnimationStart-android.view.WindowInsetsAnimation-android.view.WindowInsetsAnimation.Bounds-} +``` +public WindowInsetsAnimation.Bounds dispatchWindowInsetsAnimationStart(WindowInsetsAnimation arg0, WindowInsetsAnimation.Bounds arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation | | +| arg1 | android.view.WindowInsetsAnimation.Bounds | | + +**Returns:** +android.view.WindowInsetsAnimation.Bounds +### dispatchWindowSystemUiVisiblityChanged(int arg0) {#dispatchWindowSystemUiVisiblityChanged-int-} +``` +public void dispatchWindowSystemUiVisiblityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### dispatchWindowVisibilityChanged(int arg0) {#dispatchWindowVisibilityChanged-int-} +``` +public void dispatchWindowVisibilityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### draw(Canvas arg0) {#draw-android.graphics.Canvas-} +``` +public void draw(Canvas arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Canvas | | + +### drawableHotspotChanged(float arg0, float arg1) {#drawableHotspotChanged-float-float-} +``` +public void drawableHotspotChanged(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### findFocus() {#findFocus--} +``` +public View findFocus() +``` + + + + +**Returns:** +android.view.View +### findOnBackInvokedDispatcher() {#findOnBackInvokedDispatcher--} +``` +public final OnBackInvokedDispatcher findOnBackInvokedDispatcher() +``` + + + + +**Returns:** +android.window.OnBackInvokedDispatcher +### findViewsWithText(ArrayList arg0, CharSequence arg1, int arg2) {#findViewsWithText-java.util.ArrayList-android.view.View--java.lang.CharSequence-int-} +``` +public void findViewsWithText(ArrayList arg0, CharSequence arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.ArrayList | | +| arg1 | java.lang.CharSequence | | +| arg2 | int | | + +### focusSearch(int arg0) {#focusSearch-int-} +``` +public View focusSearch(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +android.view.View +### forceHasOverlappingRendering(boolean arg0) {#forceHasOverlappingRendering-boolean-} +``` +public void forceHasOverlappingRendering(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### forceLayout() {#forceLayout--} +``` +public void forceLayout() +``` + + + + +### gatherTransparentRegion(Region arg0) {#gatherTransparentRegion-android.graphics.Region-} +``` +public boolean gatherTransparentRegion(Region arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Region | | + +**Returns:** +boolean +### generateDisplayHash(String arg0, Rect arg1, Executor arg2, DisplayHashResultCallback arg3) {#generateDisplayHash-java.lang.String-android.graphics.Rect-java.util.concurrent.Executor-android.view.displayhash.DisplayHashResultCallback-} +``` +public void generateDisplayHash(String arg0, Rect arg1, Executor arg2, DisplayHashResultCallback arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | android.graphics.Rect | | +| arg2 | java.util.concurrent.Executor | | +| arg3 | android.view.displayhash.DisplayHashResultCallback | | + +### generateViewId() {#generateViewId--} +``` +public static int generateViewId() +``` + + + + +**Returns:** +int +### getAccessibilityClassName() {#getAccessibilityClassName--} +``` +public CharSequence getAccessibilityClassName() +``` + + + + +**Returns:** +java.lang.CharSequence +### getAccessibilityDelegate() {#getAccessibilityDelegate--} +``` +public View.AccessibilityDelegate getAccessibilityDelegate() +``` + + + + +**Returns:** +android.view.View.AccessibilityDelegate +### getAccessibilityLiveRegion() {#getAccessibilityLiveRegion--} +``` +public int getAccessibilityLiveRegion() +``` + + + + +**Returns:** +int +### getAccessibilityNodeProvider() {#getAccessibilityNodeProvider--} +``` +public AccessibilityNodeProvider getAccessibilityNodeProvider() +``` + + + + +**Returns:** +android.view.accessibility.AccessibilityNodeProvider +### getAccessibilityPaneTitle() {#getAccessibilityPaneTitle--} +``` +public CharSequence getAccessibilityPaneTitle() +``` + + + + +**Returns:** +java.lang.CharSequence +### getAccessibilityTraversalAfter() {#getAccessibilityTraversalAfter--} +``` +public int getAccessibilityTraversalAfter() +``` + + + + +**Returns:** +int +### getAccessibilityTraversalBefore() {#getAccessibilityTraversalBefore--} +``` +public int getAccessibilityTraversalBefore() +``` + + + + +**Returns:** +int +### getAdjustViewBounds() {#getAdjustViewBounds--} +``` +public boolean getAdjustViewBounds() +``` + + + + +**Returns:** +boolean +### getAlpha() {#getAlpha--} +``` +public float getAlpha() +``` + + + + +**Returns:** +float +### getAnimation() {#getAnimation--} +``` +public Animation getAnimation() +``` + + + + +**Returns:** +android.view.animation.Animation +### getAnimationMatrix() {#getAnimationMatrix--} +``` +public Matrix getAnimationMatrix() +``` + + + + +**Returns:** +android.graphics.Matrix +### getApplicationWindowToken() {#getApplicationWindowToken--} +``` +public IBinder getApplicationWindowToken() +``` + + + + +**Returns:** +android.os.IBinder +### getAttributeResolutionStack(int arg0) {#getAttributeResolutionStack-int-} +``` +public int[] getAttributeResolutionStack(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +int[] +### getAttributeSourceResourceMap() {#getAttributeSourceResourceMap--} +``` +public Map getAttributeSourceResourceMap() +``` + + + + +**Returns:** +java.util.Map +### getAutofillHints() {#getAutofillHints--} +``` +public String[] getAutofillHints() +``` + + + + +**Returns:** +java.lang.String[] +### getAutofillId() {#getAutofillId--} +``` +public final AutofillId getAutofillId() +``` + + + + +**Returns:** +android.view.autofill.AutofillId +### getAutofillType() {#getAutofillType--} +``` +public int getAutofillType() +``` + + + + +**Returns:** +int +### getAutofillValue() {#getAutofillValue--} +``` +public AutofillValue getAutofillValue() +``` + + + + +**Returns:** +android.view.autofill.AutofillValue +### getBackground() {#getBackground--} +``` +public Drawable getBackground() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getBackgroundTintBlendMode() {#getBackgroundTintBlendMode--} +``` +public BlendMode getBackgroundTintBlendMode() +``` + + + + +**Returns:** +android.graphics.BlendMode +### getBackgroundTintList() {#getBackgroundTintList--} +``` +public ColorStateList getBackgroundTintList() +``` + + + + +**Returns:** +android.content.res.ColorStateList +### getBackgroundTintMode() {#getBackgroundTintMode--} +``` +public PorterDuff.Mode getBackgroundTintMode() +``` + + + + +**Returns:** +android.graphics.PorterDuff.Mode +### getBaseline() {#getBaseline--} +``` +public int getBaseline() +``` + + + + +**Returns:** +int +### getBaselineAlignBottom() {#getBaselineAlignBottom--} +``` +public boolean getBaselineAlignBottom() +``` + + + + +**Returns:** +boolean +### getBottom() {#getBottom--} +``` +public final int getBottom() +``` + + + + +**Returns:** +int +### getCameraDistance() {#getCameraDistance--} +``` +public float getCameraDistance() +``` + + + + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getClipBounds() {#getClipBounds--} +``` +public Rect getClipBounds() +``` + + + + +**Returns:** +android.graphics.Rect +### getClipBounds(Rect arg0) {#getClipBounds-android.graphics.Rect-} +``` +public boolean getClipBounds(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### getClipToOutline() {#getClipToOutline--} +``` +public final boolean getClipToOutline() +``` + + + + +**Returns:** +boolean +### getColorFilter() {#getColorFilter--} +``` +public ColorFilter getColorFilter() +``` + + + + +**Returns:** +android.graphics.ColorFilter +### getContentCaptureSession() {#getContentCaptureSession--} +``` +public final ContentCaptureSession getContentCaptureSession() +``` + + + + +**Returns:** +android.view.contentcapture.ContentCaptureSession +### getContentDescription() {#getContentDescription--} +``` +public CharSequence getContentDescription() +``` + + + + +**Returns:** +java.lang.CharSequence +### getContext() {#getContext--} +``` +public final Context getContext() +``` + + + + +**Returns:** +android.content.Context +### getCropToPadding() {#getCropToPadding--} +``` +public boolean getCropToPadding() +``` + + + + +**Returns:** +boolean +### getDefaultFocusHighlightEnabled() {#getDefaultFocusHighlightEnabled--} +``` +public final boolean getDefaultFocusHighlightEnabled() +``` + + + + +**Returns:** +boolean +### getDefaultSize(int arg0, int arg1) {#getDefaultSize-int-int-} +``` +public static int getDefaultSize(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +int +### getDisplay() {#getDisplay--} +``` +public Display getDisplay() +``` + + + + +**Returns:** +android.view.Display +### getDrawable() {#getDrawable--} +``` +public Drawable getDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getDrawableState() {#getDrawableState--} +``` +public final int[] getDrawableState() +``` + + + + +**Returns:** +int[] +### getDrawingCache() {#getDrawingCache--} +``` +public Bitmap getDrawingCache() +``` + + + + +**Returns:** +android.graphics.Bitmap +### getDrawingCache(boolean arg0) {#getDrawingCache-boolean-} +``` +public Bitmap getDrawingCache(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +**Returns:** +android.graphics.Bitmap +### getDrawingCacheBackgroundColor() {#getDrawingCacheBackgroundColor--} +``` +public int getDrawingCacheBackgroundColor() +``` + + + + +**Returns:** +int +### getDrawingCacheQuality() {#getDrawingCacheQuality--} +``` +public int getDrawingCacheQuality() +``` + + + + +**Returns:** +int +### getDrawingRect(Rect arg0) {#getDrawingRect-android.graphics.Rect-} +``` +public void getDrawingRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getDrawingTime() {#getDrawingTime--} +``` +public long getDrawingTime() +``` + + + + +**Returns:** +long +### getElevation() {#getElevation--} +``` +public float getElevation() +``` + + + + +**Returns:** +float +### getExplicitStyle() {#getExplicitStyle--} +``` +public int getExplicitStyle() +``` + + + + +**Returns:** +int +### getFilterTouchesWhenObscured() {#getFilterTouchesWhenObscured--} +``` +public boolean getFilterTouchesWhenObscured() +``` + + + + +**Returns:** +boolean +### getFitsSystemWindows() {#getFitsSystemWindows--} +``` +public boolean getFitsSystemWindows() +``` + + + + +**Returns:** +boolean +### getFocusable() {#getFocusable--} +``` +public int getFocusable() +``` + + + + +**Returns:** +int +### getFocusables(int arg0) {#getFocusables-int-} +``` +public ArrayList getFocusables(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.util.ArrayList +### getFocusedRect(Rect arg0) {#getFocusedRect-android.graphics.Rect-} +``` +public void getFocusedRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getForeground() {#getForeground--} +``` +public Drawable getForeground() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getForegroundGravity() {#getForegroundGravity--} +``` +public int getForegroundGravity() +``` + + + + +**Returns:** +int +### getForegroundTintBlendMode() {#getForegroundTintBlendMode--} +``` +public BlendMode getForegroundTintBlendMode() +``` + + + + +**Returns:** +android.graphics.BlendMode +### getForegroundTintList() {#getForegroundTintList--} +``` +public ColorStateList getForegroundTintList() +``` + + + + +**Returns:** +android.content.res.ColorStateList +### getForegroundTintMode() {#getForegroundTintMode--} +``` +public PorterDuff.Mode getForegroundTintMode() +``` + + + + +**Returns:** +android.graphics.PorterDuff.Mode +### getGlobalVisibleRect(Rect arg0) {#getGlobalVisibleRect-android.graphics.Rect-} +``` +public final boolean getGlobalVisibleRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### getGlobalVisibleRect(Rect arg0, Point arg1) {#getGlobalVisibleRect-android.graphics.Rect-android.graphics.Point-} +``` +public boolean getGlobalVisibleRect(Rect arg0, Point arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | android.graphics.Point | | + +**Returns:** +boolean +### getHandler() {#getHandler--} +``` +public Handler getHandler() +``` + + + + +**Returns:** +android.os.Handler +### getHasOverlappingRendering() {#getHasOverlappingRendering--} +``` +public final boolean getHasOverlappingRendering() +``` + + + + +**Returns:** +boolean +### getHeight() {#getHeight--} +``` +public final int getHeight() +``` + + + + +**Returns:** +int +### getHitRect(Rect arg0) {#getHitRect-android.graphics.Rect-} +``` +public void getHitRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getHorizontalFadingEdgeLength() {#getHorizontalFadingEdgeLength--} +``` +public int getHorizontalFadingEdgeLength() +``` + + + + +**Returns:** +int +### getHorizontalScrollbarThumbDrawable() {#getHorizontalScrollbarThumbDrawable--} +``` +public Drawable getHorizontalScrollbarThumbDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getHorizontalScrollbarTrackDrawable() {#getHorizontalScrollbarTrackDrawable--} +``` +public Drawable getHorizontalScrollbarTrackDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getId() {#getId--} +``` +public int getId() +``` + + + + +**Returns:** +int +### getImageAlpha() {#getImageAlpha--} +``` +public int getImageAlpha() +``` + + + + +**Returns:** +int +### getImageMatrix() {#getImageMatrix--} +``` +public Matrix getImageMatrix() +``` + + + + +**Returns:** +android.graphics.Matrix +### getImageTintBlendMode() {#getImageTintBlendMode--} +``` +public BlendMode getImageTintBlendMode() +``` + + + + +**Returns:** +android.graphics.BlendMode +### getImageTintList() {#getImageTintList--} +``` +public ColorStateList getImageTintList() +``` + + + + +**Returns:** +android.content.res.ColorStateList +### getImageTintMode() {#getImageTintMode--} +``` +public PorterDuff.Mode getImageTintMode() +``` + + + + +**Returns:** +android.graphics.PorterDuff.Mode +### getImportantForAccessibility() {#getImportantForAccessibility--} +``` +public int getImportantForAccessibility() +``` + + + + +**Returns:** +int +### getImportantForAutofill() {#getImportantForAutofill--} +``` +public int getImportantForAutofill() +``` + + + + +**Returns:** +int +### getImportantForContentCapture() {#getImportantForContentCapture--} +``` +public int getImportantForContentCapture() +``` + + + + +**Returns:** +int +### getKeepScreenOn() {#getKeepScreenOn--} +``` +public boolean getKeepScreenOn() +``` + + + + +**Returns:** +boolean +### getKeyDispatcherState() {#getKeyDispatcherState--} +``` +public KeyEvent.DispatcherState getKeyDispatcherState() +``` + + + + +**Returns:** +android.view.KeyEvent.DispatcherState +### getLabelFor() {#getLabelFor--} +``` +public int getLabelFor() +``` + + + + +**Returns:** +int +### getLayerType() {#getLayerType--} +``` +public int getLayerType() +``` + + + + +**Returns:** +int +### getLayoutDirection() {#getLayoutDirection--} +``` +public int getLayoutDirection() +``` + + + + +**Returns:** +int +### getLayoutParams() {#getLayoutParams--} +``` +public ViewGroup.LayoutParams getLayoutParams() +``` + + + + +**Returns:** +android.view.ViewGroup.LayoutParams +### getLeft() {#getLeft--} +``` +public final int getLeft() +``` + + + + +**Returns:** +int +### getLocalVisibleRect(Rect arg0) {#getLocalVisibleRect-android.graphics.Rect-} +``` +public final boolean getLocalVisibleRect(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### getLocationInSurface(int[] arg0) {#getLocationInSurface-int---} +``` +public void getLocationInSurface(int[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | + +### getLocationInWindow(int[] arg0) {#getLocationInWindow-int---} +``` +public void getLocationInWindow(int[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | + +### getLocationOnScreen(int[] arg0) {#getLocationOnScreen-int---} +``` +public void getLocationOnScreen(int[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | + +### getMatrix() {#getMatrix--} +``` +public Matrix getMatrix() +``` + + + + +**Returns:** +android.graphics.Matrix +### getMaxHeight() {#getMaxHeight--} +``` +public int getMaxHeight() +``` + + + + +**Returns:** +int +### getMaxWidth() {#getMaxWidth--} +``` +public int getMaxWidth() +``` + + + + +**Returns:** +int +### getMeasuredHeight() {#getMeasuredHeight--} +``` +public final int getMeasuredHeight() +``` + + + + +**Returns:** +int +### getMeasuredHeightAndState() {#getMeasuredHeightAndState--} +``` +public final int getMeasuredHeightAndState() +``` + + + + +**Returns:** +int +### getMeasuredState() {#getMeasuredState--} +``` +public final int getMeasuredState() +``` + + + + +**Returns:** +int +### getMeasuredWidth() {#getMeasuredWidth--} +``` +public final int getMeasuredWidth() +``` + + + + +**Returns:** +int +### getMeasuredWidthAndState() {#getMeasuredWidthAndState--} +``` +public final int getMeasuredWidthAndState() +``` + + + + +**Returns:** +int +### getMinimumHeight() {#getMinimumHeight--} +``` +public int getMinimumHeight() +``` + + + + +**Returns:** +int +### getMinimumWidth() {#getMinimumWidth--} +``` +public int getMinimumWidth() +``` + + + + +**Returns:** +int +### getNextClusterForwardId() {#getNextClusterForwardId--} +``` +public int getNextClusterForwardId() +``` + + + + +**Returns:** +int +### getNextFocusDownId() {#getNextFocusDownId--} +``` +public int getNextFocusDownId() +``` + + + + +**Returns:** +int +### getNextFocusForwardId() {#getNextFocusForwardId--} +``` +public int getNextFocusForwardId() +``` + + + + +**Returns:** +int +### getNextFocusLeftId() {#getNextFocusLeftId--} +``` +public int getNextFocusLeftId() +``` + + + + +**Returns:** +int +### getNextFocusRightId() {#getNextFocusRightId--} +``` +public int getNextFocusRightId() +``` + + + + +**Returns:** +int +### getNextFocusUpId() {#getNextFocusUpId--} +``` +public int getNextFocusUpId() +``` + + + + +**Returns:** +int +### getOnFocusChangeListener() {#getOnFocusChangeListener--} +``` +public View.OnFocusChangeListener getOnFocusChangeListener() +``` + + + + +**Returns:** +android.view.View.OnFocusChangeListener +### getOutlineAmbientShadowColor() {#getOutlineAmbientShadowColor--} +``` +public int getOutlineAmbientShadowColor() +``` + + + + +**Returns:** +int +### getOutlineProvider() {#getOutlineProvider--} +``` +public ViewOutlineProvider getOutlineProvider() +``` + + + + +**Returns:** +android.view.ViewOutlineProvider +### getOutlineSpotShadowColor() {#getOutlineSpotShadowColor--} +``` +public int getOutlineSpotShadowColor() +``` + + + + +**Returns:** +int +### getOverScrollMode() {#getOverScrollMode--} +``` +public int getOverScrollMode() +``` + + + + +**Returns:** +int +### getOverlay() {#getOverlay--} +``` +public ViewOverlay getOverlay() +``` + + + + +**Returns:** +android.view.ViewOverlay +### getPaddingBottom() {#getPaddingBottom--} +``` +public int getPaddingBottom() +``` + + + + +**Returns:** +int +### getPaddingEnd() {#getPaddingEnd--} +``` +public int getPaddingEnd() +``` + + + + +**Returns:** +int +### getPaddingLeft() {#getPaddingLeft--} +``` +public int getPaddingLeft() +``` + + + + +**Returns:** +int +### getPaddingRight() {#getPaddingRight--} +``` +public int getPaddingRight() +``` + + + + +**Returns:** +int +### getPaddingStart() {#getPaddingStart--} +``` +public int getPaddingStart() +``` + + + + +**Returns:** +int +### getPaddingTop() {#getPaddingTop--} +``` +public int getPaddingTop() +``` + + + + +**Returns:** +int +### getParent() {#getParent--} +``` +public final ViewParent getParent() +``` + + + + +**Returns:** +android.view.ViewParent +### getParentForAccessibility() {#getParentForAccessibility--} +``` +public ViewParent getParentForAccessibility() +``` + + + + +**Returns:** +android.view.ViewParent +### getPivotX() {#getPivotX--} +``` +public float getPivotX() +``` + + + + +**Returns:** +float +### getPivotY() {#getPivotY--} +``` +public float getPivotY() +``` + + + + +**Returns:** +float +### getPointerIcon() {#getPointerIcon--} +``` +public PointerIcon getPointerIcon() +``` + + + + +**Returns:** +android.view.PointerIcon +### getPreferKeepClearRects() {#getPreferKeepClearRects--} +``` +public final List getPreferKeepClearRects() +``` + + + + +**Returns:** +java.util.List +### getReceiveContentMimeTypes() {#getReceiveContentMimeTypes--} +``` +public String[] getReceiveContentMimeTypes() +``` + + + + +**Returns:** +java.lang.String[] +### getResources() {#getResources--} +``` +public Resources getResources() +``` + + + + +**Returns:** +android.content.res.Resources +### getRevealOnFocusHint() {#getRevealOnFocusHint--} +``` +public final boolean getRevealOnFocusHint() +``` + + + + +**Returns:** +boolean +### getRight() {#getRight--} +``` +public final int getRight() +``` + + + + +**Returns:** +int +### getRootSurfaceControl() {#getRootSurfaceControl--} +``` +public AttachedSurfaceControl getRootSurfaceControl() +``` + + + + +**Returns:** +android.view.AttachedSurfaceControl +### getRootView() {#getRootView--} +``` +public View getRootView() +``` + + + + +**Returns:** +android.view.View +### getRootWindowInsets() {#getRootWindowInsets--} +``` +public WindowInsets getRootWindowInsets() +``` + + + + +**Returns:** +android.view.WindowInsets +### getRotation() {#getRotation--} +``` +public float getRotation() +``` + + + + +**Returns:** +float +### getRotationX() {#getRotationX--} +``` +public float getRotationX() +``` + + + + +**Returns:** +float +### getRotationY() {#getRotationY--} +``` +public float getRotationY() +``` + + + + +**Returns:** +float +### getScaleType() {#getScaleType--} +``` +public ImageView.ScaleType getScaleType() +``` + + + + +**Returns:** +android.widget.ImageView.ScaleType +### getScaleX() {#getScaleX--} +``` +public float getScaleX() +``` + + + + +**Returns:** +float +### getScaleY() {#getScaleY--} +``` +public float getScaleY() +``` + + + + +**Returns:** +float +### getScrollBarDefaultDelayBeforeFade() {#getScrollBarDefaultDelayBeforeFade--} +``` +public int getScrollBarDefaultDelayBeforeFade() +``` + + + + +**Returns:** +int +### getScrollBarFadeDuration() {#getScrollBarFadeDuration--} +``` +public int getScrollBarFadeDuration() +``` + + + + +**Returns:** +int +### getScrollBarSize() {#getScrollBarSize--} +``` +public int getScrollBarSize() +``` + + + + +**Returns:** +int +### getScrollBarStyle() {#getScrollBarStyle--} +``` +public int getScrollBarStyle() +``` + + + + +**Returns:** +int +### getScrollCaptureHint() {#getScrollCaptureHint--} +``` +public int getScrollCaptureHint() +``` + + + + +**Returns:** +int +### getScrollIndicators() {#getScrollIndicators--} +``` +public int getScrollIndicators() +``` + + + + +**Returns:** +int +### getScrollX() {#getScrollX--} +``` +public final int getScrollX() +``` + + + + +**Returns:** +int +### getScrollY() {#getScrollY--} +``` +public final int getScrollY() +``` + + + + +**Returns:** +int +### getSolidColor() {#getSolidColor--} +``` +public int getSolidColor() +``` + + + + +**Returns:** +int +### getSourceLayoutResId() {#getSourceLayoutResId--} +``` +public int getSourceLayoutResId() +``` + + + + +**Returns:** +int +### getStateDescription() {#getStateDescription--} +``` +public final CharSequence getStateDescription() +``` + + + + +**Returns:** +java.lang.CharSequence +### getStateListAnimator() {#getStateListAnimator--} +``` +public StateListAnimator getStateListAnimator() +``` + + + + +**Returns:** +android.animation.StateListAnimator +### getSupportBackgroundTintList() {#getSupportBackgroundTintList--} +``` +public ColorStateList getSupportBackgroundTintList() +``` + + + + +**Returns:** +android.content.res.ColorStateList +### getSupportBackgroundTintMode() {#getSupportBackgroundTintMode--} +``` +public PorterDuff.Mode getSupportBackgroundTintMode() +``` + + + + +**Returns:** +android.graphics.PorterDuff.Mode +### getSupportImageTintList() {#getSupportImageTintList--} +``` +public ColorStateList getSupportImageTintList() +``` + + + + +**Returns:** +android.content.res.ColorStateList +### getSupportImageTintMode() {#getSupportImageTintMode--} +``` +public PorterDuff.Mode getSupportImageTintMode() +``` + + + + +**Returns:** +android.graphics.PorterDuff.Mode +### getSystemGestureExclusionRects() {#getSystemGestureExclusionRects--} +``` +public List getSystemGestureExclusionRects() +``` + + + + +**Returns:** +java.util.List +### getSystemUiVisibility() {#getSystemUiVisibility--} +``` +public int getSystemUiVisibility() +``` + + + + +**Returns:** +int +### getTag() {#getTag--} +``` +public Object getTag() +``` + + + + +**Returns:** +java.lang.Object +### getTag(int arg0) {#getTag-int-} +``` +public Object getTag(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.Object +### getTextAlignment() {#getTextAlignment--} +``` +public int getTextAlignment() +``` + + + + +**Returns:** +int +### getTextDirection() {#getTextDirection--} +``` +public int getTextDirection() +``` + + + + +**Returns:** +int +### getTooltipText() {#getTooltipText--} +``` +public CharSequence getTooltipText() +``` + + + + +**Returns:** +java.lang.CharSequence +### getTop() {#getTop--} +``` +public final int getTop() +``` + + + + +**Returns:** +int +### getTouchDelegate() {#getTouchDelegate--} +``` +public TouchDelegate getTouchDelegate() +``` + + + + +**Returns:** +android.view.TouchDelegate +### getTouchables() {#getTouchables--} +``` +public ArrayList getTouchables() +``` + + + + +**Returns:** +java.util.ArrayList +### getTransitionAlpha() {#getTransitionAlpha--} +``` +public float getTransitionAlpha() +``` + + + + +**Returns:** +float +### getTransitionName() {#getTransitionName--} +``` +public String getTransitionName() +``` + + + + +**Returns:** +java.lang.String +### getTranslationX() {#getTranslationX--} +``` +public float getTranslationX() +``` + + + + +**Returns:** +float +### getTranslationY() {#getTranslationY--} +``` +public float getTranslationY() +``` + + + + +**Returns:** +float +### getTranslationZ() {#getTranslationZ--} +``` +public float getTranslationZ() +``` + + + + +**Returns:** +float +### getUniqueDrawingId() {#getUniqueDrawingId--} +``` +public long getUniqueDrawingId() +``` + + + + +**Returns:** +long +### getVerticalFadingEdgeLength() {#getVerticalFadingEdgeLength--} +``` +public int getVerticalFadingEdgeLength() +``` + + + + +**Returns:** +int +### getVerticalScrollbarPosition() {#getVerticalScrollbarPosition--} +``` +public int getVerticalScrollbarPosition() +``` + + + + +**Returns:** +int +### getVerticalScrollbarThumbDrawable() {#getVerticalScrollbarThumbDrawable--} +``` +public Drawable getVerticalScrollbarThumbDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getVerticalScrollbarTrackDrawable() {#getVerticalScrollbarTrackDrawable--} +``` +public Drawable getVerticalScrollbarTrackDrawable() +``` + + + + +**Returns:** +android.graphics.drawable.Drawable +### getVerticalScrollbarWidth() {#getVerticalScrollbarWidth--} +``` +public int getVerticalScrollbarWidth() +``` + + + + +**Returns:** +int +### getViewTranslationResponse() {#getViewTranslationResponse--} +``` +public ViewTranslationResponse getViewTranslationResponse() +``` + + + + +**Returns:** +android.view.translation.ViewTranslationResponse +### getViewTreeObserver() {#getViewTreeObserver--} +``` +public ViewTreeObserver getViewTreeObserver() +``` + + + + +**Returns:** +android.view.ViewTreeObserver +### getVisibility() {#getVisibility--} +``` +public int getVisibility() +``` + + + + +**Returns:** +int +### getWidth() {#getWidth--} +``` +public final int getWidth() +``` + + + + +**Returns:** +int +### getWindowId() {#getWindowId--} +``` +public WindowId getWindowId() +``` + + + + +**Returns:** +android.view.WindowId +### getWindowInsetsController() {#getWindowInsetsController--} +``` +public WindowInsetsController getWindowInsetsController() +``` + + + + +**Returns:** +android.view.WindowInsetsController +### getWindowSystemUiVisibility() {#getWindowSystemUiVisibility--} +``` +public int getWindowSystemUiVisibility() +``` + + + + +**Returns:** +int +### getWindowToken() {#getWindowToken--} +``` +public IBinder getWindowToken() +``` + + + + +**Returns:** +android.os.IBinder +### getWindowVisibility() {#getWindowVisibility--} +``` +public int getWindowVisibility() +``` + + + + +**Returns:** +int +### getWindowVisibleDisplayFrame(Rect arg0) {#getWindowVisibleDisplayFrame-android.graphics.Rect-} +``` +public void getWindowVisibleDisplayFrame(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### getX() {#getX--} +``` +public float getX() +``` + + + + +**Returns:** +float +### getY() {#getY--} +``` +public float getY() +``` + + + + +**Returns:** +float +### getZ() {#getZ--} +``` +public float getZ() +``` + + + + +**Returns:** +float +### hasExplicitFocusable() {#hasExplicitFocusable--} +``` +public boolean hasExplicitFocusable() +``` + + + + +**Returns:** +boolean +### hasFocus() {#hasFocus--} +``` +public boolean hasFocus() +``` + + + + +**Returns:** +boolean +### hasFocusable() {#hasFocusable--} +``` +public boolean hasFocusable() +``` + + + + +**Returns:** +boolean +### hasNestedScrollingParent() {#hasNestedScrollingParent--} +``` +public boolean hasNestedScrollingParent() +``` + + + + +**Returns:** +boolean +### hasOnClickListeners() {#hasOnClickListeners--} +``` +public boolean hasOnClickListeners() +``` + + + + +**Returns:** +boolean +### hasOnLongClickListeners() {#hasOnLongClickListeners--} +``` +public boolean hasOnLongClickListeners() +``` + + + + +**Returns:** +boolean +### hasOverlappingRendering() {#hasOverlappingRendering--} +``` +public boolean hasOverlappingRendering() +``` + + + + +**Returns:** +boolean +### hasPointerCapture() {#hasPointerCapture--} +``` +public boolean hasPointerCapture() +``` + + + + +**Returns:** +boolean +### hasTransientState() {#hasTransientState--} +``` +public boolean hasTransientState() +``` + + + + +**Returns:** +boolean +### hasWindowFocus() {#hasWindowFocus--} +``` +public boolean hasWindowFocus() +``` + + + + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### inflate(Context arg0, int arg1, ViewGroup arg2) {#inflate-android.content.Context-int-android.view.ViewGroup-} +``` +public static View inflate(Context arg0, int arg1, ViewGroup arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | int | | +| arg2 | android.view.ViewGroup | | + +**Returns:** +android.view.View +### invalidate() {#invalidate--} +``` +public void invalidate() +``` + + + + +### invalidate(Rect arg0) {#invalidate-android.graphics.Rect-} +``` +public void invalidate(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### invalidate(int arg0, int arg1, int arg2, int arg3) {#invalidate-int-int-int-int-} +``` +public void invalidate(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### invalidateDrawable(Drawable arg0) {#invalidateDrawable-android.graphics.drawable.Drawable-} +``` +public void invalidateDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### invalidateOutline() {#invalidateOutline--} +``` +public void invalidateOutline() +``` + + + + +### isAccessibilityFocused() {#isAccessibilityFocused--} +``` +public boolean isAccessibilityFocused() +``` + + + + +**Returns:** +boolean +### isAccessibilityHeading() {#isAccessibilityHeading--} +``` +public boolean isAccessibilityHeading() +``` + + + + +**Returns:** +boolean +### isActivated() {#isActivated--} +``` +public boolean isActivated() +``` + + + + +**Returns:** +boolean +### isAttachedToWindow() {#isAttachedToWindow--} +``` +public boolean isAttachedToWindow() +``` + + + + +**Returns:** +boolean +### isAutoHandwritingEnabled() {#isAutoHandwritingEnabled--} +``` +public boolean isAutoHandwritingEnabled() +``` + + + + +**Returns:** +boolean +### isClickable() {#isClickable--} +``` +public boolean isClickable() +``` + + + + +**Returns:** +boolean +### isContextClickable() {#isContextClickable--} +``` +public boolean isContextClickable() +``` + + + + +**Returns:** +boolean +### isDirty() {#isDirty--} +``` +public boolean isDirty() +``` + + + + +**Returns:** +boolean +### isDrawingCacheEnabled() {#isDrawingCacheEnabled--} +``` +public boolean isDrawingCacheEnabled() +``` + + + + +**Returns:** +boolean +### isDuplicateParentStateEnabled() {#isDuplicateParentStateEnabled--} +``` +public boolean isDuplicateParentStateEnabled() +``` + + + + +**Returns:** +boolean +### isEnabled() {#isEnabled--} +``` +public boolean isEnabled() +``` + + + + +**Returns:** +boolean +### isFocusable() {#isFocusable--} +``` +public final boolean isFocusable() +``` + + + + +**Returns:** +boolean +### isFocusableInTouchMode() {#isFocusableInTouchMode--} +``` +public final boolean isFocusableInTouchMode() +``` + + + + +**Returns:** +boolean +### isFocused() {#isFocused--} +``` +public boolean isFocused() +``` + + + + +**Returns:** +boolean +### isFocusedByDefault() {#isFocusedByDefault--} +``` +public final boolean isFocusedByDefault() +``` + + + + +**Returns:** +boolean +### isForceDarkAllowed() {#isForceDarkAllowed--} +``` +public boolean isForceDarkAllowed() +``` + + + + +**Returns:** +boolean +### isHapticFeedbackEnabled() {#isHapticFeedbackEnabled--} +``` +public boolean isHapticFeedbackEnabled() +``` + + + + +**Returns:** +boolean +### isHardwareAccelerated() {#isHardwareAccelerated--} +``` +public boolean isHardwareAccelerated() +``` + + + + +**Returns:** +boolean +### isHorizontalFadingEdgeEnabled() {#isHorizontalFadingEdgeEnabled--} +``` +public boolean isHorizontalFadingEdgeEnabled() +``` + + + + +**Returns:** +boolean +### isHorizontalScrollBarEnabled() {#isHorizontalScrollBarEnabled--} +``` +public boolean isHorizontalScrollBarEnabled() +``` + + + + +**Returns:** +boolean +### isHovered() {#isHovered--} +``` +public boolean isHovered() +``` + + + + +**Returns:** +boolean +### isImportantForAccessibility() {#isImportantForAccessibility--} +``` +public boolean isImportantForAccessibility() +``` + + + + +**Returns:** +boolean +### isImportantForAutofill() {#isImportantForAutofill--} +``` +public final boolean isImportantForAutofill() +``` + + + + +**Returns:** +boolean +### isImportantForContentCapture() {#isImportantForContentCapture--} +``` +public final boolean isImportantForContentCapture() +``` + + + + +**Returns:** +boolean +### isInEditMode() {#isInEditMode--} +``` +public boolean isInEditMode() +``` + + + + +**Returns:** +boolean +### isInLayout() {#isInLayout--} +``` +public boolean isInLayout() +``` + + + + +**Returns:** +boolean +### isInTouchMode() {#isInTouchMode--} +``` +public boolean isInTouchMode() +``` + + + + +**Returns:** +boolean +### isKeyboardNavigationCluster() {#isKeyboardNavigationCluster--} +``` +public final boolean isKeyboardNavigationCluster() +``` + + + + +**Returns:** +boolean +### isLaidOut() {#isLaidOut--} +``` +public boolean isLaidOut() +``` + + + + +**Returns:** +boolean +### isLayoutDirectionResolved() {#isLayoutDirectionResolved--} +``` +public boolean isLayoutDirectionResolved() +``` + + + + +**Returns:** +boolean +### isLayoutRequested() {#isLayoutRequested--} +``` +public boolean isLayoutRequested() +``` + + + + +**Returns:** +boolean +### isLongClickable() {#isLongClickable--} +``` +public boolean isLongClickable() +``` + + + + +**Returns:** +boolean +### isNestedScrollingEnabled() {#isNestedScrollingEnabled--} +``` +public boolean isNestedScrollingEnabled() +``` + + + + +**Returns:** +boolean +### isOpaque() {#isOpaque--} +``` +public boolean isOpaque() +``` + + + + +**Returns:** +boolean +### isPaddingRelative() {#isPaddingRelative--} +``` +public boolean isPaddingRelative() +``` + + + + +**Returns:** +boolean +### isPivotSet() {#isPivotSet--} +``` +public boolean isPivotSet() +``` + + + + +**Returns:** +boolean +### isPreferKeepClear() {#isPreferKeepClear--} +``` +public final boolean isPreferKeepClear() +``` + + + + +**Returns:** +boolean +### isPressed() {#isPressed--} +``` +public boolean isPressed() +``` + + + + +**Returns:** +boolean +### isSaveEnabled() {#isSaveEnabled--} +``` +public boolean isSaveEnabled() +``` + + + + +**Returns:** +boolean +### isSaveFromParentEnabled() {#isSaveFromParentEnabled--} +``` +public boolean isSaveFromParentEnabled() +``` + + + + +**Returns:** +boolean +### isScreenReaderFocusable() {#isScreenReaderFocusable--} +``` +public boolean isScreenReaderFocusable() +``` + + + + +**Returns:** +boolean +### isScrollContainer() {#isScrollContainer--} +``` +public boolean isScrollContainer() +``` + + + + +**Returns:** +boolean +### isScrollbarFadingEnabled() {#isScrollbarFadingEnabled--} +``` +public boolean isScrollbarFadingEnabled() +``` + + + + +**Returns:** +boolean +### isSelected() {#isSelected--} +``` +public boolean isSelected() +``` + + + + +**Returns:** +boolean +### isShowingLayoutBounds() {#isShowingLayoutBounds--} +``` +public final boolean isShowingLayoutBounds() +``` + + + + +**Returns:** +boolean +### isShown() {#isShown--} +``` +public boolean isShown() +``` + + + + +**Returns:** +boolean +### isSoundEffectsEnabled() {#isSoundEffectsEnabled--} +``` +public boolean isSoundEffectsEnabled() +``` + + + + +**Returns:** +boolean +### isTemporarilyDetached() {#isTemporarilyDetached--} +``` +public final boolean isTemporarilyDetached() +``` + + + + +**Returns:** +boolean +### isTextAlignmentResolved() {#isTextAlignmentResolved--} +``` +public boolean isTextAlignmentResolved() +``` + + + + +**Returns:** +boolean +### isTextDirectionResolved() {#isTextDirectionResolved--} +``` +public boolean isTextDirectionResolved() +``` + + + + +**Returns:** +boolean +### isVerticalFadingEdgeEnabled() {#isVerticalFadingEdgeEnabled--} +``` +public boolean isVerticalFadingEdgeEnabled() +``` + + + + +**Returns:** +boolean +### isVerticalScrollBarEnabled() {#isVerticalScrollBarEnabled--} +``` +public boolean isVerticalScrollBarEnabled() +``` + + + + +**Returns:** +boolean +### isVisibleToUserForAutofill(int arg0) {#isVisibleToUserForAutofill-int-} +``` +public boolean isVisibleToUserForAutofill(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### jumpDrawablesToCurrentState() {#jumpDrawablesToCurrentState--} +``` +public void jumpDrawablesToCurrentState() +``` + + + + +### keyboardNavigationClusterSearch(View arg0, int arg1) {#keyboardNavigationClusterSearch-android.view.View-int-} +``` +public View keyboardNavigationClusterSearch(View arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | +| arg1 | int | | + +**Returns:** +android.view.View +### layout(int arg0, int arg1, int arg2, int arg3) {#layout-int-int-int-int-} +``` +public void layout(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### measure(int arg0, int arg1) {#measure-int-int-} +``` +public final void measure(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### offsetLeftAndRight(int arg0) {#offsetLeftAndRight-int-} +``` +public void offsetLeftAndRight(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### offsetTopAndBottom(int arg0) {#offsetTopAndBottom-int-} +``` +public void offsetTopAndBottom(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### onApplyWindowInsets(WindowInsets arg0) {#onApplyWindowInsets-android.view.WindowInsets-} +``` +public WindowInsets onApplyWindowInsets(WindowInsets arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsets | | + +**Returns:** +android.view.WindowInsets +### onAttachedToWindow() {#onAttachedToWindow--} +``` +public void onAttachedToWindow() +``` + + + + +### onCancelPendingInputEvents() {#onCancelPendingInputEvents--} +``` +public void onCancelPendingInputEvents() +``` + + + + +### onCapturedPointerEvent(MotionEvent arg0) {#onCapturedPointerEvent-android.view.MotionEvent-} +``` +public boolean onCapturedPointerEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onCheckIsTextEditor() {#onCheckIsTextEditor--} +``` +public boolean onCheckIsTextEditor() +``` + + + + +**Returns:** +boolean +### onCreateDrawableState(int arg0) {#onCreateDrawableState-int-} +``` +public int[] onCreateDrawableState(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +int[] +### onCreateInputConnection(EditorInfo arg0) {#onCreateInputConnection-android.view.inputmethod.EditorInfo-} +``` +public InputConnection onCreateInputConnection(EditorInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.inputmethod.EditorInfo | | + +**Returns:** +android.view.inputmethod.InputConnection +### onCreateViewTranslationRequest(int[] arg0, Consumer arg1) {#onCreateViewTranslationRequest-int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--} +``` +public void onCreateViewTranslationRequest(int[] arg0, Consumer arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | +| arg1 | java.util.function.Consumer | | + +### onCreateVirtualViewTranslationRequests(long[] arg0, int[] arg1, Consumer arg2) {#onCreateVirtualViewTranslationRequests-long---int---java.util.function.Consumer-android.view.translation.ViewTranslationRequest--} +``` +public void onCreateVirtualViewTranslationRequests(long[] arg0, int[] arg1, Consumer arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long[] | | +| arg1 | int[] | | +| arg2 | java.util.function.Consumer | | + +### onDragEvent(DragEvent arg0) {#onDragEvent-android.view.DragEvent-} +``` +public boolean onDragEvent(DragEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.DragEvent | | + +**Returns:** +boolean +### onDrawForeground(Canvas arg0) {#onDrawForeground-android.graphics.Canvas-} +``` +public void onDrawForeground(Canvas arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Canvas | | + +### onFilterTouchEventForSecurity(MotionEvent arg0) {#onFilterTouchEventForSecurity-android.view.MotionEvent-} +``` +public boolean onFilterTouchEventForSecurity(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onFinishTemporaryDetach() {#onFinishTemporaryDetach--} +``` +public void onFinishTemporaryDetach() +``` + + + + +### onGenericMotionEvent(MotionEvent arg0) {#onGenericMotionEvent-android.view.MotionEvent-} +``` +public boolean onGenericMotionEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onHoverChanged(boolean arg0) {#onHoverChanged-boolean-} +``` +public void onHoverChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onHoverEvent(MotionEvent arg0) {#onHoverEvent-android.view.MotionEvent-} +``` +public boolean onHoverEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onInitializeAccessibilityEvent(AccessibilityEvent arg0) {#onInitializeAccessibilityEvent-android.view.accessibility.AccessibilityEvent-} +``` +public void onInitializeAccessibilityEvent(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +### onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo arg0) {#onInitializeAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-} +``` +public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityNodeInfo | | + +### onKeyDown(int arg0, KeyEvent arg1) {#onKeyDown-int-android.view.KeyEvent-} +``` +public boolean onKeyDown(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyLongPress(int arg0, KeyEvent arg1) {#onKeyLongPress-int-android.view.KeyEvent-} +``` +public boolean onKeyLongPress(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyMultiple(int arg0, int arg1, KeyEvent arg2) {#onKeyMultiple-int-int-android.view.KeyEvent-} +``` +public boolean onKeyMultiple(int arg0, int arg1, KeyEvent arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyPreIme(int arg0, KeyEvent arg1) {#onKeyPreIme-int-android.view.KeyEvent-} +``` +public boolean onKeyPreIme(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyShortcut(int arg0, KeyEvent arg1) {#onKeyShortcut-int-android.view.KeyEvent-} +``` +public boolean onKeyShortcut(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onKeyUp(int arg0, KeyEvent arg1) {#onKeyUp-int-android.view.KeyEvent-} +``` +public boolean onKeyUp(int arg0, KeyEvent arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.view.KeyEvent | | + +**Returns:** +boolean +### onPointerCaptureChange(boolean arg0) {#onPointerCaptureChange-boolean-} +``` +public void onPointerCaptureChange(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onPopulateAccessibilityEvent(AccessibilityEvent arg0) {#onPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-} +``` +public void onPopulateAccessibilityEvent(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +### onProvideAutofillStructure(ViewStructure arg0, int arg1) {#onProvideAutofillStructure-android.view.ViewStructure-int-} +``` +public void onProvideAutofillStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### onProvideAutofillVirtualStructure(ViewStructure arg0, int arg1) {#onProvideAutofillVirtualStructure-android.view.ViewStructure-int-} +``` +public void onProvideAutofillVirtualStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### onProvideContentCaptureStructure(ViewStructure arg0, int arg1) {#onProvideContentCaptureStructure-android.view.ViewStructure-int-} +``` +public void onProvideContentCaptureStructure(ViewStructure arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | +| arg1 | int | | + +### onProvideStructure(ViewStructure arg0) {#onProvideStructure-android.view.ViewStructure-} +``` +public void onProvideStructure(ViewStructure arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | + +### onProvideVirtualStructure(ViewStructure arg0) {#onProvideVirtualStructure-android.view.ViewStructure-} +``` +public void onProvideVirtualStructure(ViewStructure arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewStructure | | + +### onReceiveContent(ContentInfo arg0) {#onReceiveContent-android.view.ContentInfo-} +``` +public ContentInfo onReceiveContent(ContentInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContentInfo | | + +**Returns:** +android.view.ContentInfo +### onResolvePointerIcon(MotionEvent arg0, int arg1) {#onResolvePointerIcon-android.view.MotionEvent-int-} +``` +public PointerIcon onResolvePointerIcon(MotionEvent arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | +| arg1 | int | | + +**Returns:** +android.view.PointerIcon +### onRtlPropertiesChanged(int arg0) {#onRtlPropertiesChanged-int-} +``` +public void onRtlPropertiesChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### onScreenStateChanged(int arg0) {#onScreenStateChanged-int-} +``` +public void onScreenStateChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### onScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) {#onScrollCaptureSearch-android.graphics.Rect-android.graphics.Point-java.util.function.Consumer-android.view.ScrollCaptureTarget--} +``` +public void onScrollCaptureSearch(Rect arg0, Point arg1, Consumer arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | android.graphics.Point | | +| arg2 | java.util.function.Consumer | | + +### onStartTemporaryDetach() {#onStartTemporaryDetach--} +``` +public void onStartTemporaryDetach() +``` + + + + +### onTouchEvent(MotionEvent arg0) {#onTouchEvent-android.view.MotionEvent-} +``` +public boolean onTouchEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onTrackballEvent(MotionEvent arg0) {#onTrackballEvent-android.view.MotionEvent-} +``` +public boolean onTrackballEvent(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +**Returns:** +boolean +### onViewTranslationResponse(ViewTranslationResponse arg0) {#onViewTranslationResponse-android.view.translation.ViewTranslationResponse-} +``` +public void onViewTranslationResponse(ViewTranslationResponse arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.translation.ViewTranslationResponse | | + +### onVirtualViewTranslationResponses(LongSparseArray arg0) {#onVirtualViewTranslationResponses-android.util.LongSparseArray-android.view.translation.ViewTranslationResponse--} +``` +public void onVirtualViewTranslationResponses(LongSparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.LongSparseArray | | + +### onVisibilityAggregated(boolean arg0) {#onVisibilityAggregated-boolean-} +``` +public void onVisibilityAggregated(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onWindowFocusChanged(boolean arg0) {#onWindowFocusChanged-boolean-} +``` +public void onWindowFocusChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onWindowSystemUiVisibilityChanged(int arg0) {#onWindowSystemUiVisibilityChanged-int-} +``` +public void onWindowSystemUiVisibilityChanged(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### performAccessibilityAction(int arg0, Bundle arg1) {#performAccessibilityAction-int-android.os.Bundle-} +``` +public boolean performAccessibilityAction(int arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.os.Bundle | | + +**Returns:** +boolean +### performClick() {#performClick--} +``` +public boolean performClick() +``` + + + + +**Returns:** +boolean +### performContextClick() {#performContextClick--} +``` +public boolean performContextClick() +``` + + + + +**Returns:** +boolean +### performContextClick(float arg0, float arg1) {#performContextClick-float-float-} +``` +public boolean performContextClick(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### performHapticFeedback(int arg0) {#performHapticFeedback-int-} +``` +public boolean performHapticFeedback(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### performHapticFeedback(int arg0, int arg1) {#performHapticFeedback-int-int-} +``` +public boolean performHapticFeedback(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +boolean +### performLongClick() {#performLongClick--} +``` +public boolean performLongClick() +``` + + + + +**Returns:** +boolean +### performLongClick(float arg0, float arg1) {#performLongClick-float-float-} +``` +public boolean performLongClick(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### performReceiveContent(ContentInfo arg0) {#performReceiveContent-android.view.ContentInfo-} +``` +public ContentInfo performReceiveContent(ContentInfo arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContentInfo | | + +**Returns:** +android.view.ContentInfo +### playSoundEffect(int arg0) {#playSoundEffect-int-} +``` +public void playSoundEffect(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### post(Runnable arg0) {#post-java.lang.Runnable-} +``` +public boolean post(Runnable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | + +**Returns:** +boolean +### postDelayed(Runnable arg0, long arg1) {#postDelayed-java.lang.Runnable-long-} +``` +public boolean postDelayed(Runnable arg0, long arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | +| arg1 | long | | + +**Returns:** +boolean +### postInvalidate() {#postInvalidate--} +``` +public void postInvalidate() +``` + + + + +### postInvalidate(int arg0, int arg1, int arg2, int arg3) {#postInvalidate-int-int-int-int-} +``` +public void postInvalidate(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### postInvalidateDelayed(long arg0) {#postInvalidateDelayed-long-} +``` +public void postInvalidateDelayed(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### postInvalidateDelayed(long arg0, int arg1, int arg2, int arg3, int arg4) {#postInvalidateDelayed-long-int-int-int-int-} +``` +public void postInvalidateDelayed(long arg0, int arg1, int arg2, int arg3, int arg4) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | +| arg4 | int | | + +### postInvalidateOnAnimation() {#postInvalidateOnAnimation--} +``` +public void postInvalidateOnAnimation() +``` + + + + +### postInvalidateOnAnimation(int arg0, int arg1, int arg2, int arg3) {#postInvalidateOnAnimation-int-int-int-int-} +``` +public void postInvalidateOnAnimation(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### postOnAnimation(Runnable arg0) {#postOnAnimation-java.lang.Runnable-} +``` +public void postOnAnimation(Runnable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | + +### postOnAnimationDelayed(Runnable arg0, long arg1) {#postOnAnimationDelayed-java.lang.Runnable-long-} +``` +public void postOnAnimationDelayed(Runnable arg0, long arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | +| arg1 | long | | + +### refreshDrawableState() {#refreshDrawableState--} +``` +public void refreshDrawableState() +``` + + + + +### releasePointerCapture() {#releasePointerCapture--} +``` +public void releasePointerCapture() +``` + + + + +### removeCallbacks(Runnable arg0) {#removeCallbacks-java.lang.Runnable-} +``` +public boolean removeCallbacks(Runnable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Runnable | | + +**Returns:** +boolean +### removeOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) {#removeOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-} +``` +public void removeOnAttachStateChangeListener(View.OnAttachStateChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnAttachStateChangeListener | | + +### removeOnLayoutChangeListener(View.OnLayoutChangeListener arg0) {#removeOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-} +``` +public void removeOnLayoutChangeListener(View.OnLayoutChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnLayoutChangeListener | | + +### removeOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) {#removeOnUnhandledKeyEventListener-android.view.View.OnUnhandledKeyEventListener-} +``` +public void removeOnUnhandledKeyEventListener(View.OnUnhandledKeyEventListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnUnhandledKeyEventListener | | + +### requestApplyInsets() {#requestApplyInsets--} +``` +public void requestApplyInsets() +``` + + + + +### requestFitSystemWindows() {#requestFitSystemWindows--} +``` +public void requestFitSystemWindows() +``` + + + + +### requestFocus() {#requestFocus--} +``` +public final boolean requestFocus() +``` + + + + +**Returns:** +boolean +### requestFocus(int arg0) {#requestFocus-int-} +``` +public final boolean requestFocus(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### requestFocus(int arg0, Rect arg1) {#requestFocus-int-android.graphics.Rect-} +``` +public boolean requestFocus(int arg0, Rect arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.graphics.Rect | | + +**Returns:** +boolean +### requestFocusFromTouch() {#requestFocusFromTouch--} +``` +public final boolean requestFocusFromTouch() +``` + + + + +**Returns:** +boolean +### requestLayout() {#requestLayout--} +``` +public void requestLayout() +``` + + + + +### requestPointerCapture() {#requestPointerCapture--} +``` +public void requestPointerCapture() +``` + + + + +### requestRectangleOnScreen(Rect arg0) {#requestRectangleOnScreen-android.graphics.Rect-} +``` +public boolean requestRectangleOnScreen(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +**Returns:** +boolean +### requestRectangleOnScreen(Rect arg0, boolean arg1) {#requestRectangleOnScreen-android.graphics.Rect-boolean-} +``` +public boolean requestRectangleOnScreen(Rect arg0, boolean arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | +| arg1 | boolean | | + +**Returns:** +boolean +### requestUnbufferedDispatch(MotionEvent arg0) {#requestUnbufferedDispatch-android.view.MotionEvent-} +``` +public final void requestUnbufferedDispatch(MotionEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MotionEvent | | + +### requestUnbufferedDispatch(int arg0) {#requestUnbufferedDispatch-int-} +``` +public final void requestUnbufferedDispatch(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### resetPivot() {#resetPivot--} +``` +public void resetPivot() +``` + + + + +### resolveSize(int arg0, int arg1) {#resolveSize-int-int-} +``` +public static int resolveSize(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +int +### resolveSizeAndState(int arg0, int arg1, int arg2) {#resolveSizeAndState-int-int-int-} +``` +public static int resolveSizeAndState(int arg0, int arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | + +**Returns:** +int +### restoreDefaultFocus() {#restoreDefaultFocus--} +``` +public boolean restoreDefaultFocus() +``` + + + + +**Returns:** +boolean +### restoreHierarchyState(SparseArray arg0) {#restoreHierarchyState-android.util.SparseArray-android.os.Parcelable--} +``` +public void restoreHierarchyState(SparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.SparseArray | | + +### saveAttributeDataForStyleable(Context arg0, int[] arg1, AttributeSet arg2, TypedArray arg3, int arg4, int arg5) {#saveAttributeDataForStyleable-android.content.Context-int---android.util.AttributeSet-android.content.res.TypedArray-int-int-} +``` +public final void saveAttributeDataForStyleable(Context arg0, int[] arg1, AttributeSet arg2, TypedArray arg3, int arg4, int arg5) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | int[] | | +| arg2 | android.util.AttributeSet | | +| arg3 | android.content.res.TypedArray | | +| arg4 | int | | +| arg5 | int | | + +### saveHierarchyState(SparseArray arg0) {#saveHierarchyState-android.util.SparseArray-android.os.Parcelable--} +``` +public void saveHierarchyState(SparseArray arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.util.SparseArray | | + +### scheduleDrawable(Drawable arg0, Runnable arg1, long arg2) {#scheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-long-} +``` +public void scheduleDrawable(Drawable arg0, Runnable arg1, long arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | +| arg1 | java.lang.Runnable | | +| arg2 | long | | + +### scrollBy(int arg0, int arg1) {#scrollBy-int-int-} +``` +public void scrollBy(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### scrollTo(int arg0, int arg1) {#scrollTo-int-int-} +``` +public void scrollTo(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### sendAccessibilityEvent(int arg0) {#sendAccessibilityEvent-int-} +``` +public void sendAccessibilityEvent(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### sendAccessibilityEventUnchecked(AccessibilityEvent arg0) {#sendAccessibilityEventUnchecked-android.view.accessibility.AccessibilityEvent-} +``` +public void sendAccessibilityEventUnchecked(AccessibilityEvent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.accessibility.AccessibilityEvent | | + +### setAccessibilityDelegate(View.AccessibilityDelegate arg0) {#setAccessibilityDelegate-android.view.View.AccessibilityDelegate-} +``` +public void setAccessibilityDelegate(View.AccessibilityDelegate arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.AccessibilityDelegate | | + +### setAccessibilityHeading(boolean arg0) {#setAccessibilityHeading-boolean-} +``` +public void setAccessibilityHeading(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAccessibilityLiveRegion(int arg0) {#setAccessibilityLiveRegion-int-} +``` +public void setAccessibilityLiveRegion(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setAccessibilityPaneTitle(CharSequence arg0) {#setAccessibilityPaneTitle-java.lang.CharSequence-} +``` +public void setAccessibilityPaneTitle(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setAccessibilityTraversalAfter(int arg0) {#setAccessibilityTraversalAfter-int-} +``` +public void setAccessibilityTraversalAfter(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setAccessibilityTraversalBefore(int arg0) {#setAccessibilityTraversalBefore-int-} +``` +public void setAccessibilityTraversalBefore(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setActivated(boolean arg0) {#setActivated-boolean-} +``` +public void setActivated(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAdjustViewBounds(boolean arg0) {#setAdjustViewBounds-boolean-} +``` +public void setAdjustViewBounds(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAllowClickWhenDisabled(boolean arg0) {#setAllowClickWhenDisabled-boolean-} +``` +public void setAllowClickWhenDisabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAlpha(float arg0) {#setAlpha-float-} +``` +public void setAlpha(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setAlpha(int arg0) {#setAlpha-int-} +``` +public void setAlpha(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setAnimation(Animation arg0) {#setAnimation-android.view.animation.Animation-} +``` +public void setAnimation(Animation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.animation.Animation | | + +### setAnimationMatrix(Matrix arg0) {#setAnimationMatrix-android.graphics.Matrix-} +``` +public void setAnimationMatrix(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### setAutoHandwritingEnabled(boolean arg0) {#setAutoHandwritingEnabled-boolean-} +``` +public void setAutoHandwritingEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAutofillHints(String[] arg0) {#setAutofillHints-java.lang.String...-} +``` +public void setAutofillHints(String[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String[] | | + +### setAutofillId(AutofillId arg0) {#setAutofillId-android.view.autofill.AutofillId-} +``` +public void setAutofillId(AutofillId arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.autofill.AutofillId | | + +### setBackground(Drawable arg0) {#setBackground-android.graphics.drawable.Drawable-} +``` +public void setBackground(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setBackgroundColor(int arg0) {#setBackgroundColor-int-} +``` +public void setBackgroundColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setBackgroundDrawable(Drawable arg0) {#setBackgroundDrawable-android.graphics.drawable.Drawable-} +``` +public void setBackgroundDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setBackgroundResource(int arg0) {#setBackgroundResource-int-} +``` +public void setBackgroundResource(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setBackgroundTintBlendMode(BlendMode arg0) {#setBackgroundTintBlendMode-android.graphics.BlendMode-} +``` +public void setBackgroundTintBlendMode(BlendMode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.BlendMode | | + +### setBackgroundTintList(ColorStateList arg0) {#setBackgroundTintList-android.content.res.ColorStateList-} +``` +public void setBackgroundTintList(ColorStateList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.ColorStateList | | + +### setBackgroundTintMode(PorterDuff.Mode arg0) {#setBackgroundTintMode-android.graphics.PorterDuff.Mode-} +``` +public void setBackgroundTintMode(PorterDuff.Mode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.PorterDuff.Mode | | + +### setBaseline(int arg0) {#setBaseline-int-} +``` +public void setBaseline(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setBaselineAlignBottom(boolean arg0) {#setBaselineAlignBottom-boolean-} +``` +public void setBaselineAlignBottom(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setBottom(int arg0) {#setBottom-int-} +``` +public final void setBottom(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setCameraDistance(float arg0) {#setCameraDistance-float-} +``` +public void setCameraDistance(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setClickable(boolean arg0) {#setClickable-boolean-} +``` +public void setClickable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setClipBounds(Rect arg0) {#setClipBounds-android.graphics.Rect-} +``` +public void setClipBounds(Rect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Rect | | + +### setClipToOutline(boolean arg0) {#setClipToOutline-boolean-} +``` +public void setClipToOutline(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setColorFilter(ColorFilter arg0) {#setColorFilter-android.graphics.ColorFilter-} +``` +public void setColorFilter(ColorFilter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.ColorFilter | | + +### setColorFilter(int arg0) {#setColorFilter-int-} +``` +public final void setColorFilter(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setColorFilter(int arg0, PorterDuff.Mode arg1) {#setColorFilter-int-android.graphics.PorterDuff.Mode-} +``` +public final void setColorFilter(int arg0, PorterDuff.Mode arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.graphics.PorterDuff.Mode | | + +### setContentCaptureSession(ContentCaptureSession arg0) {#setContentCaptureSession-android.view.contentcapture.ContentCaptureSession-} +``` +public void setContentCaptureSession(ContentCaptureSession arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.contentcapture.ContentCaptureSession | | + +### setContentDescription(CharSequence arg0) {#setContentDescription-java.lang.CharSequence-} +``` +public void setContentDescription(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setContextClickable(boolean arg0) {#setContextClickable-boolean-} +``` +public void setContextClickable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setCropToPadding(boolean arg0) {#setCropToPadding-boolean-} +``` +public void setCropToPadding(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setDefaultFocusHighlightEnabled(boolean arg0) {#setDefaultFocusHighlightEnabled-boolean-} +``` +public void setDefaultFocusHighlightEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setDrawingCacheBackgroundColor(int arg0) {#setDrawingCacheBackgroundColor-int-} +``` +public void setDrawingCacheBackgroundColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setDrawingCacheEnabled(boolean arg0) {#setDrawingCacheEnabled-boolean-} +``` +public void setDrawingCacheEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setDrawingCacheQuality(int arg0) {#setDrawingCacheQuality-int-} +``` +public void setDrawingCacheQuality(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setDuplicateParentStateEnabled(boolean arg0) {#setDuplicateParentStateEnabled-boolean-} +``` +public void setDuplicateParentStateEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setElevation(float arg0) {#setElevation-float-} +``` +public void setElevation(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setEnabled(boolean arg0) {#setEnabled-boolean-} +``` +public void setEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFadingEdgeLength(int arg0) {#setFadingEdgeLength-int-} +``` +public void setFadingEdgeLength(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setFilterTouchesWhenObscured(boolean arg0) {#setFilterTouchesWhenObscured-boolean-} +``` +public void setFilterTouchesWhenObscured(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFitsSystemWindows(boolean arg0) {#setFitsSystemWindows-boolean-} +``` +public void setFitsSystemWindows(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFocusable(boolean arg0) {#setFocusable-boolean-} +``` +public void setFocusable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFocusable(int arg0) {#setFocusable-int-} +``` +public void setFocusable(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setFocusableInTouchMode(boolean arg0) {#setFocusableInTouchMode-boolean-} +``` +public void setFocusableInTouchMode(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setFocusedByDefault(boolean arg0) {#setFocusedByDefault-boolean-} +``` +public void setFocusedByDefault(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setForceDarkAllowed(boolean arg0) {#setForceDarkAllowed-boolean-} +``` +public void setForceDarkAllowed(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setForeground(Drawable arg0) {#setForeground-android.graphics.drawable.Drawable-} +``` +public void setForeground(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setForegroundGravity(int arg0) {#setForegroundGravity-int-} +``` +public void setForegroundGravity(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setForegroundTintBlendMode(BlendMode arg0) {#setForegroundTintBlendMode-android.graphics.BlendMode-} +``` +public void setForegroundTintBlendMode(BlendMode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.BlendMode | | + +### setForegroundTintList(ColorStateList arg0) {#setForegroundTintList-android.content.res.ColorStateList-} +``` +public void setForegroundTintList(ColorStateList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.ColorStateList | | + +### setForegroundTintMode(PorterDuff.Mode arg0) {#setForegroundTintMode-android.graphics.PorterDuff.Mode-} +``` +public void setForegroundTintMode(PorterDuff.Mode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.PorterDuff.Mode | | + +### setHapticFeedbackEnabled(boolean arg0) {#setHapticFeedbackEnabled-boolean-} +``` +public void setHapticFeedbackEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHasTransientState(boolean arg0) {#setHasTransientState-boolean-} +``` +public void setHasTransientState(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHorizontalFadingEdgeEnabled(boolean arg0) {#setHorizontalFadingEdgeEnabled-boolean-} +``` +public void setHorizontalFadingEdgeEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHorizontalScrollBarEnabled(boolean arg0) {#setHorizontalScrollBarEnabled-boolean-} +``` +public void setHorizontalScrollBarEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setHorizontalScrollbarThumbDrawable(Drawable arg0) {#setHorizontalScrollbarThumbDrawable-android.graphics.drawable.Drawable-} +``` +public void setHorizontalScrollbarThumbDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setHorizontalScrollbarTrackDrawable(Drawable arg0) {#setHorizontalScrollbarTrackDrawable-android.graphics.drawable.Drawable-} +``` +public void setHorizontalScrollbarTrackDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setHovered(boolean arg0) {#setHovered-boolean-} +``` +public void setHovered(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setId(int arg0) {#setId-int-} +``` +public void setId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImageAlpha(int arg0) {#setImageAlpha-int-} +``` +public void setImageAlpha(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImageBitmap(Bitmap arg0) {#setImageBitmap-android.graphics.Bitmap-} +``` +public void setImageBitmap(Bitmap arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Bitmap | | + +### setImageDrawable(Drawable arg0) {#setImageDrawable-android.graphics.drawable.Drawable-} +``` +public void setImageDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setImageIcon(Icon arg0) {#setImageIcon-android.graphics.drawable.Icon-} +``` +public void setImageIcon(Icon arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Icon | | + +### setImageLevel(int arg0) {#setImageLevel-int-} +``` +public void setImageLevel(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImageMatrix(Matrix arg0) {#setImageMatrix-android.graphics.Matrix-} +``` +public void setImageMatrix(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### setImageResource(int arg0) {#setImageResource-int-} +``` +public void setImageResource(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImageState(int[] arg0, boolean arg1) {#setImageState-int---boolean-} +``` +public void setImageState(int[] arg0, boolean arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int[] | | +| arg1 | boolean | | + +### setImageTintBlendMode(BlendMode arg0) {#setImageTintBlendMode-android.graphics.BlendMode-} +``` +public void setImageTintBlendMode(BlendMode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.BlendMode | | + +### setImageTintList(ColorStateList arg0) {#setImageTintList-android.content.res.ColorStateList-} +``` +public void setImageTintList(ColorStateList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.ColorStateList | | + +### setImageTintMode(PorterDuff.Mode arg0) {#setImageTintMode-android.graphics.PorterDuff.Mode-} +``` +public void setImageTintMode(PorterDuff.Mode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.PorterDuff.Mode | | + +### setImageURI(Uri arg0) {#setImageURI-android.net.Uri-} +``` +public void setImageURI(Uri arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.net.Uri | | + +### setImportantForAccessibility(int arg0) {#setImportantForAccessibility-int-} +``` +public void setImportantForAccessibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImportantForAutofill(int arg0) {#setImportantForAutofill-int-} +``` +public void setImportantForAutofill(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setImportantForContentCapture(int arg0) {#setImportantForContentCapture-int-} +``` +public void setImportantForContentCapture(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setKeepScreenOn(boolean arg0) {#setKeepScreenOn-boolean-} +``` +public void setKeepScreenOn(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setKeyboardNavigationCluster(boolean arg0) {#setKeyboardNavigationCluster-boolean-} +``` +public void setKeyboardNavigationCluster(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setLabelFor(int arg0) {#setLabelFor-int-} +``` +public void setLabelFor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setLayerPaint(Paint arg0) {#setLayerPaint-android.graphics.Paint-} +``` +public void setLayerPaint(Paint arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Paint | | + +### setLayerType(int arg0, Paint arg1) {#setLayerType-int-android.graphics.Paint-} +``` +public void setLayerType(int arg0, Paint arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | android.graphics.Paint | | + +### setLayoutDirection(int arg0) {#setLayoutDirection-int-} +``` +public void setLayoutDirection(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setLayoutParams(ViewGroup.LayoutParams arg0) {#setLayoutParams-android.view.ViewGroup.LayoutParams-} +``` +public void setLayoutParams(ViewGroup.LayoutParams arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewGroup.LayoutParams | | + +### setLeft(int arg0) {#setLeft-int-} +``` +public final void setLeft(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setLeftTopRightBottom(int arg0, int arg1, int arg2, int arg3) {#setLeftTopRightBottom-int-int-int-int-} +``` +public final void setLeftTopRightBottom(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### setLongClickable(boolean arg0) {#setLongClickable-boolean-} +``` +public void setLongClickable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setMaskBitmapStyle(RecognitionAreaPattern pattern) {#setMaskBitmapStyle-com.aspose.barcode.component.barcodescanner.barcodepatterns.RecognitionAreaPattern-} +``` +public void setMaskBitmapStyle(RecognitionAreaPattern pattern) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| modèle | com.aspose.barcode.component.barcodescanner.barcodepatterns.RecognitionAreaPattern | | + +### setMaxHeight(int arg0) {#setMaxHeight-int-} +``` +public void setMaxHeight(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setMaxWidth(int arg0) {#setMaxWidth-int-} +``` +public void setMaxWidth(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setMinimumHeight(int arg0) {#setMinimumHeight-int-} +``` +public void setMinimumHeight(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setMinimumWidth(int arg0) {#setMinimumWidth-int-} +``` +public void setMinimumWidth(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNestedScrollingEnabled(boolean arg0) {#setNestedScrollingEnabled-boolean-} +``` +public void setNestedScrollingEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setNextClusterForwardId(int arg0) {#setNextClusterForwardId-int-} +``` +public void setNextClusterForwardId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusDownId(int arg0) {#setNextFocusDownId-int-} +``` +public void setNextFocusDownId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusForwardId(int arg0) {#setNextFocusForwardId-int-} +``` +public void setNextFocusForwardId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusLeftId(int arg0) {#setNextFocusLeftId-int-} +``` +public void setNextFocusLeftId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusRightId(int arg0) {#setNextFocusRightId-int-} +``` +public void setNextFocusRightId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setNextFocusUpId(int arg0) {#setNextFocusUpId-int-} +``` +public void setNextFocusUpId(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setOnApplyWindowInsetsListener(View.OnApplyWindowInsetsListener arg0) {#setOnApplyWindowInsetsListener-android.view.View.OnApplyWindowInsetsListener-} +``` +public void setOnApplyWindowInsetsListener(View.OnApplyWindowInsetsListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnApplyWindowInsetsListener | | + +### setOnCapturedPointerListener(View.OnCapturedPointerListener arg0) {#setOnCapturedPointerListener-android.view.View.OnCapturedPointerListener-} +``` +public void setOnCapturedPointerListener(View.OnCapturedPointerListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnCapturedPointerListener | | + +### setOnClickListener(View.OnClickListener arg0) {#setOnClickListener-android.view.View.OnClickListener-} +``` +public void setOnClickListener(View.OnClickListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnClickListener | | + +### setOnContextClickListener(View.OnContextClickListener arg0) {#setOnContextClickListener-android.view.View.OnContextClickListener-} +``` +public void setOnContextClickListener(View.OnContextClickListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnContextClickListener | | + +### setOnCreateContextMenuListener(View.OnCreateContextMenuListener arg0) {#setOnCreateContextMenuListener-android.view.View.OnCreateContextMenuListener-} +``` +public void setOnCreateContextMenuListener(View.OnCreateContextMenuListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnCreateContextMenuListener | | + +### setOnDragListener(View.OnDragListener arg0) {#setOnDragListener-android.view.View.OnDragListener-} +``` +public void setOnDragListener(View.OnDragListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnDragListener | | + +### setOnFocusChangeListener(View.OnFocusChangeListener arg0) {#setOnFocusChangeListener-android.view.View.OnFocusChangeListener-} +``` +public void setOnFocusChangeListener(View.OnFocusChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnFocusChangeListener | | + +### setOnGenericMotionListener(View.OnGenericMotionListener arg0) {#setOnGenericMotionListener-android.view.View.OnGenericMotionListener-} +``` +public void setOnGenericMotionListener(View.OnGenericMotionListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnGenericMotionListener | | + +### setOnHoverListener(View.OnHoverListener arg0) {#setOnHoverListener-android.view.View.OnHoverListener-} +``` +public void setOnHoverListener(View.OnHoverListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnHoverListener | | + +### setOnKeyListener(View.OnKeyListener arg0) {#setOnKeyListener-android.view.View.OnKeyListener-} +``` +public void setOnKeyListener(View.OnKeyListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnKeyListener | | + +### setOnLongClickListener(View.OnLongClickListener arg0) {#setOnLongClickListener-android.view.View.OnLongClickListener-} +``` +public void setOnLongClickListener(View.OnLongClickListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnLongClickListener | | + +### setOnReceiveContentListener(String[] arg0, OnReceiveContentListener arg1) {#setOnReceiveContentListener-java.lang.String---android.view.OnReceiveContentListener-} +``` +public void setOnReceiveContentListener(String[] arg0, OnReceiveContentListener arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String[] | | +| arg1 | android.view.OnReceiveContentListener | | + +### setOnScrollChangeListener(View.OnScrollChangeListener arg0) {#setOnScrollChangeListener-android.view.View.OnScrollChangeListener-} +``` +public void setOnScrollChangeListener(View.OnScrollChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnScrollChangeListener | | + +### setOnSystemUiVisibilityChangeListener(View.OnSystemUiVisibilityChangeListener arg0) {#setOnSystemUiVisibilityChangeListener-android.view.View.OnSystemUiVisibilityChangeListener-} +``` +public void setOnSystemUiVisibilityChangeListener(View.OnSystemUiVisibilityChangeListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnSystemUiVisibilityChangeListener | | + +### setOnTouchListener(View.OnTouchListener arg0) {#setOnTouchListener-android.view.View.OnTouchListener-} +``` +public void setOnTouchListener(View.OnTouchListener arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.OnTouchListener | | + +### setOutlineAmbientShadowColor(int arg0) {#setOutlineAmbientShadowColor-int-} +``` +public void setOutlineAmbientShadowColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setOutlineProvider(ViewOutlineProvider arg0) {#setOutlineProvider-android.view.ViewOutlineProvider-} +``` +public void setOutlineProvider(ViewOutlineProvider arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ViewOutlineProvider | | + +### setOutlineSpotShadowColor(int arg0) {#setOutlineSpotShadowColor-int-} +``` +public void setOutlineSpotShadowColor(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setOverScrollMode(int arg0) {#setOverScrollMode-int-} +``` +public void setOverScrollMode(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setPadding(int arg0, int arg1, int arg2, int arg3) {#setPadding-int-int-int-int-} +``` +public void setPadding(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### setPaddingRelative(int arg0, int arg1, int arg2, int arg3) {#setPaddingRelative-int-int-int-int-} +``` +public void setPaddingRelative(int arg0, int arg1, int arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | int | | +| arg3 | int | | + +### setPivotX(float arg0) {#setPivotX-float-} +``` +public void setPivotX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setPivotY(float arg0) {#setPivotY-float-} +``` +public void setPivotY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setPointerIcon(PointerIcon arg0) {#setPointerIcon-android.view.PointerIcon-} +``` +public void setPointerIcon(PointerIcon arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.PointerIcon | | + +### setPreferKeepClear(boolean arg0) {#setPreferKeepClear-boolean-} +``` +public final void setPreferKeepClear(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setPreferKeepClearRects(List arg0) {#setPreferKeepClearRects-java.util.List-android.graphics.Rect--} +``` +public final void setPreferKeepClearRects(List arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.List | | + +### setPressed(boolean arg0) {#setPressed-boolean-} +``` +public void setPressed(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setRenderEffect(RenderEffect arg0) {#setRenderEffect-android.graphics.RenderEffect-} +``` +public void setRenderEffect(RenderEffect arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.RenderEffect | | + +### setRevealOnFocusHint(boolean arg0) {#setRevealOnFocusHint-boolean-} +``` +public final void setRevealOnFocusHint(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setRight(int arg0) {#setRight-int-} +``` +public final void setRight(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setRotation(float arg0) {#setRotation-float-} +``` +public void setRotation(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setRotationX(float arg0) {#setRotationX-float-} +``` +public void setRotationX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setRotationY(float arg0) {#setRotationY-float-} +``` +public void setRotationY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setSaveEnabled(boolean arg0) {#setSaveEnabled-boolean-} +``` +public void setSaveEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSaveFromParentEnabled(boolean arg0) {#setSaveFromParentEnabled-boolean-} +``` +public void setSaveFromParentEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setScaleType(ImageView.ScaleType arg0) {#setScaleType-android.widget.ImageView.ScaleType-} +``` +public void setScaleType(ImageView.ScaleType arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.widget.ImageView.ScaleType | | + +### setScaleX(float arg0) {#setScaleX-float-} +``` +public void setScaleX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setScaleY(float arg0) {#setScaleY-float-} +``` +public void setScaleY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setScreenReaderFocusable(boolean arg0) {#setScreenReaderFocusable-boolean-} +``` +public void setScreenReaderFocusable(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setScrollBarDefaultDelayBeforeFade(int arg0) {#setScrollBarDefaultDelayBeforeFade-int-} +``` +public void setScrollBarDefaultDelayBeforeFade(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollBarFadeDuration(int arg0) {#setScrollBarFadeDuration-int-} +``` +public void setScrollBarFadeDuration(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollBarSize(int arg0) {#setScrollBarSize-int-} +``` +public void setScrollBarSize(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollBarStyle(int arg0) {#setScrollBarStyle-int-} +``` +public void setScrollBarStyle(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollCaptureCallback(ScrollCaptureCallback arg0) {#setScrollCaptureCallback-android.view.ScrollCaptureCallback-} +``` +public final void setScrollCaptureCallback(ScrollCaptureCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ScrollCaptureCallback | | + +### setScrollCaptureHint(int arg0) {#setScrollCaptureHint-int-} +``` +public void setScrollCaptureHint(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollContainer(boolean arg0) {#setScrollContainer-boolean-} +``` +public void setScrollContainer(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setScrollIndicators(int arg0) {#setScrollIndicators-int-} +``` +public void setScrollIndicators(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollIndicators(int arg0, int arg1) {#setScrollIndicators-int-int-} +``` +public void setScrollIndicators(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +### setScrollX(int arg0) {#setScrollX-int-} +``` +public void setScrollX(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollY(int arg0) {#setScrollY-int-} +``` +public void setScrollY(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setScrollbarFadingEnabled(boolean arg0) {#setScrollbarFadingEnabled-boolean-} +``` +public void setScrollbarFadingEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSelected(boolean arg0) {#setSelected-boolean-} +``` +public void setSelected(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setSoundEffectsEnabled(boolean arg0) {#setSoundEffectsEnabled-boolean-} +``` +public void setSoundEffectsEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setStateDescription(CharSequence arg0) {#setStateDescription-java.lang.CharSequence-} +``` +public void setStateDescription(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setStateListAnimator(StateListAnimator arg0) {#setStateListAnimator-android.animation.StateListAnimator-} +``` +public void setStateListAnimator(StateListAnimator arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.animation.StateListAnimator | | + +### setSupportBackgroundTintList(ColorStateList arg0) {#setSupportBackgroundTintList-android.content.res.ColorStateList-} +``` +public void setSupportBackgroundTintList(ColorStateList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.ColorStateList | | + +### setSupportBackgroundTintMode(PorterDuff.Mode arg0) {#setSupportBackgroundTintMode-android.graphics.PorterDuff.Mode-} +``` +public void setSupportBackgroundTintMode(PorterDuff.Mode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.PorterDuff.Mode | | + +### setSupportImageTintList(ColorStateList arg0) {#setSupportImageTintList-android.content.res.ColorStateList-} +``` +public void setSupportImageTintList(ColorStateList arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.ColorStateList | | + +### setSupportImageTintMode(PorterDuff.Mode arg0) {#setSupportImageTintMode-android.graphics.PorterDuff.Mode-} +``` +public void setSupportImageTintMode(PorterDuff.Mode arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.PorterDuff.Mode | | + +### setSystemGestureExclusionRects(List arg0) {#setSystemGestureExclusionRects-java.util.List-android.graphics.Rect--} +``` +public void setSystemGestureExclusionRects(List arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.List | | + +### setSystemUiVisibility(int arg0) {#setSystemUiVisibility-int-} +``` +public void setSystemUiVisibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTag(int arg0, Object arg1) {#setTag-int-java.lang.Object-} +``` +public void setTag(int arg0, Object arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.Object | | + +### setTag(Object arg0) {#setTag-java.lang.Object-} +``` +public void setTag(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setTextAlignment(int arg0) {#setTextAlignment-int-} +``` +public void setTextAlignment(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTextDirection(int arg0) {#setTextDirection-int-} +``` +public void setTextDirection(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTooltipText(CharSequence arg0) {#setTooltipText-java.lang.CharSequence-} +``` +public void setTooltipText(CharSequence arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.CharSequence | | + +### setTop(int arg0) {#setTop-int-} +``` +public final void setTop(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTouchDelegate(TouchDelegate arg0) {#setTouchDelegate-android.view.TouchDelegate-} +``` +public void setTouchDelegate(TouchDelegate arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.TouchDelegate | | + +### setTransitionAlpha(float arg0) {#setTransitionAlpha-float-} +``` +public void setTransitionAlpha(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setTransitionName(String arg0) {#setTransitionName-java.lang.String-} +``` +public final void setTransitionName(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +### setTransitionVisibility(int arg0) {#setTransitionVisibility-int-} +``` +public void setTransitionVisibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setTranslationX(float arg0) {#setTranslationX-float-} +``` +public void setTranslationX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setTranslationY(float arg0) {#setTranslationY-float-} +``` +public void setTranslationY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setTranslationZ(float arg0) {#setTranslationZ-float-} +``` +public void setTranslationZ(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setVerticalFadingEdgeEnabled(boolean arg0) {#setVerticalFadingEdgeEnabled-boolean-} +``` +public void setVerticalFadingEdgeEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setVerticalScrollBarEnabled(boolean arg0) {#setVerticalScrollBarEnabled-boolean-} +``` +public void setVerticalScrollBarEnabled(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setVerticalScrollbarPosition(int arg0) {#setVerticalScrollbarPosition-int-} +``` +public void setVerticalScrollbarPosition(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setVerticalScrollbarThumbDrawable(Drawable arg0) {#setVerticalScrollbarThumbDrawable-android.graphics.drawable.Drawable-} +``` +public void setVerticalScrollbarThumbDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setVerticalScrollbarTrackDrawable(Drawable arg0) {#setVerticalScrollbarTrackDrawable-android.graphics.drawable.Drawable-} +``` +public void setVerticalScrollbarTrackDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### setViewTranslationCallback(ViewTranslationCallback arg0) {#setViewTranslationCallback-android.view.translation.ViewTranslationCallback-} +``` +public void setViewTranslationCallback(ViewTranslationCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.translation.ViewTranslationCallback | | + +### setVisibility(int arg0) {#setVisibility-int-} +``` +public void setVisibility(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### setWillNotCacheDrawing(boolean arg0) {#setWillNotCacheDrawing-boolean-} +``` +public void setWillNotCacheDrawing(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setWillNotDraw(boolean arg0) {#setWillNotDraw-boolean-} +``` +public void setWillNotDraw(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setWindowInsetsAnimationCallback(WindowInsetsAnimation.Callback arg0) {#setWindowInsetsAnimationCallback-android.view.WindowInsetsAnimation.Callback-} +``` +public void setWindowInsetsAnimationCallback(WindowInsetsAnimation.Callback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.WindowInsetsAnimation.Callback | | + +### setX(float arg0) {#setX-float-} +``` +public void setX(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setY(float arg0) {#setY-float-} +``` +public void setY(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### setZ(float arg0) {#setZ-float-} +``` +public void setZ(float arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | + +### showContextMenu() {#showContextMenu--} +``` +public boolean showContextMenu() +``` + + + + +**Returns:** +boolean +### showContextMenu(float arg0, float arg1) {#showContextMenu-float-float-} +``` +public boolean showContextMenu(float arg0, float arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | float | | +| arg1 | float | | + +**Returns:** +boolean +### startActionMode(ActionMode.Callback arg0) {#startActionMode-android.view.ActionMode.Callback-} +``` +public ActionMode startActionMode(ActionMode.Callback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode.Callback | | + +**Returns:** +android.view.ActionMode +### startActionMode(ActionMode.Callback arg0, int arg1) {#startActionMode-android.view.ActionMode.Callback-int-} +``` +public ActionMode startActionMode(ActionMode.Callback arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ActionMode.Callback | | +| arg1 | int | | + +**Returns:** +android.view.ActionMode +### startAnimation(Animation arg0) {#startAnimation-android.view.animation.Animation-} +``` +public void startAnimation(Animation arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.animation.Animation | | + +### startDrag(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) {#startDrag-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-} +``` +public final boolean startDrag(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ClipData | | +| arg1 | android.view.View.DragShadowBuilder | | +| arg2 | java.lang.Object | | +| arg3 | int | | + +**Returns:** +boolean +### startDragAndDrop(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) {#startDragAndDrop-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-} +``` +public final boolean startDragAndDrop(ClipData arg0, View.DragShadowBuilder arg1, Object arg2, int arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.ClipData | | +| arg1 | android.view.View.DragShadowBuilder | | +| arg2 | java.lang.Object | | +| arg3 | int | | + +**Returns:** +boolean +### startNestedScroll(int arg0) {#startNestedScroll-int-} +``` +public boolean startNestedScroll(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +boolean +### stopNestedScroll() {#stopNestedScroll--} +``` +public void stopNestedScroll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### transformMatrixToGlobal(Matrix arg0) {#transformMatrixToGlobal-android.graphics.Matrix-} +``` +public void transformMatrixToGlobal(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### transformMatrixToLocal(Matrix arg0) {#transformMatrixToLocal-android.graphics.Matrix-} +``` +public void transformMatrixToLocal(Matrix arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.Matrix | | + +### unscheduleDrawable(Drawable arg0) {#unscheduleDrawable-android.graphics.drawable.Drawable-} +``` +public void unscheduleDrawable(Drawable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | + +### unscheduleDrawable(Drawable arg0, Runnable arg1) {#unscheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-} +``` +public void unscheduleDrawable(Drawable arg0, Runnable arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.graphics.drawable.Drawable | | +| arg1 | java.lang.Runnable | | + +### updateDragShadow(View.DragShadowBuilder arg0) {#updateDragShadow-android.view.View.DragShadowBuilder-} +``` +public final void updateDragShadow(View.DragShadowBuilder arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View.DragShadowBuilder | | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### willNotCacheDrawing() {#willNotCacheDrawing--} +``` +public boolean willNotCacheDrawing() +``` + + + + +**Returns:** +boolean +### willNotDraw() {#willNotDraw--} +``` +public boolean willNotDraw() +``` + + + + +**Returns:** +boolean diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentbitmapbackground/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentbitmapbackground/_index.md new file mode 100644 index 000000000..25112399b --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentbitmapbackground/_index.md @@ -0,0 +1,193 @@ +--- +title: RecognitionProcessFragmentBitmapBackground +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Représente l'arrière-plan de l'image qui sera rendu pendant le processus de reconnaissance. +type: docs +weight: 23 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentbitmapbackground/ +--- +**Inheritance:** +java.lang.Object, com.aspose.barcode.component.barcodescanner.RecognitionProcessFragmentBackground +``` +public class RecognitionProcessFragmentBitmapBackground extends RecognitionProcessFragmentBackground +``` + +Représente l'arrière-plan de l'image qui sera rendu pendant le processus de reconnaissance. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [RecognitionProcessFragmentBitmapBackground(Bitmap backgroundBitmap)](#RecognitionProcessFragmentBitmapBackground-android.graphics.Bitmap-) | | +## Champs + +| Champ | Description | +| --- | --- | +| [CREATOR](#CREATOR) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [describeContents()](#describeContents--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBackgroundBitmap(Bitmap backgroundBitmap)](#setBackgroundBitmap-android.graphics.Bitmap-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [writeToParcel(Parcel dest, int flags)](#writeToParcel-android.os.Parcel-int-) | | +### RecognitionProcessFragmentBitmapBackground(Bitmap backgroundBitmap) {#RecognitionProcessFragmentBitmapBackground-android.graphics.Bitmap-} +``` +public RecognitionProcessFragmentBitmapBackground(Bitmap backgroundBitmap) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| backgroundBitmap | android.graphics.Bitmap | l'arrière-plan de l'image qui sera rendu pendant le processus de reconnaissance | + +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### describeContents() {#describeContents--} +``` +public int describeContents() +``` + + + + +**Returns:** +int +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBackgroundBitmap(Bitmap backgroundBitmap) {#setBackgroundBitmap-android.graphics.Bitmap-} +``` +public void setBackgroundBitmap(Bitmap backgroundBitmap) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| backgroundBitmap | android.graphics.Bitmap | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### writeToParcel(Parcel dest, int flags) {#writeToParcel-android.os.Parcel-int-} +``` +public void writeToParcel(Parcel dest, int flags) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dest | android.os.Parcel | | +| flags | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentcameraphotobackground/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentcameraphotobackground/_index.md new file mode 100644 index 000000000..bf0461964 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentcameraphotobackground/_index.md @@ -0,0 +1,207 @@ +--- +title: RecognitionProcessFragmentCameraPhotoBackground +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Représente l'arrière-plan de l'image obtenu de la caméra qui sera rendu pendant le processus de reconnaissance. +type: docs +weight: 24 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentcameraphotobackground/ +--- +**Inheritance:** +java.lang.Object, com.aspose.barcode.component.barcodescanner.RecognitionProcessFragmentBackground, com.aspose.barcode.component.barcodescanner.RecognitionProcessFragmentBitmapBackground +``` +public final class RecognitionProcessFragmentCameraPhotoBackground extends RecognitionProcessFragmentBitmapBackground +``` + +Représente l'arrière-plan de l'image obtenu de la caméra qui sera rendu pendant le processus de reconnaissance. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [RecognitionProcessFragmentCameraPhotoBackground()](#RecognitionProcessFragmentCameraPhotoBackground--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [CREATOR](#CREATOR) | | +| [CREATOR](#CREATOR) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [describeContents()](#describeContents--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBackgroundBitmap(Bitmap backgroundBitmap)](#setBackgroundBitmap-android.graphics.Bitmap-) | | +| [setColorFilter(LightingColorFilter colorFilter)](#setColorFilter-android.graphics.LightingColorFilter-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [writeToParcel(Parcel dest, int flags)](#writeToParcel-android.os.Parcel-int-) | | +### RecognitionProcessFragmentCameraPhotoBackground() {#RecognitionProcessFragmentCameraPhotoBackground--} +``` +public RecognitionProcessFragmentCameraPhotoBackground() +``` + + +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### describeContents() {#describeContents--} +``` +public int describeContents() +``` + + + + +**Returns:** +int +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBackgroundBitmap(Bitmap backgroundBitmap) {#setBackgroundBitmap-android.graphics.Bitmap-} +``` +public void setBackgroundBitmap(Bitmap backgroundBitmap) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| backgroundBitmap | android.graphics.Bitmap | | + +### setColorFilter(LightingColorFilter colorFilter) {#setColorFilter-android.graphics.LightingColorFilter-} +``` +public void setColorFilter(LightingColorFilter colorFilter) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| colorFilter | android.graphics.LightingColorFilter | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### writeToParcel(Parcel dest, int flags) {#writeToParcel-android.os.Parcel-int-} +``` +public void writeToParcel(Parcel dest, int flags) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dest | android.os.Parcel | | +| flags | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentcolorbackground/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentcolorbackground/_index.md new file mode 100644 index 000000000..904289433 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentcolorbackground/_index.md @@ -0,0 +1,179 @@ +--- +title: RecognitionProcessFragmentColorBackground +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Représente le fond d'une seule couleur qui sera rendu pendant le processus de reconnaissance +type: docs +weight: 25 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessfragmentcolorbackground/ +--- +**Inheritance:** +java.lang.Object, com.aspose.barcode.component.barcodescanner.RecognitionProcessFragmentBackground +``` +public final class RecognitionProcessFragmentColorBackground extends RecognitionProcessFragmentBackground +``` + +Représente le fond d'une seule couleur qui sera rendu pendant le processus de reconnaissance +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [RecognitionProcessFragmentColorBackground(int backgroundColor)](#RecognitionProcessFragmentColorBackground-int-) | | +## Champs + +| Champ | Description | +| --- | --- | +| [CREATOR](#CREATOR) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [describeContents()](#describeContents--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [writeToParcel(Parcel dest, int flags)](#writeToParcel-android.os.Parcel-int-) | | +### RecognitionProcessFragmentColorBackground(int backgroundColor) {#RecognitionProcessFragmentColorBackground-int-} +``` +public RecognitionProcessFragmentColorBackground(int backgroundColor) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| backgroundColor | int | couleur qui sera rendue pendant le processus de reconnaissance | + +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### describeContents() {#describeContents--} +``` +public int describeContents() +``` + + + + +**Returns:** +int +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### writeToParcel(Parcel dest, int flags) {#writeToParcel-android.os.Parcel-int-} +``` +public void writeToParcel(Parcel dest, int flags) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dest | android.os.Parcel | | +| flags | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessingfragment/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessingfragment/_index.md new file mode 100644 index 000000000..a6bbee399 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessingfragment/_index.md @@ -0,0 +1,1739 @@ +--- +title: RecognitionProcessingFragment +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Interne contient l'interface graphique qui est rendue pendant le processus de reconnaissance +type: docs +weight: 26 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessingfragment/ +--- +**Inheritance:** +java.lang.Object, androidx.fragment.app.Fragment +``` +public class RecognitionProcessingFragment extends Fragment +``` + +Interne contient l'interface graphique qui est rendue pendant le processus de reconnaissance +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [RecognitionProcessingFragment()](#RecognitionProcessingFragment--) | | +| [RecognitionProcessingFragment(Bitmap barcodeBitmap, BarcodeRecognitionSettings barcodeRecognitionSettings)](#RecognitionProcessingFragment-android.graphics.Bitmap-com.aspose.barcode.component.barcodescanner.BarcodeRecognitionSettings-) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1)](#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultCallback-O--) | | +| [registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2)](#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultRegistry-androidx.activity.result.ActivityResultCallback-O--) | | +| [dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3)](#dump-java.lang.String-java.io.FileDescriptor-java.io.PrintWriter-java.lang.String---) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getActivity()](#getActivity--) | | +| [getAllowEnterTransitionOverlap()](#getAllowEnterTransitionOverlap--) | | +| [getAllowReturnTransitionOverlap()](#getAllowReturnTransitionOverlap--) | | +| [getArguments()](#getArguments--) | | +| [getChildFragmentManager()](#getChildFragmentManager--) | | +| [getClass()](#getClass--) | | +| [getContext()](#getContext--) | | +| [getDefaultViewModelProviderFactory()](#getDefaultViewModelProviderFactory--) | | +| [getEnterTransition()](#getEnterTransition--) | | +| [getExitTransition()](#getExitTransition--) | | +| [getFragmentManager()](#getFragmentManager--) | | +| [getHost()](#getHost--) | | +| [getId()](#getId--) | | +| [getLayoutInflater()](#getLayoutInflater--) | | +| [getLayoutInflater(Bundle arg0)](#getLayoutInflater-android.os.Bundle-) | | +| [getLifecycle()](#getLifecycle--) | | +| [getLoaderManager()](#getLoaderManager--) | | +| [getParentFragment()](#getParentFragment--) | | +| [getParentFragmentManager()](#getParentFragmentManager--) | | +| [getReenterTransition()](#getReenterTransition--) | | +| [getResources()](#getResources--) | | +| [getRetainInstance()](#getRetainInstance--) | | +| [getReturnTransition()](#getReturnTransition--) | | +| [getSavedStateRegistry()](#getSavedStateRegistry--) | | +| [getSharedElementEnterTransition()](#getSharedElementEnterTransition--) | | +| [getSharedElementReturnTransition()](#getSharedElementReturnTransition--) | | +| [getString(int arg0)](#getString-int-) | | +| [getString(int arg0, Object[] arg1)](#getString-int-java.lang.Object...-) | | +| [getTag()](#getTag--) | | +| [getTargetFragment()](#getTargetFragment--) | | +| [getTargetRequestCode()](#getTargetRequestCode--) | | +| [getText(int arg0)](#getText-int-) | | +| [getUserVisibleHint()](#getUserVisibleHint--) | | +| [getView()](#getView--) | | +| [getViewLifecycleOwner()](#getViewLifecycleOwner--) | | +| [getViewLifecycleOwnerLiveData()](#getViewLifecycleOwnerLiveData--) | | +| [getViewModelStore()](#getViewModelStore--) | | +| [hasOptionsMenu()](#hasOptionsMenu--) | | +| [hashCode()](#hashCode--) | | +| [instantiate(Context arg0, String arg1)](#instantiate-android.content.Context-java.lang.String-) | | +| [instantiate(Context arg0, String arg1, Bundle arg2)](#instantiate-android.content.Context-java.lang.String-android.os.Bundle-) | | +| [isAdded()](#isAdded--) | | +| [isDetached()](#isDetached--) | | +| [isHidden()](#isHidden--) | | +| [isInLayout()](#isInLayout--) | | +| [isMenuVisible()](#isMenuVisible--) | | +| [isRemoving()](#isRemoving--) | | +| [isResumed()](#isResumed--) | | +| [isStateSaved()](#isStateSaved--) | | +| [isVisible()](#isVisible--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [onActivityCreated(Bundle arg0)](#onActivityCreated-android.os.Bundle-) | | +| [onActivityResult(int arg0, int arg1, Intent arg2)](#onActivityResult-int-int-android.content.Intent-) | | +| [onAttach(Activity arg0)](#onAttach-android.app.Activity-) | | +| [onAttach(Context arg0)](#onAttach-android.content.Context-) | | +| [onAttachFragment(Fragment arg0)](#onAttachFragment-androidx.fragment.app.Fragment-) | | +| [onConfigurationChanged(Configuration arg0)](#onConfigurationChanged-android.content.res.Configuration-) | | +| [onContextItemSelected(MenuItem arg0)](#onContextItemSelected-android.view.MenuItem-) | | +| [onCreate(Bundle savedInstanceState)](#onCreate-android.os.Bundle-) | | +| [onCreateAnimation(int arg0, boolean arg1, int arg2)](#onCreateAnimation-int-boolean-int-) | | +| [onCreateAnimator(int arg0, boolean arg1, int arg2)](#onCreateAnimator-int-boolean-int-) | | +| [onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2)](#onCreateContextMenu-android.view.ContextMenu-android.view.View-android.view.ContextMenu.ContextMenuInfo-) | | +| [onCreateOptionsMenu(Menu arg0, MenuInflater arg1)](#onCreateOptionsMenu-android.view.Menu-android.view.MenuInflater-) | | +| [onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)](#onCreateView-android.view.LayoutInflater-android.view.ViewGroup-android.os.Bundle-) | | +| [onDestroy()](#onDestroy--) | | +| [onDestroyOptionsMenu()](#onDestroyOptionsMenu--) | | +| [onDestroyView()](#onDestroyView--) | | +| [onDetach()](#onDetach--) | | +| [onGetLayoutInflater(Bundle arg0)](#onGetLayoutInflater-android.os.Bundle-) | | +| [onHiddenChanged(boolean arg0)](#onHiddenChanged-boolean-) | | +| [onInflate(Activity arg0, AttributeSet arg1, Bundle arg2)](#onInflate-android.app.Activity-android.util.AttributeSet-android.os.Bundle-) | | +| [onInflate(Context arg0, AttributeSet arg1, Bundle arg2)](#onInflate-android.content.Context-android.util.AttributeSet-android.os.Bundle-) | | +| [onLowMemory()](#onLowMemory--) | | +| [onMultiWindowModeChanged(boolean arg0)](#onMultiWindowModeChanged-boolean-) | | +| [onOptionsItemSelected(MenuItem arg0)](#onOptionsItemSelected-android.view.MenuItem-) | | +| [onOptionsMenuClosed(Menu arg0)](#onOptionsMenuClosed-android.view.Menu-) | | +| [onPause()](#onPause--) | | +| [onPictureInPictureModeChanged(boolean arg0)](#onPictureInPictureModeChanged-boolean-) | | +| [onPrepareOptionsMenu(Menu arg0)](#onPrepareOptionsMenu-android.view.Menu-) | | +| [onPrimaryNavigationFragmentChanged(boolean arg0)](#onPrimaryNavigationFragmentChanged-boolean-) | | +| [onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2)](#onRequestPermissionsResult-int-java.lang.String---int---) | | +| [onResume()](#onResume--) | | +| [onSaveInstanceState(Bundle arg0)](#onSaveInstanceState-android.os.Bundle-) | | +| [onStart()](#onStart--) | | +| [onStop()](#onStop--) | | +| [onViewCreated(View view, Bundle savedInstanceState)](#onViewCreated-android.view.View-android.os.Bundle-) | | +| [onViewStateRestored(Bundle arg0)](#onViewStateRestored-android.os.Bundle-) | | +| [postponeEnterTransition()](#postponeEnterTransition--) | | +| [postponeEnterTransition(long arg0, TimeUnit arg1)](#postponeEnterTransition-long-java.util.concurrent.TimeUnit-) | | +| [registerForContextMenu(View arg0)](#registerForContextMenu-android.view.View-) | | +| [requestPermissions(String[] arg0, int arg1)](#requestPermissions-java.lang.String---int-) | | +| [requireActivity()](#requireActivity--) | | +| [requireArguments()](#requireArguments--) | | +| [requireContext()](#requireContext--) | | +| [requireFragmentManager()](#requireFragmentManager--) | | +| [requireHost()](#requireHost--) | | +| [requireParentFragment()](#requireParentFragment--) | | +| [requireView()](#requireView--) | | +| [setAllowEnterTransitionOverlap(boolean arg0)](#setAllowEnterTransitionOverlap-boolean-) | | +| [setAllowReturnTransitionOverlap(boolean arg0)](#setAllowReturnTransitionOverlap-boolean-) | | +| [setArguments(Bundle arg0)](#setArguments-android.os.Bundle-) | | +| [setEnterSharedElementCallback(SharedElementCallback arg0)](#setEnterSharedElementCallback-androidx.core.app.SharedElementCallback-) | | +| [setEnterTransition(Object arg0)](#setEnterTransition-java.lang.Object-) | | +| [setExitSharedElementCallback(SharedElementCallback arg0)](#setExitSharedElementCallback-androidx.core.app.SharedElementCallback-) | | +| [setExitTransition(Object arg0)](#setExitTransition-java.lang.Object-) | | +| [setHasOptionsMenu(boolean arg0)](#setHasOptionsMenu-boolean-) | | +| [setInitialSavedState(Fragment.SavedState arg0)](#setInitialSavedState-androidx.fragment.app.Fragment.SavedState-) | | +| [setMenuVisibility(boolean arg0)](#setMenuVisibility-boolean-) | | +| [setReenterTransition(Object arg0)](#setReenterTransition-java.lang.Object-) | | +| [setRetainInstance(boolean arg0)](#setRetainInstance-boolean-) | | +| [setReturnTransition(Object arg0)](#setReturnTransition-java.lang.Object-) | | +| [setSharedElementEnterTransition(Object arg0)](#setSharedElementEnterTransition-java.lang.Object-) | | +| [setSharedElementReturnTransition(Object arg0)](#setSharedElementReturnTransition-java.lang.Object-) | | +| [setTargetFragment(Fragment arg0, int arg1)](#setTargetFragment-androidx.fragment.app.Fragment-int-) | | +| [setUserVisibleHint(boolean arg0)](#setUserVisibleHint-boolean-) | | +| [shouldShowRequestPermissionRationale(String arg0)](#shouldShowRequestPermissionRationale-java.lang.String-) | | +| [startActivity(Intent arg0)](#startActivity-android.content.Intent-) | | +| [startActivity(Intent arg0, Bundle arg1)](#startActivity-android.content.Intent-android.os.Bundle-) | | +| [startActivityForResult(Intent arg0, int arg1)](#startActivityForResult-android.content.Intent-int-) | | +| [startActivityForResult(Intent arg0, int arg1, Bundle arg2)](#startActivityForResult-android.content.Intent-int-android.os.Bundle-) | | +| [startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6)](#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-) | | +| [startPostponedEnterTransition()](#startPostponedEnterTransition--) | | +| [toString()](#toString--) | | +| [unregisterForContextMenu(View arg0)](#unregisterForContextMenu-android.view.View-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### RecognitionProcessingFragment() {#RecognitionProcessingFragment--} +``` +public RecognitionProcessingFragment() +``` + + +### RecognitionProcessingFragment(Bitmap barcodeBitmap, BarcodeRecognitionSettings barcodeRecognitionSettings) {#RecognitionProcessingFragment-android.graphics.Bitmap-com.aspose.barcode.component.barcodescanner.BarcodeRecognitionSettings-} +``` +public RecognitionProcessingFragment(Bitmap barcodeBitmap, BarcodeRecognitionSettings barcodeRecognitionSettings) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeBitmap | android.graphics.Bitmap | | +| barcodeRecognitionSettings | com.aspose.barcode.component.barcodescanner.BarcodeRecognitionSettings | | + +### registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1) {#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultCallback-O--} +``` +public final ActivityResultLauncher registerForActivityResult(ActivityResultContract arg0, ActivityResultCallback arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.result.contract.ActivityResultContract | | +| arg1 | androidx.activity.result.ActivityResultCallback | | + +**Returns:** +androidx.activity.result.ActivityResultLauncher +### registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2) {#-I-O-registerForActivityResult-androidx.activity.result.contract.ActivityResultContract-I-O--androidx.activity.result.ActivityResultRegistry-androidx.activity.result.ActivityResultCallback-O--} +``` +public final ActivityResultLauncher registerForActivityResult(ActivityResultContract arg0, ActivityResultRegistry arg1, ActivityResultCallback arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.activity.result.contract.ActivityResultContract | | +| arg1 | androidx.activity.result.ActivityResultRegistry | | +| arg2 | androidx.activity.result.ActivityResultCallback | | + +**Returns:** +androidx.activity.result.ActivityResultLauncher +### dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3) {#dump-java.lang.String-java.io.FileDescriptor-java.io.PrintWriter-java.lang.String---} +``` +public void dump(String arg0, FileDescriptor arg1, PrintWriter arg2, String[] arg3) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | +| arg1 | java.io.FileDescriptor | | +| arg2 | java.io.PrintWriter | | +| arg3 | java.lang.String[] | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getActivity() {#getActivity--} +``` +public final FragmentActivity getActivity() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentActivity +### getAllowEnterTransitionOverlap() {#getAllowEnterTransitionOverlap--} +``` +public boolean getAllowEnterTransitionOverlap() +``` + + + + +**Returns:** +boolean +### getAllowReturnTransitionOverlap() {#getAllowReturnTransitionOverlap--} +``` +public boolean getAllowReturnTransitionOverlap() +``` + + + + +**Returns:** +boolean +### getArguments() {#getArguments--} +``` +public final Bundle getArguments() +``` + + + + +**Returns:** +android.os.Bundle +### getChildFragmentManager() {#getChildFragmentManager--} +``` +public final FragmentManager getChildFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getContext() {#getContext--} +``` +public Context getContext() +``` + + + + +**Returns:** +android.content.Context +### getDefaultViewModelProviderFactory() {#getDefaultViewModelProviderFactory--} +``` +public ViewModelProvider.Factory getDefaultViewModelProviderFactory() +``` + + + + +**Returns:** +androidx.lifecycle.ViewModelProvider.Factory +### getEnterTransition() {#getEnterTransition--} +``` +public Object getEnterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getExitTransition() {#getExitTransition--} +``` +public Object getExitTransition() +``` + + + + +**Returns:** +java.lang.Object +### getFragmentManager() {#getFragmentManager--} +``` +public final FragmentManager getFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getHost() {#getHost--} +``` +public final Object getHost() +``` + + + + +**Returns:** +java.lang.Object +### getId() {#getId--} +``` +public final int getId() +``` + + + + +**Returns:** +int +### getLayoutInflater() {#getLayoutInflater--} +``` +public final LayoutInflater getLayoutInflater() +``` + + + + +**Returns:** +android.view.LayoutInflater +### getLayoutInflater(Bundle arg0) {#getLayoutInflater-android.os.Bundle-} +``` +public LayoutInflater getLayoutInflater(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +**Returns:** +android.view.LayoutInflater +### getLifecycle() {#getLifecycle--} +``` +public Lifecycle getLifecycle() +``` + + + + +**Returns:** +androidx.lifecycle.Lifecycle +### getLoaderManager() {#getLoaderManager--} +``` +public LoaderManager getLoaderManager() +``` + + + + +**Returns:** +androidx.loader.app.LoaderManager +### getParentFragment() {#getParentFragment--} +``` +public final Fragment getParentFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### getParentFragmentManager() {#getParentFragmentManager--} +``` +public final FragmentManager getParentFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### getReenterTransition() {#getReenterTransition--} +``` +public Object getReenterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getResources() {#getResources--} +``` +public final Resources getResources() +``` + + + + +**Returns:** +android.content.res.Resources +### getRetainInstance() {#getRetainInstance--} +``` +public final boolean getRetainInstance() +``` + + + + +**Returns:** +boolean +### getReturnTransition() {#getReturnTransition--} +``` +public Object getReturnTransition() +``` + + + + +**Returns:** +java.lang.Object +### getSavedStateRegistry() {#getSavedStateRegistry--} +``` +public final SavedStateRegistry getSavedStateRegistry() +``` + + + + +**Returns:** +androidx.savedstate.SavedStateRegistry +### getSharedElementEnterTransition() {#getSharedElementEnterTransition--} +``` +public Object getSharedElementEnterTransition() +``` + + + + +**Returns:** +java.lang.Object +### getSharedElementReturnTransition() {#getSharedElementReturnTransition--} +``` +public Object getSharedElementReturnTransition() +``` + + + + +**Returns:** +java.lang.Object +### getString(int arg0) {#getString-int-} +``` +public final String getString(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.String +### getString(int arg0, Object[] arg1) {#getString-int-java.lang.Object...-} +``` +public final String getString(int arg0, Object[] arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.Object[] | | + +**Returns:** +java.lang.String +### getTag() {#getTag--} +``` +public final String getTag() +``` + + + + +**Returns:** +java.lang.String +### getTargetFragment() {#getTargetFragment--} +``` +public final Fragment getTargetFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### getTargetRequestCode() {#getTargetRequestCode--} +``` +public final int getTargetRequestCode() +``` + + + + +**Returns:** +int +### getText(int arg0) {#getText-int-} +``` +public final CharSequence getText(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.lang.CharSequence +### getUserVisibleHint() {#getUserVisibleHint--} +``` +public boolean getUserVisibleHint() +``` + + + + +**Returns:** +boolean +### getView() {#getView--} +``` +public View getView() +``` + + + + +**Returns:** +android.view.View +### getViewLifecycleOwner() {#getViewLifecycleOwner--} +``` +public LifecycleOwner getViewLifecycleOwner() +``` + + + + +**Returns:** +androidx.lifecycle.LifecycleOwner +### getViewLifecycleOwnerLiveData() {#getViewLifecycleOwnerLiveData--} +``` +public LiveData getViewLifecycleOwnerLiveData() +``` + + + + +**Returns:** +androidx.lifecycle.LiveData +### getViewModelStore() {#getViewModelStore--} +``` +public ViewModelStore getViewModelStore() +``` + + + + +**Returns:** +androidx.lifecycle.ViewModelStore +### hasOptionsMenu() {#hasOptionsMenu--} +``` +public final boolean hasOptionsMenu() +``` + + + + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### instantiate(Context arg0, String arg1) {#instantiate-android.content.Context-java.lang.String-} +``` +public static Fragment instantiate(Context arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | java.lang.String | | + +**Returns:** +androidx.fragment.app.Fragment +### instantiate(Context arg0, String arg1, Bundle arg2) {#instantiate-android.content.Context-java.lang.String-android.os.Bundle-} +``` +public static Fragment instantiate(Context arg0, String arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | java.lang.String | | +| arg2 | android.os.Bundle | | + +**Returns:** +androidx.fragment.app.Fragment +### isAdded() {#isAdded--} +``` +public final boolean isAdded() +``` + + + + +**Returns:** +boolean +### isDetached() {#isDetached--} +``` +public final boolean isDetached() +``` + + + + +**Returns:** +boolean +### isHidden() {#isHidden--} +``` +public final boolean isHidden() +``` + + + + +**Returns:** +boolean +### isInLayout() {#isInLayout--} +``` +public final boolean isInLayout() +``` + + + + +**Returns:** +boolean +### isMenuVisible() {#isMenuVisible--} +``` +public final boolean isMenuVisible() +``` + + + + +**Returns:** +boolean +### isRemoving() {#isRemoving--} +``` +public final boolean isRemoving() +``` + + + + +**Returns:** +boolean +### isResumed() {#isResumed--} +``` +public final boolean isResumed() +``` + + + + +**Returns:** +boolean +### isStateSaved() {#isStateSaved--} +``` +public final boolean isStateSaved() +``` + + + + +**Returns:** +boolean +### isVisible() {#isVisible--} +``` +public final boolean isVisible() +``` + + + + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### onActivityCreated(Bundle arg0) {#onActivityCreated-android.os.Bundle-} +``` +public void onActivityCreated(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### onActivityResult(int arg0, int arg1, Intent arg2) {#onActivityResult-int-int-android.content.Intent-} +``` +public void onActivityResult(int arg0, int arg1, Intent arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | +| arg2 | android.content.Intent | | + +### onAttach(Activity arg0) {#onAttach-android.app.Activity-} +``` +public void onAttach(Activity arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | + +### onAttach(Context arg0) {#onAttach-android.content.Context-} +``` +public void onAttach(Context arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | + +### onAttachFragment(Fragment arg0) {#onAttachFragment-androidx.fragment.app.Fragment-} +``` +public void onAttachFragment(Fragment arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | + +### onConfigurationChanged(Configuration arg0) {#onConfigurationChanged-android.content.res.Configuration-} +``` +public void onConfigurationChanged(Configuration arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.res.Configuration | | + +### onContextItemSelected(MenuItem arg0) {#onContextItemSelected-android.view.MenuItem-} +``` +public boolean onContextItemSelected(MenuItem arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MenuItem | | + +**Returns:** +boolean +### onCreate(Bundle savedInstanceState) {#onCreate-android.os.Bundle-} +``` +public final void onCreate(Bundle savedInstanceState) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| savedInstanceState | android.os.Bundle | | + +### onCreateAnimation(int arg0, boolean arg1, int arg2) {#onCreateAnimation-int-boolean-int-} +``` +public Animation onCreateAnimation(int arg0, boolean arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | boolean | | +| arg2 | int | | + +**Returns:** +android.view.animation.Animation +### onCreateAnimator(int arg0, boolean arg1, int arg2) {#onCreateAnimator-int-boolean-int-} +``` +public Animator onCreateAnimator(int arg0, boolean arg1, int arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | boolean | | +| arg2 | int | | + +**Returns:** +android.animation.Animator +### onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2) {#onCreateContextMenu-android.view.ContextMenu-android.view.View-android.view.ContextMenu.ContextMenuInfo-} +``` +public void onCreateContextMenu(ContextMenu arg0, View arg1, ContextMenu.ContextMenuInfo arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.ContextMenu | | +| arg1 | android.view.View | | +| arg2 | android.view.ContextMenu.ContextMenuInfo | | + +### onCreateOptionsMenu(Menu arg0, MenuInflater arg1) {#onCreateOptionsMenu-android.view.Menu-android.view.MenuInflater-} +``` +public void onCreateOptionsMenu(Menu arg0, MenuInflater arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | +| arg1 | android.view.MenuInflater | | + +### onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {#onCreateView-android.view.LayoutInflater-android.view.ViewGroup-android.os.Bundle-} +``` +public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| inflater | android.view.LayoutInflater | | +| container | android.view.ViewGroup | | +| savedInstanceState | android.os.Bundle | | + +**Returns:** +android.view.View +### onDestroy() {#onDestroy--} +``` +public void onDestroy() +``` + + + + +### onDestroyOptionsMenu() {#onDestroyOptionsMenu--} +``` +public void onDestroyOptionsMenu() +``` + + + + +### onDestroyView() {#onDestroyView--} +``` +public void onDestroyView() +``` + + + + +### onDetach() {#onDetach--} +``` +public void onDetach() +``` + + + + +### onGetLayoutInflater(Bundle arg0) {#onGetLayoutInflater-android.os.Bundle-} +``` +public LayoutInflater onGetLayoutInflater(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +**Returns:** +android.view.LayoutInflater +### onHiddenChanged(boolean arg0) {#onHiddenChanged-boolean-} +``` +public void onHiddenChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onInflate(Activity arg0, AttributeSet arg1, Bundle arg2) {#onInflate-android.app.Activity-android.util.AttributeSet-android.os.Bundle-} +``` +public void onInflate(Activity arg0, AttributeSet arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.app.Activity | | +| arg1 | android.util.AttributeSet | | +| arg2 | android.os.Bundle | | + +### onInflate(Context arg0, AttributeSet arg1, Bundle arg2) {#onInflate-android.content.Context-android.util.AttributeSet-android.os.Bundle-} +``` +public void onInflate(Context arg0, AttributeSet arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Context | | +| arg1 | android.util.AttributeSet | | +| arg2 | android.os.Bundle | | + +### onLowMemory() {#onLowMemory--} +``` +public void onLowMemory() +``` + + + + +### onMultiWindowModeChanged(boolean arg0) {#onMultiWindowModeChanged-boolean-} +``` +public void onMultiWindowModeChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onOptionsItemSelected(MenuItem arg0) {#onOptionsItemSelected-android.view.MenuItem-} +``` +public boolean onOptionsItemSelected(MenuItem arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.MenuItem | | + +**Returns:** +boolean +### onOptionsMenuClosed(Menu arg0) {#onOptionsMenuClosed-android.view.Menu-} +``` +public void onOptionsMenuClosed(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +### onPause() {#onPause--} +``` +public void onPause() +``` + + + + +### onPictureInPictureModeChanged(boolean arg0) {#onPictureInPictureModeChanged-boolean-} +``` +public void onPictureInPictureModeChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onPrepareOptionsMenu(Menu arg0) {#onPrepareOptionsMenu-android.view.Menu-} +``` +public void onPrepareOptionsMenu(Menu arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.Menu | | + +### onPrimaryNavigationFragmentChanged(boolean arg0) {#onPrimaryNavigationFragmentChanged-boolean-} +``` +public void onPrimaryNavigationFragmentChanged(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2) {#onRequestPermissionsResult-int-java.lang.String---int---} +``` +public void onRequestPermissionsResult(int arg0, String[] arg1, int[] arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.lang.String[] | | +| arg2 | int[] | | + +### onResume() {#onResume--} +``` +public void onResume() +``` + + + + +### onSaveInstanceState(Bundle arg0) {#onSaveInstanceState-android.os.Bundle-} +``` +public void onSaveInstanceState(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### onStart() {#onStart--} +``` +public void onStart() +``` + + + + +### onStop() {#onStop--} +``` +public void onStop() +``` + + + + +### onViewCreated(View view, Bundle savedInstanceState) {#onViewCreated-android.view.View-android.os.Bundle-} +``` +public void onViewCreated(View view, Bundle savedInstanceState) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| vue | android.view.View | | +| savedInstanceState | android.os.Bundle | | + +### onViewStateRestored(Bundle arg0) {#onViewStateRestored-android.os.Bundle-} +``` +public void onViewStateRestored(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### postponeEnterTransition() {#postponeEnterTransition--} +``` +public void postponeEnterTransition() +``` + + + + +### postponeEnterTransition(long arg0, TimeUnit arg1) {#postponeEnterTransition-long-java.util.concurrent.TimeUnit-} +``` +public final void postponeEnterTransition(long arg0, TimeUnit arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | java.util.concurrent.TimeUnit | | + +### registerForContextMenu(View arg0) {#registerForContextMenu-android.view.View-} +``` +public void registerForContextMenu(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### requestPermissions(String[] arg0, int arg1) {#requestPermissions-java.lang.String---int-} +``` +public final void requestPermissions(String[] arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String[] | | +| arg1 | int | | + +### requireActivity() {#requireActivity--} +``` +public final FragmentActivity requireActivity() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentActivity +### requireArguments() {#requireArguments--} +``` +public final Bundle requireArguments() +``` + + + + +**Returns:** +android.os.Bundle +### requireContext() {#requireContext--} +``` +public final Context requireContext() +``` + + + + +**Returns:** +android.content.Context +### requireFragmentManager() {#requireFragmentManager--} +``` +public final FragmentManager requireFragmentManager() +``` + + + + +**Returns:** +androidx.fragment.app.FragmentManager +### requireHost() {#requireHost--} +``` +public final Object requireHost() +``` + + + + +**Returns:** +java.lang.Object +### requireParentFragment() {#requireParentFragment--} +``` +public final Fragment requireParentFragment() +``` + + + + +**Returns:** +androidx.fragment.app.Fragment +### requireView() {#requireView--} +``` +public final View requireView() +``` + + + + +**Returns:** +android.view.View +### setAllowEnterTransitionOverlap(boolean arg0) {#setAllowEnterTransitionOverlap-boolean-} +``` +public void setAllowEnterTransitionOverlap(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setAllowReturnTransitionOverlap(boolean arg0) {#setAllowReturnTransitionOverlap-boolean-} +``` +public void setAllowReturnTransitionOverlap(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setArguments(Bundle arg0) {#setArguments-android.os.Bundle-} +``` +public void setArguments(Bundle arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.os.Bundle | | + +### setEnterSharedElementCallback(SharedElementCallback arg0) {#setEnterSharedElementCallback-androidx.core.app.SharedElementCallback-} +``` +public void setEnterSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.SharedElementCallback | | + +### setEnterTransition(Object arg0) {#setEnterTransition-java.lang.Object-} +``` +public void setEnterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setExitSharedElementCallback(SharedElementCallback arg0) {#setExitSharedElementCallback-androidx.core.app.SharedElementCallback-} +``` +public void setExitSharedElementCallback(SharedElementCallback arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.core.app.SharedElementCallback | | + +### setExitTransition(Object arg0) {#setExitTransition-java.lang.Object-} +``` +public void setExitTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setHasOptionsMenu(boolean arg0) {#setHasOptionsMenu-boolean-} +``` +public void setHasOptionsMenu(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setInitialSavedState(Fragment.SavedState arg0) {#setInitialSavedState-androidx.fragment.app.Fragment.SavedState-} +``` +public void setInitialSavedState(Fragment.SavedState arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment.SavedState | | + +### setMenuVisibility(boolean arg0) {#setMenuVisibility-boolean-} +``` +public void setMenuVisibility(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setReenterTransition(Object arg0) {#setReenterTransition-java.lang.Object-} +``` +public void setReenterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setRetainInstance(boolean arg0) {#setRetainInstance-boolean-} +``` +public void setRetainInstance(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### setReturnTransition(Object arg0) {#setReturnTransition-java.lang.Object-} +``` +public void setReturnTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setSharedElementEnterTransition(Object arg0) {#setSharedElementEnterTransition-java.lang.Object-} +``` +public void setSharedElementEnterTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setSharedElementReturnTransition(Object arg0) {#setSharedElementReturnTransition-java.lang.Object-} +``` +public void setSharedElementReturnTransition(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +### setTargetFragment(Fragment arg0, int arg1) {#setTargetFragment-androidx.fragment.app.Fragment-int-} +``` +public void setTargetFragment(Fragment arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | androidx.fragment.app.Fragment | | +| arg1 | int | | + +### setUserVisibleHint(boolean arg0) {#setUserVisibleHint-boolean-} +``` +public void setUserVisibleHint(boolean arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | boolean | | + +### shouldShowRequestPermissionRationale(String arg0) {#shouldShowRequestPermissionRationale-java.lang.String-} +``` +public boolean shouldShowRequestPermissionRationale(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +boolean +### startActivity(Intent arg0) {#startActivity-android.content.Intent-} +``` +public void startActivity(Intent arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | + +### startActivity(Intent arg0, Bundle arg1) {#startActivity-android.content.Intent-android.os.Bundle-} +``` +public void startActivity(Intent arg0, Bundle arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | android.os.Bundle | | + +### startActivityForResult(Intent arg0, int arg1) {#startActivityForResult-android.content.Intent-int-} +``` +public void startActivityForResult(Intent arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | + +### startActivityForResult(Intent arg0, int arg1, Bundle arg2) {#startActivityForResult-android.content.Intent-int-android.os.Bundle-} +``` +public void startActivityForResult(Intent arg0, int arg1, Bundle arg2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.Intent | | +| arg1 | int | | +| arg2 | android.os.Bundle | | + +### startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6) {#startIntentSenderForResult-android.content.IntentSender-int-android.content.Intent-int-int-int-android.os.Bundle-} +``` +public void startIntentSenderForResult(IntentSender arg0, int arg1, Intent arg2, int arg3, int arg4, int arg5, Bundle arg6) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.content.IntentSender | | +| arg1 | int | | +| arg2 | android.content.Intent | | +| arg3 | int | | +| arg4 | int | | +| arg5 | int | | +| arg6 | android.os.Bundle | | + +### startPostponedEnterTransition() {#startPostponedEnterTransition--} +``` +public void startPostponedEnterTransition() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### unregisterForContextMenu(View arg0) {#unregisterForContextMenu-android.view.View-} +``` +public void unregisterForContextMenu(View arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | android.view.View | | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessingfragmentsettings/_index.md b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessingfragmentsettings/_index.md new file mode 100644 index 000000000..0498b4dd5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessingfragmentsettings/_index.md @@ -0,0 +1,476 @@ +--- +title: RecognitionProcessingFragmentSettings +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 27 +url: /fr/androidjava/com.aspose.barcode.component.barcodescanner/recognitionprocessingfragmentsettings/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +android.os.Parcelable +``` +public class RecognitionProcessingFragmentSettings implements Parcelable +``` +## Champs + +| Champ | Description | +| --- | --- | +| [CREATOR](#CREATOR) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [describeContents()](#describeContents--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBackgroundDuringRecognitionProcess()](#getBackgroundDuringRecognitionProcess--) | Obtient l'arrière-plan qui sera rendu pendant le processus de reconnaissance | +| [getClass()](#getClass--) | | +| [getProgressBarColor()](#getProgressBarColor--) | Obtient la couleur de la barre de progression qui est rendue pendant la reconnaissance | +| [getProgressBarSize()](#getProgressBarSize--) | Obtient la taille de la barre de progression qui est rendue pendant la reconnaissance | +| [getRecognitionCancelButtonRightOffset()](#getRecognitionCancelButtonRightOffset--) | Obtient le décalage depuis la bordure droite du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance | +| [getRecognitionCancelButtonText()](#getRecognitionCancelButtonText--) | Obtient le texte du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance | +| [getRecognitionCancelButtonTextColor()](#getRecognitionCancelButtonTextColor--) | Obtient la couleur du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance | +| [getRecognitionCancelButtonTextSize()](#getRecognitionCancelButtonTextSize--) | Obtient la taille du texte du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance | +| [getRecognitionCancelButtonVisibility()](#getRecognitionCancelButtonVisibility--) | Obtient la visibilité du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance | +| [getRecognitionProcessAboveLabelText()](#getRecognitionProcessAboveLabelText--) | Obtient le texte de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance | +| [getRecognitionProcessAboveLabelTextColor()](#getRecognitionProcessAboveLabelTextColor--) | Obtient la couleur de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance | +| [getRecognitionProcessAboveLabelTextSize()](#getRecognitionProcessAboveLabelTextSize--) | Obtient la taille du texte de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance | +| [getRecognitionProcessAboveLabelTextVisible()](#getRecognitionProcessAboveLabelTextVisible--) | Obtient la couleur de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance | +| [hashCode()](#hashCode--) | | +| [importSettings(RecognitionProcessingFragmentSettings recognitionProcessingFragmentSettings)](#importSettings-com.aspose.barcode.component.barcodescanner.RecognitionProcessingFragmentSettings-) | Importe les paramètres | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBackgroundImageDuringRecognitionProcess(RecognitionProcessFragmentBackground backgroundImage)](#setBackgroundImageDuringRecognitionProcess-com.aspose.barcode.component.barcodescanner.RecognitionProcessFragmentBackground-) | Définit l'arrière-plan qui sera rendu pendant le processus de reconnaissance | +| [setProgressBarColor(int progressBarColor)](#setProgressBarColor-int-) | Définit la couleur de la barre de progression qui est rendue pendant la reconnaissance | +| [setRecognitionCancelButtonRightOffset(int recognitionCancelButtonRightOffset)](#setRecognitionCancelButtonRightOffset-int-) | Définit le décalage depuis la bordure droite du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance | +| [setRecognitionCancelButtonText(String recognitionCancelButtonText)](#setRecognitionCancelButtonText-java.lang.String-) | Définit le texte du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance | +| [setRecognitionCancelButtonTextColor(int recognitionCancelButtonTextColor)](#setRecognitionCancelButtonTextColor-int-) | Définit la couleur du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance | +| [setRecognitionCancelButtonTextSize(float recognitionCancelButtonTextSize)](#setRecognitionCancelButtonTextSize-float-) | Définit la taille du texte du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance | +| [setRecognitionCancelButtonVisibility(boolean recognitionCancelButtonVisible)](#setRecognitionCancelButtonVisibility-boolean-) | Définit la visibilité du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance | +| [setRecognitionProcessAboveLabelText(String recognitionProcessAboveLabelText)](#setRecognitionProcessAboveLabelText-java.lang.String-) | Définit le texte de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance | +| [setRecognitionProcessAboveLabelTextColor(int recognitionProcessAboveLabelTextColor)](#setRecognitionProcessAboveLabelTextColor-int-) | Définit la couleur de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance | +| [setRecognitionProcessAboveLabelTextSize(int recognitionAboveLabelTextSize)](#setRecognitionProcessAboveLabelTextSize-int-) | Définit la taille du texte de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance | +| [setRecognitionProcessAboveLabelTextVisible(boolean recognitionProcessAboveLabelTextVisible)](#setRecognitionProcessAboveLabelTextVisible-boolean-) | Définit la couleur de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance | +| [setRecognitionProgressBarSize(int progressBarSize)](#setRecognitionProgressBarSize-int-) | Définit la taille de la barre de progression qui est rendue pendant la reconnaissance | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +| [writeToParcel(Parcel dest, int flags)](#writeToParcel-android.os.Parcel-int-) | | +### CREATOR {#CREATOR} +``` +public static final Parcelable.Creator CREATOR +``` + + +### describeContents() {#describeContents--} +``` +public int describeContents() +``` + + + + +**Returns:** +int +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBackgroundDuringRecognitionProcess() {#getBackgroundDuringRecognitionProcess--} +``` +public RecognitionProcessFragmentBackground getBackgroundDuringRecognitionProcess() +``` + + +Obtient l'arrière-plan qui sera rendu pendant le processus de reconnaissance + +**Returns:** +com.aspose.barcode.component.barcodescanner.RecognitionProcessFragmentBackground - l'arrière-plan qui sera rendu pendant le processus de reconnaissance +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getProgressBarColor() {#getProgressBarColor--} +``` +public int getProgressBarColor() +``` + + +Obtient la couleur de la barre de progression qui est rendue pendant la reconnaissance + +**Returns:** +int - couleur de la barre de progression +### getProgressBarSize() {#getProgressBarSize--} +``` +public int getProgressBarSize() +``` + + +Obtient la taille de la barre de progression qui est rendue pendant la reconnaissance + +**Returns:** +int - taille de la barre de progression +### getRecognitionCancelButtonRightOffset() {#getRecognitionCancelButtonRightOffset--} +``` +public int getRecognitionCancelButtonRightOffset() +``` + + +Obtient le décalage depuis la bordure droite du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance + +**Returns:** +int - décalage depuis la bordure droite du bouton "Cancel" +### getRecognitionCancelButtonText() {#getRecognitionCancelButtonText--} +``` +public String getRecognitionCancelButtonText() +``` + + +Obtient le texte du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance + +**Returns:** +java.lang.String - texte du bouton "Cancel" affiché sous la barre de progression +### getRecognitionCancelButtonTextColor() {#getRecognitionCancelButtonTextColor--} +``` +public int getRecognitionCancelButtonTextColor() +``` + + +Obtient la couleur du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance + +**Returns:** +int - couleur du bouton "Cancel" affiché sous la barre de progression +### getRecognitionCancelButtonTextSize() {#getRecognitionCancelButtonTextSize--} +``` +public float getRecognitionCancelButtonTextSize() +``` + + +Obtient la taille du texte du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance + +**Returns:** +float - taille du texte du bouton "Cancel" affiché sous la progression +### getRecognitionCancelButtonVisibility() {#getRecognitionCancelButtonVisibility--} +``` +public boolean getRecognitionCancelButtonVisibility() +``` + + +Obtient la visibilité du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance + +**Returns:** +boolean - visibilité du bouton "Cancel" +### getRecognitionProcessAboveLabelText() {#getRecognitionProcessAboveLabelText--} +``` +public String getRecognitionProcessAboveLabelText() +``` + + +Obtient le texte de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance + +**Returns:** +java.lang.String - texte du TextView affiché au-dessus de la barre de progression +### getRecognitionProcessAboveLabelTextColor() {#getRecognitionProcessAboveLabelTextColor--} +``` +public int getRecognitionProcessAboveLabelTextColor() +``` + + +Obtient la couleur de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance + +**Returns:** +int - couleur du TextView affiché au-dessus de la barre de progression +### getRecognitionProcessAboveLabelTextSize() {#getRecognitionProcessAboveLabelTextSize--} +``` +public float getRecognitionProcessAboveLabelTextSize() +``` + + +Obtient la taille du texte de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance + +**Returns:** +float - taille du texte du TextView affiché au-dessus de la barre de progression +### getRecognitionProcessAboveLabelTextVisible() {#getRecognitionProcessAboveLabelTextVisible--} +``` +public boolean getRecognitionProcessAboveLabelTextVisible() +``` + + +Obtient la couleur de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance + +**Returns:** +boolean - couleur du TextView affiché au-dessus de la barre de progression +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### importSettings(RecognitionProcessingFragmentSettings recognitionProcessingFragmentSettings) {#importSettings-com.aspose.barcode.component.barcodescanner.RecognitionProcessingFragmentSettings-} +``` +public void importSettings(RecognitionProcessingFragmentSettings recognitionProcessingFragmentSettings) +``` + + +Importe les paramètres + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionProcessingFragmentSettings | com.aspose.barcode.component.barcodescanner.RecognitionProcessingFragmentSettings | | + +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBackgroundImageDuringRecognitionProcess(RecognitionProcessFragmentBackground backgroundImage) {#setBackgroundImageDuringRecognitionProcess-com.aspose.barcode.component.barcodescanner.RecognitionProcessFragmentBackground-} +``` +public void setBackgroundImageDuringRecognitionProcess(RecognitionProcessFragmentBackground backgroundImage) +``` + + +Définit l'arrière-plan qui sera rendu pendant le processus de reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| backgroundImage | com.aspose.barcode.component.barcodescanner.RecognitionProcessFragmentBackground | l'arrière-plan qui sera affiché pendant le processus de reconnaissance | + +### setProgressBarColor(int progressBarColor) {#setProgressBarColor-int-} +``` +public void setProgressBarColor(int progressBarColor) +``` + + +Définit la couleur de la barre de progression qui est rendue pendant la reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| progressBarColor | int | couleur de la barre de progression | + +### setRecognitionCancelButtonRightOffset(int recognitionCancelButtonRightOffset) {#setRecognitionCancelButtonRightOffset-int-} +``` +public void setRecognitionCancelButtonRightOffset(int recognitionCancelButtonRightOffset) +``` + + +Définit le décalage depuis la bordure droite du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionCancelButtonRightOffset | int | décalage depuis la bordure droite du bouton "Cancel" | + +### setRecognitionCancelButtonText(String recognitionCancelButtonText) {#setRecognitionCancelButtonText-java.lang.String-} +``` +public void setRecognitionCancelButtonText(String recognitionCancelButtonText) +``` + + +Définit le texte du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionCancelButtonText | java.lang.String | texte du bouton "Cancel" affiché sous la barre de progression | + +### setRecognitionCancelButtonTextColor(int recognitionCancelButtonTextColor) {#setRecognitionCancelButtonTextColor-int-} +``` +public void setRecognitionCancelButtonTextColor(int recognitionCancelButtonTextColor) +``` + + +Définit la couleur du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionCancelButtonTextColor | int | couleur du bouton "Cancel" affiché sous la barre de progression | + +### setRecognitionCancelButtonTextSize(float recognitionCancelButtonTextSize) {#setRecognitionCancelButtonTextSize-float-} +``` +public void setRecognitionCancelButtonTextSize(float recognitionCancelButtonTextSize) +``` + + +Définit la taille du texte du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionCancelButtonTextSize | float | taille du texte du bouton "Cancel" qui est rendu sous la progression | + +### setRecognitionCancelButtonVisibility(boolean recognitionCancelButtonVisible) {#setRecognitionCancelButtonVisibility-boolean-} +``` +public void setRecognitionCancelButtonVisibility(boolean recognitionCancelButtonVisible) +``` + + +Définit la visibilité du bouton "Cancel" qui est rendu sous la barre de progression pendant la reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionCancelButtonVisible | boolean | visibilité du bouton "Cancel" | + +### setRecognitionProcessAboveLabelText(String recognitionProcessAboveLabelText) {#setRecognitionProcessAboveLabelText-java.lang.String-} +``` +public void setRecognitionProcessAboveLabelText(String recognitionProcessAboveLabelText) +``` + + +Définit le texte de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionProcessAboveLabelText | java.lang.String | texte du TextView qui est rendu au-dessus de la barre de progression | + +### setRecognitionProcessAboveLabelTextColor(int recognitionProcessAboveLabelTextColor) {#setRecognitionProcessAboveLabelTextColor-int-} +``` +public void setRecognitionProcessAboveLabelTextColor(int recognitionProcessAboveLabelTextColor) +``` + + +Définit la couleur de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionProcessAboveLabelTextColor | int | couleur du TextView qui est rendu au-dessus de la barre de progression | + +### setRecognitionProcessAboveLabelTextSize(int recognitionAboveLabelTextSize) {#setRecognitionProcessAboveLabelTextSize-int-} +``` +public void setRecognitionProcessAboveLabelTextSize(int recognitionAboveLabelTextSize) +``` + + +Définit la taille du texte de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionAboveLabelTextSize | int | taille du texte du TextView qui est rendu au-dessus de la barre de progression | + +### setRecognitionProcessAboveLabelTextVisible(boolean recognitionProcessAboveLabelTextVisible) {#setRecognitionProcessAboveLabelTextVisible-boolean-} +``` +public void setRecognitionProcessAboveLabelTextVisible(boolean recognitionProcessAboveLabelTextVisible) +``` + + +Définit la couleur de TextView qui est rendu au-dessus de la barre de progression pendant la reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| recognitionProcessAboveLabelTextVisible | boolean | couleur du TextView qui est rendu au-dessus de la barre de progression | + +### setRecognitionProgressBarSize(int progressBarSize) {#setRecognitionProgressBarSize-int-} +``` +public void setRecognitionProgressBarSize(int progressBarSize) +``` + + +Définit la taille de la barre de progression qui est rendue pendant la reconnaissance + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| progressBarSize | int | taille de la barre de progression | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + +### writeToParcel(Parcel dest, int flags) {#writeToParcel-android.os.Parcel-int-} +``` +public void writeToParcel(Parcel dest, int flags) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dest | android.os.Parcel | | +| flags | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/_index.md b/french/androidjava/com.aspose.barcode.generation/_index.md new file mode 100644 index 000000000..106431dc9 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/_index.md @@ -0,0 +1,127 @@ +--- +title: com.aspose.barcode.generation +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Ce package contient des outils pour la génération de codes-barres. +type: docs +weight: 15 +url: /fr/androidjava/com.aspose.barcode.generation/ +--- + +Ce package contient des outils pour la génération de codes-barres. + + +## Classes + +| Classe | Description | +| --- | --- | +| [AustralianPostParameters](../com.aspose.barcode.generation/australianpostparameters) | Paramètres du code-barres AustralianPost. | +| [AztecExtCodetextBuilder](../com.aspose.barcode.generation/aztecextcodetextbuilder) | | +| [AztecParameters](../com.aspose.barcode.generation/aztecparameters) | Paramètres Aztec. | +| [BarcodeGenerator](../com.aspose.barcode.generation/barcodegenerator) | BarcodeGenerator pour la génération d'images de codes-barres côté serveur. | +| [BarcodeParameters](../com.aspose.barcode.generation/barcodeparameters) | Paramètres de génération de code-barres. | +| [BarcodeParametersInternal](../com.aspose.barcode.generation/barcodeparametersinternal) | | +| [BaseEncodeType](../com.aspose.barcode.generation/baseencodetype) | Classe de base pour SymbologyEncodeType. | +| [BaseGenerationParameters](../com.aspose.barcode.generation/basegenerationparameters) | Paramètres de génération d'image de code-barres. | +| [BorderParameters](../com.aspose.barcode.generation/borderparameters) | Paramètres de bordure d'image de code-barres | +| [CMYKColor](../com.aspose.barcode.generation/cmykcolor) | Classe pour la couleur CMYK. | +| [CaptionParameters](../com.aspose.barcode.generation/captionparameters) | Paramètres de légende. | +| [CaptionParametersInternal](../com.aspose.barcode.generation/captionparametersinternal) | | +| [CodabarParameters](../com.aspose.barcode.generation/codabarparameters) | Paramètres Codabar. | +| [CodabarSymbol](../com.aspose.barcode.generation/codabarsymbol) | Spécifie le symbole de début ou de fin de la spécification du code-barres Codabar. | +| [CodablockParameters](../com.aspose.barcode.generation/codablockparameters) | Paramètres Codablock. | +| [Code128Parameters](../com.aspose.barcode.generation/code128parameters) | Paramètres Code128. | +| [Code16KParameters](../com.aspose.barcode.generation/code16kparameters) | Paramètres Code16K. | +| [CodetextParameters](../com.aspose.barcode.generation/codetextparameters) | Paramètres de texte de code. | +| [CodetextParametersInternal](../com.aspose.barcode.generation/codetextparametersinternal) | | +| [ComplexBarcode](../com.aspose.barcode.generation/complexbarcode) | | +| [ConstParameters](../com.aspose.barcode.generation/constparameters) | | +| [CouponParameters](../com.aspose.barcode.generation/couponparameters) | Paramètres de coupon. | +| [DataBarParameters](../com.aspose.barcode.generation/databarparameters) | Paramètres Databar. | +| [DataMatrixExtCodetextBuilder](../com.aspose.barcode.generation/datamatrixextcodetextbuilder) | | +| [DataMatrixParameters](../com.aspose.barcode.generation/datamatrixparameters) | Paramètres DataMatrix. | +| [DotCodeExtCodetextBuilder](../com.aspose.barcode.generation/dotcodeextcodetextbuilder) | | +| [DotCodeParameters](../com.aspose.barcode.generation/dotcodeparameters) | Paramètres DotCode. | +| [ECIEncodings](../com.aspose.barcode.generation/eciencodings) | Identifiants d'interprétation de canal étendu. | +| [EncodeTypes](../com.aspose.barcode.generation/encodetypes) | Spécifie le type de code-barres à encoder. | +| [ExtCodeItem](../com.aspose.barcode.generation/extcodeitem) | Classe de base du conteneur de texte de code étendu | +| [ExtCodetextBuilder](../com.aspose.barcode.generation/extcodetextbuilder) | Classe d'assistance pour la génération automatique de texte de code du mode texte de code étendu | +| [ExtECICodetext](../com.aspose.barcode.generation/extecicodetext) | Conteneur de texte de code de canal étendu | +| [ExtPlainCodetext](../com.aspose.barcode.generation/extplaincodetext) | Conteneur de texte de code simple (plain) | +| [FontStyle](../com.aspose.barcode.generation/fontstyle) | Spécifie les informations de style appliquées au texte. | +| [FontUnit](../com.aspose.barcode.generation/fontunit) | Définit un format particulier pour le texte, incluant la police, la taille et les attributs de style où la taille se trouve dans la propriété Unit value. | +| [FontUnitInternal](../com.aspose.barcode.generation/fontunitinternal) | | +| [GS1CompositeBarParameters](../com.aspose.barcode.generation/gs1compositebarparameters) | | +| [GS1HanXinEncoder](../com.aspose.barcode.generation/gs1hanxinencoder) | Contient des fonctions pour l'encodage GS1HanXin | +| [HanXinEncoder](../com.aspose.barcode.generation/hanxinencoder) | | +| [HanXinExtCodetextBuilder](../com.aspose.barcode.generation/hanxinextcodetextbuilder) | | +| [HanXinParameters](../com.aspose.barcode.generation/hanxinparameters) | Paramètres Han Xin. | +| [ITFParameters](../com.aspose.barcode.generation/itfparameters) | Paramètres ITF. | +| [ImageParameters](../com.aspose.barcode.generation/imageparameters) | Paramètres d'image. | +| [ImageUnitConverter](../com.aspose.barcode.generation/imageunitconverter) | | +| [MacroCharacterValues](../com.aspose.barcode.generation/macrocharactervalues) | | +| [MaxiCodeExtCodetextBuilder](../com.aspose.barcode.generation/maxicodeextcodetextbuilder) | Générateur de texte codé étendu pour les codes-barres MaxiCode en mode ExtendedCodetext du MaxiCodeEncodeMode. Utilisez la propriété TwoDDisplayText de BarcodeGenerator pour définir le texte visible en supprimant les caractères de gestion. | +| [MaxiCodeMode](../com.aspose.barcode.generation/maxicodemode) | Mode d'encodage pour les codes-barres MaxiCode. | +| [MaxiCodeParameters](../com.aspose.barcode.generation/maxicodeparameters) | Paramètres MaxiCode. | +| [Padding](../com.aspose.barcode.generation/padding) | Paramètres de remplissage. | +| [PatchCodeParameters](../com.aspose.barcode.generation/patchcodeparameters) | Paramètres PatchCode. | +| [Pdf417Parameters](../com.aspose.barcode.generation/pdf417parameters) | Paramètres PDF417. | +| [PdfParameters](../com.aspose.barcode.generation/pdfparameters) | Paramètres PDF. | +| [PostalParameters](../com.aspose.barcode.generation/postalparameters) | Paramètres postaux. | +| [QrExtCodetextBuilder](../com.aspose.barcode.generation/qrextcodetextbuilder) | Générateur de texte codé étendu pour les codes-barres QR 2D en mode ExtendedCodetext du QrEncodeMode. Utilisez la propriété TwoDDisplayText de BarcodeGenerator pour définir le texte visible en supprimant les caractères de gestion. | +| [QrParameters](../com.aspose.barcode.generation/qrparameters) | Paramètres QR. | +| [QrStructuredAppendParameters](../com.aspose.barcode.generation/qrstructuredappendparameters) | Paramètres d'ajout structuré QR. | +| [SupplementParameters](../com.aspose.barcode.generation/supplementparameters) | Paramètres de supplément. | +| [SymbologyEncodeType](../com.aspose.barcode.generation/symbologyencodetype) | Type d'encodage de la symbologie. | +| [TextMeasurer](../com.aspose.barcode.generation/textmeasurer) | Représente le mesureur de texte. | +| [Unit](../com.aspose.barcode.generation/unit) | Spécifie la valeur de taille dans différentes unités (Pixel, pouces, etc.). | +| [UnitInternal](../com.aspose.barcode.generation/unitinternal) | | + +## Interfaces + +| Interface | Description | +| --- | --- | +| [IBarCodeEncoder](../com.aspose.barcode.generation/ibarcodeencoder) | | + +## Énumérations + +| Énum | Description | +| --- | --- | +| [AutoSizeMode](../com.aspose.barcode.generation/autosizemode) | Spécifie les différents types de modes de dimensionnement automatique. | +| [AztecEncodeMode](../com.aspose.barcode.generation/aztecencodemode) | Mode d'encodage pour les codes-barres Aztec. | +| [AztecSymbolMode](../com.aspose.barcode.generation/aztecsymbolmode) | Spécifie le mode du symbole Aztec. | +| [BarCodeImageFormat](../com.aspose.barcode.generation/barcodeimageformat) | Spécifie le format de fichier de l'image. | +| [BarcodeClassifications](../com.aspose.barcode.generation/barcodeclassifications) | Classification EncodeTypes | +| [BorderDashStyle](../com.aspose.barcode.generation/borderdashstyle) | Spécifie le style des lignes de bordure en pointillés. | +| [CodabarChecksumMode](../com.aspose.barcode.generation/codabarchecksummode) | Spécifie l'algorithme de somme de contrôle pour Codabar | +| [Code128Emulation](../com.aspose.barcode.generation/code128emulation) | | +| [Code128EncodeMode](../com.aspose.barcode.generation/code128encodemode) | Mode d'encodage pour les codes-barres Code128. | +| [CodeLocation](../com.aspose.barcode.generation/codelocation) | Emplacement du texte de code | +| [DataMatrixEccType](../com.aspose.barcode.generation/datamatrixecctype) | Spécifiez le type de ECC à encoder. | +| [DataMatrixEncodeMode](../com.aspose.barcode.generation/datamatrixencodemode) | Mode d'encodage de l'encodeur DataMatrix, par défaut sur Auto | +| [DataMatrixVersion](../com.aspose.barcode.generation/datamatrixversion) | Spécifiez le type de ECC à encoder. | +| [DotCodeEncodeMode](../com.aspose.barcode.generation/dotcodeencodemode) | Mode d'encodage pour les codes-barres DotCode. | +| [EnableChecksum](../com.aspose.barcode.generation/enablechecksum) | Activer la somme de contrôle lors de la génération des codes-barres 1D. | +| [FontMode](../com.aspose.barcode.generation/fontmode) | Mode de taille de police. | +| [GraphicsUnit](../com.aspose.barcode.generation/graphicsunit) | Spécifie l'unité de mesure pour les données fournies. | +| [HanXinEncodeMode](../com.aspose.barcode.generation/hanxinencodemode) | Mode d'encodage Han Xin Code. | +| [HanXinErrorLevel](../com.aspose.barcode.generation/hanxinerrorlevel) | Niveau de correction d'erreurs Reed-Solomon. | +| [HanXinModes](../com.aspose.barcode.generation/hanxinmodes) | Mode d'encodage Han Xin Code. | +| [HanXinVersion](../com.aspose.barcode.generation/hanxinversion) | Version du Han Xin Code. | +| [ITF14BorderType](../com.aspose.barcode.generation/itf14bordertype) | Type de bordure du code-barres ITF14 | +| [MacroCharacter](../com.aspose.barcode.generation/macrocharacter) | Les valeurs des caractères macro 05 et 06 sont utilisées pour obtenir un encodage plus compact dans les modes spéciaux. | +| [MaxiCodeEncodeMode](../com.aspose.barcode.generation/maxicodeencodemode) | Mode d'encodage pour les codes-barres MaxiCode. | +| [MicroQRVersion](../com.aspose.barcode.generation/microqrversion) | Version du MicroQR Code. | +| [PatchFormat](../com.aspose.barcode.generation/patchformat) | Format PatchCode. | +| [Pdf417CompactionMode](../com.aspose.barcode.generation/pdf417compactionmode) | Mode de compaction du code-barres Pdf417 | +| [Pdf417EncodeMode](../com.aspose.barcode.generation/pdf417encodemode) | Mode d'encodage du code-barres Pdf417 | +| [Pdf417ErrorLevel](../com.aspose.barcode.generation/pdf417errorlevel) | Niveau de correction d'erreurs du code-barres pdf417, de 0 à 9, le niveau 0 signifie aucune correction d'erreurs, le niveau 9 signifie la meilleure correction d'erreurs | +| [Pdf417MacroTerminator](../com.aspose.barcode.generation/pdf417macroterminator) | Utilisé pour indiquer à l'encodeur s'il faut ajouter le Terminator Macro PDF417 (code mot 922) au segment. | +| [QREncodeMode](../com.aspose.barcode.generation/qrencodemode) | Mode d'encodage pour les codes-barres QR. | +| [QREncodeType](../com.aspose.barcode.generation/qrencodetype) | Mode de sélection QR / MicroQR. | +| [QRErrorLevel](../com.aspose.barcode.generation/qrerrorlevel) | Niveau de correction d'erreurs Reed-Solomon. | +| [QRVersion](../com.aspose.barcode.generation/qrversion) | Version du QR Code. | +| [RectMicroQRVersion](../com.aspose.barcode.generation/rectmicroqrversion) | Version du RectMicroQR Code. | +| [StringAlignment](../com.aspose.barcode.generation/stringalignment) | | +| [TextAlignment](../com.aspose.barcode.generation/textalignment) | Alignement du texte. | +| [TextRenderingHint](../com.aspose.barcode.generation/textrenderinghint) | | +| [TwoDComponentType](../com.aspose.barcode.generation/twodcomponenttype) | Type de composant 2D Cet exemple montre comment créer et enregistrer une image GS1 Composite Bar. | diff --git a/french/androidjava/com.aspose.barcode.generation/australianpostparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/australianpostparameters/_index.md new file mode 100644 index 000000000..410b6948d --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/australianpostparameters/_index.md @@ -0,0 +1,224 @@ +--- +title: AustralianPostParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres du code-barres AustralianPost. +type: docs +weight: 10 +url: /fr/androidjava/com.aspose.barcode.generation/australianpostparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class AustralianPostParameters +``` + +Paramètres du code-barres AustralianPost. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAustralianPostEncodingTable()](#getAustralianPostEncodingTable--) | Type d'interprétation pour les informations client d'AustralianPost, par défaut à CustomerInformationInterpretingType.Other\" | +| [getAustralianPostShortBarHeight()](#getAustralianPostShortBarHeight--) | Hauteur de la barre courte du code-barres AustralianPost. | +| [getClass()](#getClass--) | | +| [getEncodingTable()](#getEncodingTable--) | Type d'interprétation pour les informations client d'AustralianPost, par défaut à CustomerInformationInterpretingType.Other\" | +| [getShortBarHeight()](#getShortBarHeight--) | Hauteur de la barre courte du code-barres AustralianPost. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAustralianPostEncodingTable(CustomerInformationInterpretingType value)](#setAustralianPostEncodingTable-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-) | Type d'interprétation pour les informations client d'AustralianPost, par défaut à CustomerInformationInterpretingType.Other\" | +| [setAustralianPostShortBarHeight(Unit value)](#setAustralianPostShortBarHeight-com.aspose.barcode.generation.Unit-) | Hauteur de la barre courte du code-barres AustralianPost. | +| [setEncodingTable(CustomerInformationInterpretingType value)](#setEncodingTable-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-) | Type d'interprétation pour les informations client d'AustralianPost, par défaut à CustomerInformationInterpretingType.Other\" | +| [setShortBarHeight(Unit value)](#setShortBarHeight-com.aspose.barcode.generation.Unit-) | Hauteur de la barre courte du code-barres AustralianPost. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [AustralianPostParameters](../../com.aspose.barcode.generation/australianpostparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAustralianPostEncodingTable() {#getAustralianPostEncodingTable--} +``` +public final CustomerInformationInterpretingType getAustralianPostEncodingTable() +``` + + +Type d'interprétation pour les informations client d'AustralianPost, par défaut à CustomerInformationInterpretingType.Other\" + +**Returns:** +[CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) +### getAustralianPostShortBarHeight() {#getAustralianPostShortBarHeight--} +``` +public final Unit getAustralianPostShortBarHeight() +``` + + +Hauteur de la barre courte du code-barres AustralianPost. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getEncodingTable() {#getEncodingTable--} +``` +public final CustomerInformationInterpretingType getEncodingTable() +``` + + +Type d'interprétation pour les informations client d'AustralianPost, par défaut à CustomerInformationInterpretingType.Other\" + +**Returns:** +[CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) +### getShortBarHeight() {#getShortBarHeight--} +``` +public final Unit getShortBarHeight() +``` + + +Hauteur de la barre courte du code-barres AustralianPost. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAustralianPostEncodingTable(CustomerInformationInterpretingType value) {#setAustralianPostEncodingTable-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-} +``` +public final void setAustralianPostEncodingTable(CustomerInformationInterpretingType value) +``` + + +Type d'interprétation pour les informations client d'AustralianPost, par défaut à CustomerInformationInterpretingType.Other\" + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) | | + +### setAustralianPostShortBarHeight(Unit value) {#setAustralianPostShortBarHeight-com.aspose.barcode.generation.Unit-} +``` +public final void setAustralianPostShortBarHeight(Unit value) +``` + + +Hauteur de la barre courte du code-barres AustralianPost. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### setEncodingTable(CustomerInformationInterpretingType value) {#setEncodingTable-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-} +``` +public final void setEncodingTable(CustomerInformationInterpretingType value) +``` + + +Type d'interprétation pour les informations client d'AustralianPost, par défaut à CustomerInformationInterpretingType.Other\" + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) | | + +### setShortBarHeight(Unit value) {#setShortBarHeight-com.aspose.barcode.generation.Unit-} +``` +public final void setShortBarHeight(Unit value) +``` + + +Hauteur de la barre courte du code-barres AustralianPost. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [AustralianPostParameters](../../com.aspose.barcode.generation/australianpostparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente ce [AustralianPostParameters](../../com.aspose.barcode.generation/australianpostparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/autosizemode/_index.md b/french/androidjava/com.aspose.barcode.generation/autosizemode/_index.md new file mode 100644 index 000000000..5a610d238 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/autosizemode/_index.md @@ -0,0 +1,270 @@ +--- +title: AutoSizeMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifie les différents types de modes de dimensionnement automatique. +type: docs +weight: 72 +url: /fr/androidjava/com.aspose.barcode.generation/autosizemode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum AutoSizeMode extends Enum +``` + +Spécifie les différents types de modes de dimensionnement automatique. +## Champs + +| Champ | Description | +| --- | --- | +| [INTERPOLATION](#INTERPOLATION) | Redimensionne le code‑barres à la taille spécifiée. | +| [NEAREST](#NEAREST) | Redimensionne le code‑barres à la taille la plus basse possible la plus proche, spécifiée par les propriétés ImageWidth et ImageHeight. | +| [NONE](#NONE) | Le redimensionnement automatique est désactivé. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### INTERPOLATION {#INTERPOLATION} +``` +public static final AutoSizeMode INTERPOLATION +``` + + +Redimensionne le code‑barres à la taille spécifiée. La taille peut être définie par les propriétés ImageWidth et ImageHeight. Le code‑barres généré peut être invalide (illisible) après le redimensionnement. + +### NEAREST {#NEAREST} +``` +public static final AutoSizeMode NEAREST +``` + + +Redimensionne le code-barres à la taille la plus basse possible la plus proche spécifiée par les propriétés ImageWidth et ImageHeight. Conserve le rapport d'aspect par défaut. + +### NONE {#NONE} +``` +public static final AutoSizeMode NONE +``` + + +Le redimensionnement automatique est désactivé. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static AutoSizeMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[AutoSizeMode](../../com.aspose.barcode.generation/autosizemode) +### values() {#values--} +``` +public static AutoSizeMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.AutoSizeMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/aztecencodemode/_index.md b/french/androidjava/com.aspose.barcode.generation/aztecencodemode/_index.md new file mode 100644 index 000000000..0c3fe3bd2 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/aztecencodemode/_index.md @@ -0,0 +1,342 @@ +--- +title: AztecEncodeMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode d'encodage pour les codes-barres Aztec. +type: docs +weight: 73 +url: /fr/androidjava/com.aspose.barcode.generation/aztecencodemode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum AztecEncodeMode extends Enum +``` + +Mode d'encodage pour les codes-barres Aztec. + +-------------------- + +> ``` +> String codetext = "\u72acRight\u72d7"; +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AZTEC, codetext); +> generator.getParameters().getBarcode().getAztec().setECIEncoding(ECIEncodings.UTF_8); +> generator.save("test.bmp"); +> byte[] encodedArr = { 0xFF, 0xFE, 0xFD, 0xFC, 0xFB, 0xFA, 0xF9 }; +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AZTEC); +> generator.setCodetext(encodedArr); +> generator.getParameters().getBarcode().getAztec().setAztecEncodeMode(AztecEncodeMode.BINARY); +> generator.save("test.bmp"); +> +> //Extended mode +> //create codetext +> AztecExtCodetextBuilder textBuilder = new AztecExtCodetextBuilder(); +> textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +> textBuilder.addECICodetext(ECIEncodings.UTF8, "\u72acRight\u72d7"); +> textBuilder.addECICodetext(ECIEncodings.UTF16BE, "\u72acPower\u72d7"); +> textBuilder.addPlainCodetext("Plain text"); +> //generate codetext +> String codetext = textBuilder.getExtendedCodetext(); +> //generate +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AZTEC, codetext); +> generator.getParameters().getBarcode().getAztec().setAztecEncodeMode(AztecEncodeMode.EXTENDED); +> generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); +> generator.save("test.bmp"); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | En mode Auto, le CodeText est encodé avec une compacité maximale des données. | +| [BINARY](#BINARY) | En mode Binaire, le CodeText est encodé avec une compacité maximale des données. | +| [BYTES](#BYTES) | Encoder le texte de code en octets simples. | +| [ECI](#ECI) | En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. | +| [EXTENDED](#EXTENDED) | | +| [EXTENDED_CODETEXT](#EXTENDED-CODETEXT) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final AztecEncodeMode AUTO +``` + + +En mode Auto, le CodeText est encodé avec une compacité maximale des données. Les caractères Unicode sont ré‑encodés dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. Si un caractère est trouvé qui n’est pas pris en charge par l’encodage ECI sélectionné, une exception est levée. + +### BINARY {#BINARY} +``` +public static final AztecEncodeMode BINARY +``` + + +En mode Binaire, le CodeText est encodé avec une compacité maximale des données. Si un caractère Unicode est trouvé, une exception est levée. + +### BYTES {#BYTES} +``` +public static final AztecEncodeMode BYTES +``` + + +Encoder le texte de code en octets simples. Si un caractère Unicode est détecté, le caractère sera encodé en deux octets, l’octet de poids faible en premier. + +### ECI {#ECI} +``` +public static final AztecEncodeMode ECI +``` + + +En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. Si un caractère est trouvé qui n’est pas pris en charge par l’encodage ECI sélectionné, une exception est levée. Veuillez noter que certains scanners anciens (pré‑2006) peuvent ne pas prendre en charge ce mode. + +### EXTENDED {#EXTENDED} +``` +public static final AztecEncodeMode EXTENDED +``` + + +Mode étendu qui prend en charge plusieurs modes ECI. + +Il est préférable d'utiliser AztecExtCodetextBuilder pour la génération de texte de code étendu. + +Utilisez la propriété Display2DText pour définir le texte visible en supprimant les caractères de gestion. + +Les identifiants ECI sont définis comme une barre oblique unique et un identifiant à six chiffres "\\000026" - identifiant ECI UTF‑8. + +Tous les caractères Unicode après l’identifiant ECI sont automatiquement encodés dans le jeu de caractères correct. + +### EXTENDED_CODETEXT {#EXTENDED-CODETEXT} +``` +public static final AztecEncodeMode EXTENDED_CODETEXT +``` + + +Mode étendu qui prend en charge plusieurs modes ECI. + +Il est préférable d'utiliser AztecExtCodetextBuilder pour la génération de texte de code étendu. + +Utilisez la propriété Display2DText pour définir le texte visible en supprimant les caractères de gestion. + +Les identifiants ECI sont définis comme une barre oblique unique et un identifiant à six chiffres "\\000026" - identifiant ECI UTF‑8. + +Tous les caractères Unicode après l’identifiant ECI sont automatiquement encodés dans le jeu de caractères correct. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static AztecEncodeMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +com.aspose.barcode.generation.AztecEncodeMode +### values() {#values--} +``` +public static AztecEncodeMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.AztecEncodeMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/aztecextcodetextbuilder/_index.md b/french/androidjava/com.aspose.barcode.generation/aztecextcodetextbuilder/_index.md new file mode 100644 index 000000000..24ab97fef --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/aztecextcodetextbuilder/_index.md @@ -0,0 +1,221 @@ +--- +title: AztecExtCodetextBuilder +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 11 +url: /fr/androidjava/com.aspose.barcode.generation/aztecextcodetextbuilder/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.generation.ExtCodetextBuilder](../../com.aspose.barcode.generation/extcodetextbuilder) +``` +public class AztecExtCodetextBuilder extends ExtCodetextBuilder +``` + +Générateur de codetext étendu pour les codes-barres Aztec pour le mode ExtendedCodetext de AztecEncodeMode. + +Utilisez la propriété TwoDDisplayText de BarcodeGenerator pour définir le texte visible en supprimant les caractères de gestion. + +-------------------- + +> ``` +> This sample shows how to use AztecExtCodetextBuilder in Extended Mode. +> +> //create codetext +> AztecExtCodetextBuilder textBuilder = new AztecExtCodetextBuilder(); +> textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +> textBuilder.addECICodetext(ECIEncodings.UTF8, "\u72acRight\u72d7"); +> textBuilder.addECICodetext(ECIEncodings.UTF16BE, "\u72acPower\u72d7"); +> textBuilder.addPlainCodetext("Plain text"); +> //generate codetext +> String codetext = textBuilder.getExtendedCodetext(); +> //generate +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AZTEC, codetext); +> generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); +> generator.save("test.bmp"); +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [AztecExtCodetextBuilder()](#AztecExtCodetextBuilder--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addECICodetext(int ECIEncoding, String codetext)](#addECICodetext-int-java.lang.String-) | Ajoute du codetext avec un identifiant de canal étendu. | +| [addPlainCodetext(String codetext)](#addPlainCodetext-java.lang.String-) | Ajoute du texte de code simple aux éléments de texte de code étendu | +| [clear()](#clear--) | Efface les éléments de texte de code étendu | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getExtendedCodetext()](#getExtendedCodetext--) | Génère du texte de code étendu à partir de la liste de texte de code étendu. | +| [hashCode()](#hashCode--) | | +| [isNeedToShieldItemFromPrevECI(int Index)](#isNeedToShieldItemFromPrevECI-int-) | Vérifie la nécessité de protéger l'élément précédent par "\\000000" | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AztecExtCodetextBuilder() {#AztecExtCodetextBuilder--} +``` +public AztecExtCodetextBuilder() +``` + + +### addECICodetext(int ECIEncoding, String codetext) {#addECICodetext-int-java.lang.String-} +``` +public void addECICodetext(int ECIEncoding, String codetext) +``` + + +Ajoute du codetext avec un identifiant de canal étendu. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| ECIEncoding | int | Identifiant de canal étendu | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu avec l'identifiant de canal étendu | + +### addPlainCodetext(String codetext) {#addPlainCodetext-java.lang.String-} +``` +public void addPlainCodetext(String codetext) +``` + + +Ajoute du texte de code simple aux éléments de texte de code étendu + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu | + +### clear() {#clear--} +``` +public void clear() +``` + + +Efface les éléments de texte de code étendu + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getExtendedCodetext() {#getExtendedCodetext--} +``` +public String getExtendedCodetext() +``` + + +Génère du texte de code étendu à partir de la liste de texte de code étendu. + +**Returns:** +java.lang.String - Texte de code étendu en tant que chaîne +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isNeedToShieldItemFromPrevECI(int Index) {#isNeedToShieldItemFromPrevECI-int-} +``` +public boolean isNeedToShieldItemFromPrevECI(int Index) +``` + + +Vérifie la nécessité de protéger l'élément précédent par "\\000000" + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| Indice | int | Indice dans m\_List | + +**Returns:** +booléen - Nécessité de protéger +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/aztecparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/aztecparameters/_index.md new file mode 100644 index 000000000..4aa4921a5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/aztecparameters/_index.md @@ -0,0 +1,449 @@ +--- +title: AztecParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres Aztec. +type: docs +weight: 12 +url: /fr/androidjava/com.aspose.barcode.generation/aztecparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class AztecParameters +``` + +Paramètres Aztec. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio()](#getAspectRatio--) | Ratio hauteur/largeur du module du code-barres 2D. | +| [getAztecEncodeMode()](#getAztecEncodeMode--) | Obtient un mode d’encodage Aztec. | +| [getAztecErrorLevel()](#getAztecErrorLevel--) | Niveau de correction d’erreurs des types de code-barres Aztec. | +| [getAztecSymbolMode()](#getAztecSymbolMode--) | Obtient un mode de symbole Aztec. | +| [getClass()](#getClass--) | | +| [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Obtient un mode d’encodage Aztec. | +| [getErrorLevel()](#getErrorLevel--) | Niveau de correction d’erreurs des types de code-barres Aztec. | +| [getLayersCount()](#getLayersCount--) | Obtient le nombre de couches du symbole Aztec. | +| [getStructuredAppendBarcodeId()](#getStructuredAppendBarcodeId--) | Identifiant du code-barres pour le mode Structured Append du code-barres Aztec. | +| [getStructuredAppendBarcodesCount()](#getStructuredAppendBarcodesCount--) | Nombre de codes-barres pour le mode Structured Append du code-barres Aztec. | +| [getStructuredAppendFileId()](#getStructuredAppendFileId--) | Identifiant de fichier pour le mode Structured Append du code-barres Aztec (champ optionnel). | +| [getSymbolMode()](#getSymbolMode--) | Obtient un mode de symbole Aztec. | +| [hashCode()](#hashCode--) | | +| [isReaderInitialization()](#isReaderInitialization--) | Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAspectRatio(float value)](#setAspectRatio-float-) | Ratio hauteur/largeur du module du code-barres 2D. | +| [setAztecEncodeMode(AztecEncodeMode value)](#setAztecEncodeMode-com.aspose.barcode.generation.AztecEncodeMode-) | Définit un mode d'encodage Aztec. | +| [setAztecErrorLevel(int value)](#setAztecErrorLevel-int-) | Niveau de correction d’erreurs des types de code-barres Aztec. | +| [setAztecSymbolMode(AztecSymbolMode value)](#setAztecSymbolMode-com.aspose.barcode.generation.AztecSymbolMode-) | Définit un mode de symbole Aztec. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Définit l'encodage ECI. | +| [setEncodeMode(AztecEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.AztecEncodeMode-) | Définit un mode d'encodage Aztec. | +| [setErrorLevel(int value)](#setErrorLevel-int-) | Niveau de correction d’erreurs des types de code-barres Aztec. | +| [setLayersCount(int value)](#setLayersCount-int-) | Définit le nombre de couches du symbole Aztec. | +| [setReaderInitialization(boolean value)](#setReaderInitialization-boolean-) | Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. | +| [setStructuredAppendBarcodeId(int value)](#setStructuredAppendBarcodeId-int-) | Identifiant du code-barres pour le mode Structured Append du code-barres Aztec. | +| [setStructuredAppendBarcodesCount(int value)](#setStructuredAppendBarcodesCount-int-) | Nombre de codes-barres pour le mode Structured Append du code-barres Aztec. | +| [setStructuredAppendFileId(String value)](#setStructuredAppendFileId-java.lang.String-) | Identifiant de fichier pour le mode Structured Append du code-barres Aztec (champ optionnel). | +| [setSymbolMode(AztecSymbolMode value)](#setSymbolMode-com.aspose.barcode.generation.AztecSymbolMode-) | Définit un mode de symbole Aztec. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible de cet [AztecParameters](../../com.aspose.barcode.generation/aztecparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAspectRatio() {#getAspectRatio--} +``` +public final float getAspectRatio() +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Returns:** +float +### getAztecEncodeMode() {#getAztecEncodeMode--} +``` +public final AztecEncodeMode getAztecEncodeMode() +``` + + +Obtient un mode d'encodage Aztec. Valeur par défaut : Auto. + +**Returns:** +com.aspose.barcode.generation.AztecEncodeMode - un mode d'encodage Aztec. +### getAztecErrorLevel() {#getAztecErrorLevel--} +``` +public final int getAztecErrorLevel() +``` + + +Niveau de correction d'erreurs des types de code-barres Aztec. La valeur doit être comprise entre 5 et 95. + +**Returns:** +int +### getAztecSymbolMode() {#getAztecSymbolMode--} +``` +public final AztecSymbolMode getAztecSymbolMode() +``` + + +Obtient un mode de symbole Aztec. Valeur par défaut : AztecSymbolMode.Auto. + +**Returns:** +[AztecSymbolMode](../../com.aspose.barcode.generation/aztecsymbolmode) - a Aztec Symbol mode. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Obtient l'encodage ECI. Utilisé lorsque AztecEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Returns:** +int - encodage ECI. +### getEncodeMode() {#getEncodeMode--} +``` +public final AztecEncodeMode getEncodeMode() +``` + + +Obtient un mode d'encodage Aztec. Valeur par défaut : Auto. + +**Returns:** +com.aspose.barcode.generation.AztecEncodeMode - un mode d'encodage Aztec. +### getErrorLevel() {#getErrorLevel--} +``` +public final int getErrorLevel() +``` + + +Niveau de correction d'erreurs des types de code-barres Aztec. La valeur doit être comprise entre 5 et 95. + +**Returns:** +int +### getLayersCount() {#getLayersCount--} +``` +public final int getLayersCount() +``` + + +Obtient le nombre de couches du symbole Aztec. Le nombre de couches doit être compris entre 1 et 3 pour le mode Compact et entre 1 et 32 pour le mode Full Range. Valeur par défaut : 0 (auto). + +**Returns:** +int - nombre de couches du symbole Aztec. +### getStructuredAppendBarcodeId() {#getStructuredAppendBarcodeId--} +``` +public final int getStructuredAppendBarcodeId() +``` + + +Identifiant du code-barres pour le mode Structured Append du code-barres Aztec. L'identifiant du code-barres doit être compris entre 1 et le nombre de codes-barres. Valeur par défaut : 0 + +**Returns:** +int +### getStructuredAppendBarcodesCount() {#getStructuredAppendBarcodesCount--} +``` +public final int getStructuredAppendBarcodesCount() +``` + + +Nombre de codes-barres pour le mode Structured Append du code-barres Aztec. Le nombre de codes-barres doit être compris entre 1 et 26. Valeur par défaut : 0 + +**Returns:** +int +### getStructuredAppendFileId() {#getStructuredAppendFileId--} +``` +public final String getStructuredAppendFileId() +``` + + +Identifiant de fichier pour le mode Structured Append du code-barres Aztec (champ optionnel). L'identifiant de fichier ne doit pas contenir d'espaces. Valeur par défaut : chaîne vide + +**Returns:** +java.lang.String +### getSymbolMode() {#getSymbolMode--} +``` +public final AztecSymbolMode getSymbolMode() +``` + + +Obtient un mode de symbole Aztec. Valeur par défaut : AztecSymbolMode.Auto. + +**Returns:** +[AztecSymbolMode](../../com.aspose.barcode.generation/aztecsymbolmode) - a Aztec Symbol mode. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isReaderInitialization() {#isReaderInitialization--} +``` +public final boolean isReaderInitialization() +``` + + +Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAspectRatio(float value) {#setAspectRatio-float-} +``` +public final void setAspectRatio(float value) +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setAztecEncodeMode(AztecEncodeMode value) {#setAztecEncodeMode-com.aspose.barcode.generation.AztecEncodeMode-} +``` +public final void setAztecEncodeMode(AztecEncodeMode value) +``` + + +Définit un mode d'encodage Aztec. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | com.aspose.barcode.generation.AztecEncodeMode | un mode d'encodage Aztec. | + +### setAztecErrorLevel(int value) {#setAztecErrorLevel-int-} +``` +public final void setAztecErrorLevel(int value) +``` + + +Niveau de correction d'erreurs des types de code-barres Aztec. La valeur doit être comprise entre 5 et 95. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setAztecSymbolMode(AztecSymbolMode value) {#setAztecSymbolMode-com.aspose.barcode.generation.AztecSymbolMode-} +``` +public final void setAztecSymbolMode(AztecSymbolMode value) +``` + + +Définit un mode de symbole Aztec. Valeur par défaut : AztecSymbolMode.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [AztecSymbolMode](../../com.aspose.barcode.generation/aztecsymbolmode) | un mode de symbole Aztec. | + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Définit l'encodage ECI. Utilisé lorsque AztecEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Encodage ECI. | + +### setEncodeMode(AztecEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.AztecEncodeMode-} +``` +public final void setEncodeMode(AztecEncodeMode value) +``` + + +Définit un mode d'encodage Aztec. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | com.aspose.barcode.generation.AztecEncodeMode | un mode d'encodage Aztec. | + +### setErrorLevel(int value) {#setErrorLevel-int-} +``` +public final void setErrorLevel(int value) +``` + + +Niveau de correction d'erreurs des types de code-barres Aztec. La valeur doit être comprise entre 5 et 95. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setLayersCount(int value) {#setLayersCount-int-} +``` +public final void setLayersCount(int value) +``` + + +Définit le nombre de couches du symbole Aztec. Le nombre de couches doit être compris entre 1 et 3 pour le mode Compact et entre 1 et 32 pour le mode Full Range. Valeur par défaut : 0 (auto). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | nombre de couches du symbole Aztec. | + +### setReaderInitialization(boolean value) {#setReaderInitialization-boolean-} +``` +public final void setReaderInitialization(boolean value) +``` + + +Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setStructuredAppendBarcodeId(int value) {#setStructuredAppendBarcodeId-int-} +``` +public final void setStructuredAppendBarcodeId(int value) +``` + + +Identifiant du code-barres pour le mode Structured Append du code-barres Aztec. L'identifiant du code-barres doit être compris entre 1 et le nombre de codes-barres. Valeur par défaut : 0 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setStructuredAppendBarcodesCount(int value) {#setStructuredAppendBarcodesCount-int-} +``` +public final void setStructuredAppendBarcodesCount(int value) +``` + + +Nombre de codes-barres pour le mode Structured Append du code-barres Aztec. Le nombre de codes-barres doit être compris entre 1 et 26. Valeur par défaut : 0 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setStructuredAppendFileId(String value) {#setStructuredAppendFileId-java.lang.String-} +``` +public final void setStructuredAppendFileId(String value) +``` + + +Identifiant de fichier pour le mode Structured Append du code-barres Aztec (champ optionnel). L'identifiant de fichier ne doit pas contenir d'espaces. Valeur par défaut : chaîne vide + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setSymbolMode(AztecSymbolMode value) {#setSymbolMode-com.aspose.barcode.generation.AztecSymbolMode-} +``` +public final void setSymbolMode(AztecSymbolMode value) +``` + + +Définit un mode de symbole Aztec. Valeur par défaut : AztecSymbolMode.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [AztecSymbolMode](../../com.aspose.barcode.generation/aztecsymbolmode) | un mode de symbole Aztec. | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible de cet [AztecParameters](../../com.aspose.barcode.generation/aztecparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente ce [AztecParameters](../../com.aspose.barcode.generation/aztecparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/aztecsymbolmode/_index.md b/french/androidjava/com.aspose.barcode.generation/aztecsymbolmode/_index.md new file mode 100644 index 000000000..5147df32a --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/aztecsymbolmode/_index.md @@ -0,0 +1,288 @@ +--- +title: AztecSymbolMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifie le mode du symbole Aztec. +type: docs +weight: 74 +url: /fr/androidjava/com.aspose.barcode.generation/aztecsymbolmode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum AztecSymbolMode extends Enum +``` + +Spécifie le mode du symbole Aztec. + +-------------------- + +> ``` +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AZTEC); +> generator.setCodeText("125"); +> generator.getParameters().getBarcode().getAztec().setAztecSymbolMode(AztecSymbolMode.RUNE); +> generator.save("test.png"); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Spécifie de sélectionner automatiquement le meilleur symbole (COMPACT ou FULL-range) pour Aztec. | +| [COMPACT](#COMPACT) | Spécifie le symbole COMPACT pour Aztec. | +| [FULL_RANGE](#FULL-RANGE) | Spécifie le symbole FULL-range pour Aztec. | +| [RUNE](#RUNE) | Spécifie le symbole RUNE pour Aztec. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final AztecSymbolMode AUTO +``` + + +Spécifie de sélectionner automatiquement le meilleur symbole (COMPACT ou FULL-range) pour Aztec. C’est la valeur par défaut. + +### COMPACT {#COMPACT} +``` +public static final AztecSymbolMode COMPACT +``` + + +Spécifie le symbole COMPACT pour Aztec. Le symbole COMPACT d’Aztec ne permet que 1, 2, 3 ou 4 couches. + +### FULL_RANGE {#FULL-RANGE} +``` +public static final AztecSymbolMode FULL_RANGE +``` + + +Spécifie le symbole FULL-range pour Aztec. Le symbole FULL-range d’Aztec permet de 1 à 32 couches. + +### RUNE {#RUNE} +``` +public static final AztecSymbolMode RUNE +``` + + +Spécifie le symbole RUNE pour Aztec. Les runes Aztec sont une série de petites marques lisibles par machine mais distinctes. Elles ne permettent que des valeurs numériques de 0 à 255. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static AztecSymbolMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[AztecSymbolMode](../../com.aspose.barcode.generation/aztecsymbolmode) +### values() {#values--} +``` +public static AztecSymbolMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.AztecSymbolMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/barcodeclassifications/_index.md b/french/androidjava/com.aspose.barcode.generation/barcodeclassifications/_index.md new file mode 100644 index 000000000..12c0ea9a7 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/barcodeclassifications/_index.md @@ -0,0 +1,297 @@ +--- +title: BarcodeClassifications +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classification EncodeTypes +type: docs +weight: 76 +url: /fr/androidjava/com.aspose.barcode.generation/barcodeclassifications/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum BarcodeClassifications extends Enum +``` + +Classification EncodeTypes +## Champs + +| Champ | Description | +| --- | --- | +| [COUPON](#COUPON) | Spécifie le code-barres COUPON | +| [DATABAR](#DATABAR) | Spécifie le code-barres DataBar | +| [NONE](#NONE) | Classification non spécifiée | +| [POSTAL](#POSTAL) | Spécifie le code-barres POSTAL | +| [TYPE_1D](#TYPE-1D) | Spécifie le code-barres 1D | +| [TYPE_2D](#TYPE-2D) | Spécifie le code-barres 2D | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### COUPON {#COUPON} +``` +public static final BarcodeClassifications COUPON +``` + + +Spécifie le code-barres COUPON + +### DATABAR {#DATABAR} +``` +public static final BarcodeClassifications DATABAR +``` + + +Spécifie le code-barres DataBar + +### NONE {#NONE} +``` +public static final BarcodeClassifications NONE +``` + + +Classification non spécifiée + +### POSTAL {#POSTAL} +``` +public static final BarcodeClassifications POSTAL +``` + + +Spécifie le code-barres POSTAL + +### TYPE_1D {#TYPE-1D} +``` +public static final BarcodeClassifications TYPE_1D +``` + + +Spécifie le code-barres 1D + +### TYPE_2D {#TYPE-2D} +``` +public static final BarcodeClassifications TYPE_2D +``` + + +Spécifie le code-barres 2D + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static BarcodeClassifications valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[BarcodeClassifications](../../com.aspose.barcode.generation/barcodeclassifications) +### values() {#values--} +``` +public static BarcodeClassifications[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.BarcodeClassifications[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/barcodegenerator/_index.md b/french/androidjava/com.aspose.barcode.generation/barcodegenerator/_index.md new file mode 100644 index 000000000..cc6c6d2af --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/barcodegenerator/_index.md @@ -0,0 +1,486 @@ +--- +title: BarcodeGenerator +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: BarcodeGenerator pour la génération d'images de codes-barres côté serveur. +type: docs +weight: 13 +url: /fr/androidjava/com.aspose.barcode.generation/barcodegenerator/ +--- +**Inheritance:** +java.lang.Object +``` +public final class BarcodeGenerator +``` + +BarcodeGenerator pour la génération d'images de codes-barres côté serveur. + +symbologies prises en charge : 1D: Codabar, Code11, Code128, Code39, Code39FullASCII Code93Standard, Code93Extended, EAN13, EAN8, Interleaved2of5, MSI, Standard2of5, UPCA, UPCE, ISBN, GS1Code128, Postnet, Planet EAN14, SCC14, SSCC18, ITF14, SingaporePost ... 2D: Aztec, DataMatrix, PDf417, QR code ... + +-------------------- + +> ``` +> This sample shows how to create and save a barcode image. +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.CODE_128); +> generator.setCodeText("123ABC"); +> generator.save("code128.png"); +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarcodeGenerator(BaseEncodeType type)](#BarcodeGenerator-com.aspose.barcode.generation.BaseEncodeType-) | Crée une instance de BarcodeGenerator. | +| [BarcodeGenerator(BaseEncodeType type, String codeText)](#BarcodeGenerator-com.aspose.barcode.generation.BaseEncodeType-java.lang.String-) | Crée une instance de BarcodeGenerator. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [dispose()](#dispose--) | Nettoie toutes les ressources utilisées. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [exportToXml(OutputStream xml)](#exportToXml-java.io.OutputStream-) | Exporte les propriétés BarCode vers le flux xml spécifié | +| [exportToXml(String xmlFile)](#exportToXml-java.lang.String-) | Exporte les propriétés BarCode vers le fichier xml spécifié | +| [generateBarCodeImage()](#generateBarCodeImage--) | Génère l'image du code-barres avec les paramètres actuels. | +| [getBarcodeType()](#getBarcodeType--) | Type de symbologie du code-barres. | +| [getClass()](#getClass--) | | +| [getCodeText()](#getCodeText--) | Texte à encoder. | +| [getParameters()](#getParameters--) | Paramètres de génération. | +| [hashCode()](#hashCode--) | | +| [importFromXml(InputStream xml)](#importFromXml-java.io.InputStream-) | Importe les propriétés BarCode depuis le flux XML spécifié et crée une instance de BarcodeGenerator. | +| [importFromXml(String xmlFile)](#importFromXml-java.lang.String-) | Importe les propriétés BarCode depuis le fichier XML spécifié et crée une instance de BarcodeGenerator. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [save(OutputStream stream, BarCodeImageFormat format)](#save-java.io.OutputStream-com.aspose.barcode.generation.BarCodeImageFormat-) | Enregistre BarCodeImage dans le flux dans un format spécifique. | +| [save(String filename)](#save-java.lang.String-) | Enregistre l'image du code-barres dans un fichier spécifique. | +| [save(String filename, BarCodeImageFormat format)](#save-java.lang.String-com.aspose.barcode.generation.BarCodeImageFormat-) | Enregistre l'image du code-barres dans un fichier spécifique dans un format spécifique. | +| [setBarcodeType(BaseEncodeType value)](#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-) | Type de symbologie du code-barres. | +| [setCodeText(byte[] codeBytes)](#setCodeText-byte---) | Définit le texte du code comme une séquence d'octets. | +| [setCodeText(String value)](#setCodeText-java.lang.String-) | Texte à encoder. | +| [setCodeText(String codeText, Charset encoding)](#setCodeText-java.lang.String-java.nio.charset.Charset-) | | +| [setCodeText(String codeText, Charset encoding, boolean insertBOM)](#setCodeText-java.lang.String-java.nio.charset.Charset-boolean-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarcodeGenerator(BaseEncodeType type) {#BarcodeGenerator-com.aspose.barcode.generation.BaseEncodeType-} +``` +public BarcodeGenerator(BaseEncodeType type) +``` + + +Crée une instance de BarcodeGenerator. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| type | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | Type de symbologie du code-barres. Utilisez la classe EncodeTypes pour configurer une symbologie. | + +### BarcodeGenerator(BaseEncodeType type, String codeText) {#BarcodeGenerator-com.aspose.barcode.generation.BaseEncodeType-java.lang.String-} +``` +public BarcodeGenerator(BaseEncodeType type, String codeText) +``` + + +Crée une instance de BarcodeGenerator. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| type | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | Type de symbologie du code-barres. Utilisez la classe EncodeTypes pour configurer une symbologie. | +| codeText | java.lang.String | Texte à encoder. | + +### dispose() {#dispose--} +``` +public void dispose() +``` + + +Nettoie toutes les ressources utilisées. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### exportToXml(OutputStream xml) {#exportToXml-java.io.OutputStream-} +``` +public boolean exportToXml(OutputStream xml) +``` + + +Exporte les propriétés BarCode vers le flux xml spécifié + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| xml | java.io.OutputStream | Le xml-stream | + +**Returns:** +booléen - Indique si l'exportation s'est terminée avec succès ou non. Retourne **True** en cas de succès ; **False** sinon +### exportToXml(String xmlFile) {#exportToXml-java.lang.String-} +``` +public boolean exportToXml(String xmlFile) +``` + + +Exporte les propriétés BarCode vers le fichier xml spécifié + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| xmlFile | java.lang.String | Le nom du fichier | + +**Returns:** +booléen - Indique si l'exportation s'est terminée avec succès ou non. + +Renvoie **True** en cas de succès ; **False** sinon +### generateBarCodeImage() {#generateBarCodeImage--} +``` +public Bitmap generateBarCodeImage() +``` + + +Génère l'image du code-barres avec les paramètres actuels. + +-------------------- + +> ``` +> This sample shows how to create and save a barcode image. +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.CODE_128); +> File outputFile = new File("test.png"); +> OutputStream os = new FileOutputStream(outputFile); +> Bitmap generatedBitmap = generator.generateBarCodeImage(); +> generatedBitmap.compress(Bitmap.CompressFormat.PNG, 100, os); +> os.flush(); +> os.close(); +> ``` + +**Returns:** +android.graphics.Bitmap - Image du code-barres. Voir Bitmap . +### getBarcodeType() {#getBarcodeType--} +``` +public BaseEncodeType getBarcodeType() +``` + + +Type de symbologie du code-barres. + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCodeText() {#getCodeText--} +``` +public String getCodeText() +``` + + +Texte à encoder. + +**Returns:** +java.lang.String +### getParameters() {#getParameters--} +``` +public BaseGenerationParameters getParameters() +``` + + +Paramètres de génération. + +**Returns:** +[BaseGenerationParameters](../../com.aspose.barcode.generation/basegenerationparameters) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### importFromXml(InputStream xml) {#importFromXml-java.io.InputStream-} +``` +public static BarcodeGenerator importFromXml(InputStream xml) +``` + + +Importe les propriétés BarCode depuis le flux XML spécifié et crée une instance de BarcodeGenerator. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| xml | java.io.InputStream | Le xml-stream | + +**Returns:** +[BarcodeGenerator](../../com.aspose.barcode.generation/barcodegenerator) - BarcodeGenerator instance +### importFromXml(String xmlFile) {#importFromXml-java.lang.String-} +``` +public static BarcodeGenerator importFromXml(String xmlFile) +``` + + +Importe les propriétés BarCode depuis le fichier XML spécifié et crée une instance de BarcodeGenerator. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| xmlFile | java.lang.String | Le nom du fichier | + +**Returns:** +[BarcodeGenerator](../../com.aspose.barcode.generation/barcodegenerator) - BarcodeGenerator instance +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### save(OutputStream stream, BarCodeImageFormat format) {#save-java.io.OutputStream-com.aspose.barcode.generation.BarCodeImageFormat-} +``` +public void save(OutputStream stream, BarCodeImageFormat format) +``` + + +Enregistre BarCodeImage dans le flux dans un format spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | | +| format | [BarCodeImageFormat](../../com.aspose.barcode.generation/barcodeimageformat) | | + +### save(String filename) {#save-java.lang.String-} +``` +public void save(String filename) +``` + + +Enregistre l'image du code-barres dans un fichier spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom de fichier | java.lang.String | Chemin où enregistrer. | + +### save(String filename, BarCodeImageFormat format) {#save-java.lang.String-com.aspose.barcode.generation.BarCodeImageFormat-} +``` +public void save(String filename, BarCodeImageFormat format) +``` + + +Enregistre l'image du code-barres dans un fichier spécifique dans un format spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom de fichier | java.lang.String | Chemin où enregistrer. | +| format | [BarCodeImageFormat](../../com.aspose.barcode.generation/barcodeimageformat) | Spécifie le format de fichier de l'image de sortie. | + +### setBarcodeType(BaseEncodeType value) {#setBarcodeType-com.aspose.barcode.generation.BaseEncodeType-} +``` +public void setBarcodeType(BaseEncodeType value) +``` + + +Type de symbologie du code-barres. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | | + +### setCodeText(byte[] codeBytes) {#setCodeText-byte---} +``` +public void setCodeText(byte[] codeBytes) +``` + + +Définit le texte du code comme une séquence d'octets. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codeBytes | byte[] | Octets du codetext | + +### setCodeText(String value) {#setCodeText-java.lang.String-} +``` +public void setCodeText(String value) +``` + + +Texte à encoder. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setCodeText(String codeText, Charset encoding) {#setCodeText-java.lang.String-java.nio.charset.Charset-} +``` +public void setCodeText(String codeText, Charset encoding) +``` + + +Encode le texte Unicode **codeText** en une séquence d'octets en utilisant l'**encoding** spécifié. UTF-8 est l'encodage le plus couramment utilisé. Si l'encodage le prend en charge, la fonction insère automatiquement un [byte order mark (BOM)][byte order mark _BOM]. + +Cette fonction est destinée à être utilisée uniquement avec les codes-barres 2D (p. ex., Aztec, QR, DataMatrix, PDF417, MaxiCode, DotCode, HanXin, RectMicroQR, etc.). Elle permet l'encodage manuel du texte Unicode en utilisant des encodages nationaux ou spéciaux ; cependant, cette méthode est considérée comme obsolète dans les applications modernes. Pour les cas d'utilisation modernes, l'encodage [ECI][] est recommandé pour les données Unicode. + +L'utilisation de cette fonction avec des codes-barres 1D, des codes-barres conformes à GS1 (y compris 2D), ou des codes-barres HIBC (y compris 2D) n'est pas prise en charge par les normes de codes-barres correspondantes et peut entraîner des résultats imprévisibles. + +-------------------- + +> ``` +> This example shows how to use ``` +> SetCodeText +> ``` setting Unicode-encoded text for 2D barcodes using different encodings: +> +> //Encode QR Code text using UTF-8 with BOM +> BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.QR); +> gen.setCodeText("\u8eca\u7a2e\u540d", StandardCharsets.UTF_8; +> gen.save("barcode.png", BarCodeImageFormat.PNG); +> +> BarCodeReader reader = new BarCodeReader("barcode.png", DecodeType.QR); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> +> //Encode DataMatrix text using Shift-JIS (Japanese encoding) +> BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.DATA_MATRIX); +> gen.setCodeText("\u8eca\u7a2e\u540d", Charset.forName("932")); +> gen.save("barcode.png", BarCodeImageFormat.PNG); +> +> BarCodeReader reader = new BarCodeReader("barcode.png", DecodeType.DATA_MATRIX); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText(Charset.forName("932"))); +> ``` + + +[byte order mark _BOM]: https://en.wikipedia.org/wiki/Byte_order_mark#Byte-order_marks_by_encoding +[ECI]: https://en.wikipedia.org/wiki/Extended_Channel_Interpretation + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codeText | java.lang.String | Chaîne CodeText | +| encodage | java.nio.charset.Charset | Encodage appliqué | + +### setCodeText(String codeText, Charset encoding, boolean insertBOM) {#setCodeText-java.lang.String-java.nio.charset.Charset-boolean-} +``` +public void setCodeText(String codeText, Charset encoding, boolean insertBOM) +``` + + +Encode le texte Unicode **codeText** en une séquence d'octets en utilisant l'**encoding** spécifié. UTF-8 est l'encodage le plus couramment utilisé. Si l'encodage le prend en charge et que **insertBOM** est défini sur true, la fonction inclut un [byte order mark (BOM)][byte order mark _BOM]. + +Cette fonction est destinée à être utilisée uniquement avec les codes-barres 2D (p. ex., Aztec, QR, DataMatrix, PDF417, MaxiCode, DotCode, HanXin, RectMicroQR, etc.). Elle permet l'encodage manuel du texte Unicode en utilisant des encodages nationaux ou spéciaux ; cependant, cette méthode est considérée comme obsolète dans les applications modernes. Pour les cas d'utilisation modernes, l'encodage [ECI][] est recommandé pour les données Unicode. + +L'utilisation de cette fonction avec des codes-barres 1D, des codes-barres conformes à GS1 (y compris 2D), ou des codes-barres HIBC (y compris 2D) n'est pas prise en charge par les normes de codes-barres correspondantes et peut entraîner des résultats imprévisibles. + +-------------------- + +> ``` +> This example shows how to use ``` +> SetCodeText +> ``` with or without a BOM for 2D barcodes. +> +> //Encode codetext using UTF-8 with BOM +> BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.QR); +> gen.setCodeText("\u8eca\u7a2e\u540d", StandardCharsets.UTF_8, true); +> gen.save("barcode.png", BarCodeImageFormat.PNG); +> +> BarCodeReader reader = new BarCodeReader("barcode.png", DecodeType.QR); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> +> //Encode codetext using UTF-8 without BOM +> BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.QR); +> gen.setCodeText("\u8eca\u7a2e\u540d", StandardCharsets.UTF_8, false); +> gen.save("barcode.png", BarCodeImageFormat.PNG); +> BarCodeReader reader = new BarCodeReader("barcode.png", DecodeType.QR); +> for(BarCodeResult result : reader.readBarCodes()) +> System.out.println("BarCode CodeText: " + result.getCodeText()); +> ``` + + +[byte order mark _BOM]: https://en.wikipedia.org/wiki/Byte_order_mark#Byte-order_marks_by_encoding +[ECI]: https://en.wikipedia.org/wiki/Extended_Channel_Interpretation + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codeText | java.lang.String | Chaîne CodeText | +| encodage | java.nio.charset.Charset | Encodage appliqué | +| insertBOM | boolean | Indique s'il faut insérer un marqueur d'ordre d'octet (BOM) lorsque l'encodage spécifié le prend en charge (p. ex., UTF-8, UTF-16, UTF-32). Si défini sur true, le BOM est ajouté ; si false, le BOM est omis même si l'encodage en utilise normalement un. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/barcodeimageformat/_index.md b/french/androidjava/com.aspose.barcode.generation/barcodeimageformat/_index.md new file mode 100644 index 000000000..51b21b75c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/barcodeimageformat/_index.md @@ -0,0 +1,322 @@ +--- +title: BarCodeImageFormat +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifie le format de fichier de l'image. +type: docs +weight: 75 +url: /fr/androidjava/com.aspose.barcode.generation/barcodeimageformat/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum BarCodeImageFormat extends Enum +``` + +Spécifie le format de fichier de l'image. +## Champs + +| Champ | Description | +| --- | --- | +| [BMP](#BMP) | Spécifie le format d’image bitmap (BMP). | +| [EMF](#EMF) | Spécifie le format d’image Enhanced Metafile (EMF). | +| [GIF](#GIF) | Spécifie le format d’image Graphics Interchange Format (GIF). | +| [JPEG](#JPEG) | Spécifie le format d’image Joint Photographic Experts Group (JPEG). | +| [PDF](#PDF) | Spécifie le format d’image Portable Document Format (PDF). | +| [PNG](#PNG) | Spécifie le format d’image W3C Portable Network Graphics (PNG). | +| [WEBP](#WEBP) | Spécifie le format d’image Enhanced Metafile (EMF). | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toCompressFormat(BarCodeImageFormat format)](#toCompressFormat-com.aspose.barcode.generation.BarCodeImageFormat-) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BMP {#BMP} +``` +public static final BarCodeImageFormat BMP +``` + + +Spécifie le format d’image bitmap (BMP). + +### EMF {#EMF} +``` +public static final BarCodeImageFormat EMF +``` + + +Spécifie le format d’image Enhanced Metafile (EMF). (Pris en charge uniquement sur la plateforme Windows, sur les plateformes \*nix il est enregistré en PNG) + +### GIF {#GIF} +``` +public static final BarCodeImageFormat GIF +``` + + +Spécifie le format d’image Graphics Interchange Format (GIF). + +### JPEG {#JPEG} +``` +public static final BarCodeImageFormat JPEG +``` + + +Spécifie le format d’image Joint Photographic Experts Group (JPEG). + +### PDF {#PDF} +``` +public static final BarCodeImageFormat PDF +``` + + +Spécifie le format d’image Portable Document Format (PDF). + +### PNG {#PNG} +``` +public static final BarCodeImageFormat PNG +``` + + +Spécifie le format d’image W3C Portable Network Graphics (PNG). + +### WEBP {#WEBP} +``` +public static final BarCodeImageFormat WEBP +``` + + +Spécifie le format d’image Enhanced Metafile (EMF). + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toCompressFormat(BarCodeImageFormat format) {#toCompressFormat-com.aspose.barcode.generation.BarCodeImageFormat-} +``` +public static Bitmap.CompressFormat toCompressFormat(BarCodeImageFormat format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| format | [BarCodeImageFormat](../../com.aspose.barcode.generation/barcodeimageformat) | | + +**Returns:** +android.graphics.Bitmap.CompressFormat +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static BarCodeImageFormat valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[BarCodeImageFormat](../../com.aspose.barcode.generation/barcodeimageformat) +### values() {#values--} +``` +public static BarCodeImageFormat[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.BarCodeImageFormat[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/barcodeparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/barcodeparameters/_index.md new file mode 100644 index 000000000..eaf547bf7 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/barcodeparameters/_index.md @@ -0,0 +1,735 @@ +--- +title: BarcodeParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres de génération de code-barres. +type: docs +weight: 14 +url: /fr/androidjava/com.aspose.barcode.generation/barcodeparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class BarcodeParameters +``` + +Paramètres de génération de code-barres. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio()](#getAspectRatio--) | | +| [getAustralianPost()](#getAustralianPost--) | Paramètres du code-barres AustralianPost. | +| [getAztec()](#getAztec--) | Paramètres Aztec. | +| [getBarColor()](#getBarColor--) | Couleur des barres. | +| [getBarHeight()](#getBarHeight--) | Hauteur des barres des codes-barres 1D en valeur [Unit](../../com.aspose.barcode.generation/unit). | +| [getBarWidthReduction()](#getBarWidthReduction--) | Obtenez la valeur de réduction des barres utilisée pour compenser la diffusion de l’encre lors de l’impression. | +| [getBarcodeType()](#getBarcodeType--) | | +| [getChecksumAlwaysShow()](#getChecksumAlwaysShow--) | Toujours afficher le chiffre de contrôle dans le texte lisible par l'homme pour les codes-barres Code128 et GS1Code128. | +| [getClass()](#getClass--) | | +| [getCodabar()](#getCodabar--) | Paramètres Codabar. | +| [getCodablock()](#getCodablock--) | Paramètres Codablock. | +| [getCode128()](#getCode128--) | Paramètres Code128. | +| [getCode16K()](#getCode16K--) | Paramètres Code16K. | +| [getCodeText()](#getCodeText--) | | +| [getCodeTextParameters()](#getCodeTextParameters--) | Paramètres de texte de code. | +| [getComplexBarcode()](#getComplexBarcode--) | | +| [getCoupon()](#getCoupon--) | Paramètres de coupon. | +| [getDataBar()](#getDataBar--) | Paramètres Databar. | +| [getDataMatrix()](#getDataMatrix--) | Paramètres DataMatrix. | +| [getDotCode()](#getDotCode--) | Paramètres DotCode. | +| [getEnableEscape()](#getEnableEscape--) | Indique si le caractère "\\" est interprété comme un caractère d'échappement dans la propriété CodeText. | +| [getFilledBars()](#getFilledBars--) | Obtient une valeur indiquant si les barres sont remplies. | +| [getGS1CompositeBar()](#getGS1CompositeBar--) | Paramètres du GS1 Composite Bar. | +| [getHanXin()](#getHanXin--) | Paramètres HanXin. | +| [getITF()](#getITF--) | Paramètres ITF. | +| [getMaxiCode()](#getMaxiCode--) | Paramètres MaxiCode. | +| [getPadding()](#getPadding--) | Marges du code-barres. | +| [getPatchCode()](#getPatchCode--) | Paramètres PatchCode. | +| [getPdf417()](#getPdf417--) | Paramètres PDF417. | +| [getPostal()](#getPostal--) | Paramètres postaux. | +| [getQR()](#getQR--) | Paramètres QR, MicroQR et RectMicroQR. | +| [getSupplement()](#getSupplement--) | Paramètres de supplément. | +| [getThrowExceptionWhenCodeTextIncorrect()](#getThrowExceptionWhenCodeTextIncorrect--) | Uniquement pour les codes-barres 1D. | +| [getWideNarrowRatio()](#getWideNarrowRatio--) | Ratio des barres larges aux barres étroites. | +| [getXDimension()](#getXDimension--) | La dimension x est la plus petite largeur de l'unité des barres ou espaces du code-barres. | +| [hashCode()](#hashCode--) | | +| [isChecksumEnabled()](#isChecksumEnabled--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBarColor(int value)](#setBarColor-int-) | Couleur des barres. | +| [setBarHeight(Unit value)](#setBarHeight-com.aspose.barcode.generation.Unit-) | Hauteur des barres des codes-barres 1D en valeur [Unit](../../com.aspose.barcode.generation/unit). | +| [setBarWidthReduction(Unit value)](#setBarWidthReduction-com.aspose.barcode.generation.Unit-) | Définit la valeur de réduction des barres utilisée pour compenser la diffusion d'encre lors de l'impression. | +| [setChecksumAlwaysShow(boolean value)](#setChecksumAlwaysShow-boolean-) | Toujours afficher le chiffre de contrôle dans le texte lisible par l'homme pour les codes-barres Code128 et GS1Code128. | +| [setChecksumEnabled(EnableChecksum value)](#setChecksumEnabled-com.aspose.barcode.generation.EnableChecksum-) | | +| [setCodeText(String value)](#setCodeText-java.lang.String-) | | +| [setEnableEscape(boolean value)](#setEnableEscape-boolean-) | Indique si le caractère "\\" est interprété comme un caractère d'échappement dans la propriété CodeText. | +| [setFilledBars(boolean value)](#setFilledBars-boolean-) | Définit une valeur indiquant si les barres sont remplies. | +| [setGS1CompositeBar(GS1CompositeBarParameters value)](#setGS1CompositeBar-com.aspose.barcode.generation.GS1CompositeBarParameters-) | Paramètres du GS1 Composite Bar. | +| [setThrowExceptionWhenCodeTextIncorrect(boolean value)](#setThrowExceptionWhenCodeTextIncorrect-boolean-) | Uniquement pour les codes-barres 1D. | +| [setWideNarrowRatio(float value)](#setWideNarrowRatio-float-) | Ratio des barres larges aux barres étroites. | +| [setXDimension(Unit value)](#setXDimension-com.aspose.barcode.generation.Unit-) | La dimension x est la plus petite largeur de l'unité des barres ou espaces du code-barres. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAspectRatio() {#getAspectRatio--} +``` +public final float getAspectRatio() +``` + + + + +**Returns:** +float +### getAustralianPost() {#getAustralianPost--} +``` +public final AustralianPostParameters getAustralianPost() +``` + + +Paramètres du code-barres AustralianPost. + +**Returns:** +[AustralianPostParameters](../../com.aspose.barcode.generation/australianpostparameters) +### getAztec() {#getAztec--} +``` +public final AztecParameters getAztec() +``` + + +Paramètres Aztec. + +**Returns:** +[AztecParameters](../../com.aspose.barcode.generation/aztecparameters) +### getBarColor() {#getBarColor--} +``` +public final int getBarColor() +``` + + +Couleur des barres. Valeur par défaut : Color.Black. + +**Returns:** +int +### getBarHeight() {#getBarHeight--} +``` +public final Unit getBarHeight() +``` + + +Hauteur des barres des codes-barres 1D en valeur [Unit](../../com.aspose.barcode.generation/unit). Ignorée si la propriété BaseGenerationParameters.AutoSizeMode ([BaseGenerationParameters.getAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#getAutoSizeMode)/[BaseGenerationParameters.setAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#setAutoSizeMode)) est définie sur AutoSizeMode.Nearest ou AutoSizeMode.Interpolation. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getBarWidthReduction() {#getBarWidthReduction--} +``` +public final Unit getBarWidthReduction() +``` + + +Obtient la valeur de réduction des barres utilisée pour compenser la diffusion d'encre lors de l'impression. Valeur par défaut : 0 + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) - bars reduction value that is used to compensate ink spread while printing. +### getBarcodeType() {#getBarcodeType--} +``` +public final BaseEncodeType getBarcodeType() +``` + + + + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) +### getChecksumAlwaysShow() {#getChecksumAlwaysShow--} +``` +public final boolean getChecksumAlwaysShow() +``` + + +Toujours afficher le chiffre de contrôle dans le texte lisible par l'homme pour les codes-barres Code128 et GS1Code128. + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCodabar() {#getCodabar--} +``` +public final CodabarParameters getCodabar() +``` + + +Paramètres Codabar. + +**Returns:** +[CodabarParameters](../../com.aspose.barcode.generation/codabarparameters) +### getCodablock() {#getCodablock--} +``` +public final CodablockParameters getCodablock() +``` + + +Paramètres Codablock. + +**Returns:** +[CodablockParameters](../../com.aspose.barcode.generation/codablockparameters) +### getCode128() {#getCode128--} +``` +public final Code128Parameters getCode128() +``` + + +Paramètres Code128. + +**Returns:** +[Code128Parameters](../../com.aspose.barcode.generation/code128parameters) +### getCode16K() {#getCode16K--} +``` +public final Code16KParameters getCode16K() +``` + + +Paramètres Code16K. + +**Returns:** +[Code16KParameters](../../com.aspose.barcode.generation/code16kparameters) +### getCodeText() {#getCodeText--} +``` +public final String getCodeText() +``` + + + + +**Returns:** +java.lang.String +### getCodeTextParameters() {#getCodeTextParameters--} +``` +public final CodetextParameters getCodeTextParameters() +``` + + +Paramètres de texte de code. + +**Returns:** +[CodetextParameters](../../com.aspose.barcode.generation/codetextparameters) +### getComplexBarcode() {#getComplexBarcode--} +``` +public final ComplexBarcode getComplexBarcode() +``` + + + + +**Returns:** +[ComplexBarcode](../../com.aspose.barcode.generation/complexbarcode) +### getCoupon() {#getCoupon--} +``` +public final CouponParameters getCoupon() +``` + + +Paramètres du coupon. Utilisé pour UpcaGs1DatabarCoupon, UpcaGs1Code128Coupon. + +**Returns:** +[CouponParameters](../../com.aspose.barcode.generation/couponparameters) +### getDataBar() {#getDataBar--} +``` +public final DataBarParameters getDataBar() +``` + + +Paramètres Databar. + +**Returns:** +[DataBarParameters](../../com.aspose.barcode.generation/databarparameters) +### getDataMatrix() {#getDataMatrix--} +``` +public final DataMatrixParameters getDataMatrix() +``` + + +Paramètres DataMatrix. + +**Returns:** +[DataMatrixParameters](../../com.aspose.barcode.generation/datamatrixparameters) +### getDotCode() {#getDotCode--} +``` +public final DotCodeParameters getDotCode() +``` + + +Paramètres DotCode. + +**Returns:** +[DotCodeParameters](../../com.aspose.barcode.generation/dotcodeparameters) +### getEnableEscape() {#getEnableEscape--} +``` +public final boolean getEnableEscape() +``` + + +Indique si le caractère "\\" est interprété comme un caractère d'échappement dans la propriété CodeText. Utilisé uniquement pour Pdf417, DataMatrix, Code128. Si EnableEscape est vrai, "\\" sera interprété comme un caractère d'échappement spécial. Sinon, "\\" agit comme des caractères normaux. + +Aspose.BarCode prend en charge la saisie du code ASCII décimal et du mnémonique pour les caractères de contrôle ASCII. Par exemple, \\013 et \\\\CR représentent CR. + +**Returns:** +boolean +### getFilledBars() {#getFilledBars--} +``` +public final boolean getFilledBars() +``` + + +Obtient une valeur indiquant si les barres sont remplies. Uniquement pour les codes-barres 1D. Valeur par défaut : true. + +**Returns:** +booléen - une valeur indiquant si les barres sont remplies. +### getGS1CompositeBar() {#getGS1CompositeBar--} +``` +public final GS1CompositeBarParameters getGS1CompositeBar() +``` + + +Paramètres du GS1 Composite Bar. + +Cet exemple montre comment créer et enregistrer une image GS1 Composite Bar. Notez que le codetext 1D et le codetext 2D sont séparés par le symbole '|' + +``` + + [C#] + var codetext = "(01)03212345678906|(21)A1B2C3D4E5F6G7H8"; + using (var generator = new BarcodeGenerator(EncodeTypes.GS1CompositeBar, codetext)) + { + generator.Parameters.Barcode.GS1CompositeBar.LinearComponentType = EncodeTypes.GS1Code128; + generator.Parameters.Barcode.GS1CompositeBar.TwoDComponentType = TwoDComponentType.CC_A; + // Aspect ratio of 2D component + generator.Parameters.Barcode.Pdf417.AspectRatio = 3; + // X-Dimension of 1D and 2D components + generator.Parameters.Barcode.XDimension.Pixels = 3; + // Height of 1D component + generator.Parameters.Barcode.BarHeight.Pixels = 100; + generator.Save("test.png"); + } + +``` + +**Returns:** +[GS1CompositeBarParameters](../../com.aspose.barcode.generation/gs1compositebarparameters) +### getHanXin() {#getHanXin--} +``` +public final HanXinParameters getHanXin() +``` + + +Paramètres HanXin. + +**Returns:** +[HanXinParameters](../../com.aspose.barcode.generation/hanxinparameters) +### getITF() {#getITF--} +``` +public final ITFParameters getITF() +``` + + +Paramètres ITF. + +**Returns:** +[ITFParameters](../../com.aspose.barcode.generation/itfparameters) +### getMaxiCode() {#getMaxiCode--} +``` +public final MaxiCodeParameters getMaxiCode() +``` + + +Paramètres MaxiCode. + +**Returns:** +[MaxiCodeParameters](../../com.aspose.barcode.generation/maxicodeparameters) +### getPadding() {#getPadding--} +``` +public final Padding getPadding() +``` + + +Marges du code-barres. Valeur par défaut : 5pt 5pt 5pt 5pt. + +**Returns:** +[Padding](../../com.aspose.barcode.generation/padding) +### getPatchCode() {#getPatchCode--} +``` +public final PatchCodeParameters getPatchCode() +``` + + +Paramètres PatchCode. + +**Returns:** +[PatchCodeParameters](../../com.aspose.barcode.generation/patchcodeparameters) +### getPdf417() {#getPdf417--} +``` +public final Pdf417Parameters getPdf417() +``` + + +Paramètres PDF417. + +**Returns:** +[Pdf417Parameters](../../com.aspose.barcode.generation/pdf417parameters) +### getPostal() {#getPostal--} +``` +public final PostalParameters getPostal() +``` + + +Paramètres postaux. Utilisé pour Postnet, Planet. + +**Returns:** +[PostalParameters](../../com.aspose.barcode.generation/postalparameters) +### getQR() {#getQR--} +``` +public final QrParameters getQR() +``` + + +Paramètres QR, MicroQR et RectMicroQR. + +**Returns:** +[QrParameters](../../com.aspose.barcode.generation/qrparameters) +### getSupplement() {#getSupplement--} +``` +public final SupplementParameters getSupplement() +``` + + +Paramètres de supplément. Utilisé pour Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN. + +**Returns:** +[SupplementParameters](../../com.aspose.barcode.generation/supplementparameters) +### getThrowExceptionWhenCodeTextIncorrect() {#getThrowExceptionWhenCodeTextIncorrect--} +``` +public final boolean getThrowExceptionWhenCodeTextIncorrect() +``` + + +Uniquement pour les codes-barres 1D. Si le codetext est incorrect et que la valeur est définie sur true, une exception sera levée. Sinon le codetext sera corrigé pour correspondre à la spécification du code-barres. Une exception sera toujours levée pour : la symbologie Databar si le codetext est incorrect. Une exception ne sera jamais levée pour : AustraliaPost, SingapurePost, Code39FullASCII, Code93, Code16K, la symbologie Code128 si le codetext est incorrect. + +**Returns:** +boolean +### getWideNarrowRatio() {#getWideNarrowRatio--} +``` +public final float getWideNarrowRatio() +``` + + +Ratio des barres larges aux barres étroites. Valeur par défaut : 3, c’est‑à‑dire que les barres larges sont trois fois plus larges que les barres étroites. Utilisé pour ITF, PZN, PharmaCode, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, IATA2of5, VIN, DeutschePost, OPC, Code32, DataLogic2of5, PatchCode, Code39, Code39FullASCII + +**Returns:** +float +### getXDimension() {#getXDimension--} +``` +public final Unit getXDimension() +``` + + +x-dimension est la plus petite largeur de l'unité des barres ou espaces du code-barres. Augmenter cela augmentera la largeur totale de l'image du code-barres. Ignoré si la propriété BaseGenerationParameters.AutoSizeMode ([BaseGenerationParameters.getAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#getAutoSizeMode)/[BaseGenerationParameters.setAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#setAutoSizeMode)) est définie sur AutoSizeMode.Nearest ou AutoSizeMode.Interpolation. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + + + +**Returns:** +int +### isChecksumEnabled() {#isChecksumEnabled--} +``` +public final EnableChecksum isChecksumEnabled() +``` + + +Activer la somme de contrôle lors de la génération des codes-barres 1D. + +Par défaut, il est traité comme Oui pour les symbologies qui doivent contenir une somme de contrôle, et comme Non lorsque la somme de contrôle n'est possible que. + +La somme de contrôle est possible : Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN, Codabar + +Somme de contrôle toujours utilisée : Rest symbology + +**Returns:** +[EnableChecksum](../../com.aspose.barcode.generation/enablechecksum) +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBarColor(int value) {#setBarColor-int-} +``` +public final void setBarColor(int value) +``` + + +Couleur des barres. Valeur par défaut : Color.Black. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setBarHeight(Unit value) {#setBarHeight-com.aspose.barcode.generation.Unit-} +``` +public final void setBarHeight(Unit value) +``` + + +Hauteur des barres des codes-barres 1D en valeur [Unit](../../com.aspose.barcode.generation/unit). Ignorée si la propriété BaseGenerationParameters.AutoSizeMode ([BaseGenerationParameters.getAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#getAutoSizeMode)/[BaseGenerationParameters.setAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#setAutoSizeMode)) est définie sur AutoSizeMode.Nearest ou AutoSizeMode.Interpolation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### setBarWidthReduction(Unit value) {#setBarWidthReduction-com.aspose.barcode.generation.Unit-} +``` +public final void setBarWidthReduction(Unit value) +``` + + +Définit la valeur de réduction des barres utilisée pour compenser la diffusion d'encre lors de l'impression. Valeur par défaut : 0 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | Valeur de réduction des barres utilisée pour compenser la diffusion d'encre lors de l'impression. | + +### setChecksumAlwaysShow(boolean value) {#setChecksumAlwaysShow-boolean-} +``` +public final void setChecksumAlwaysShow(boolean value) +``` + + +Toujours afficher le chiffre de contrôle dans le texte lisible par l'homme pour les codes-barres Code128 et GS1Code128. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setChecksumEnabled(EnableChecksum value) {#setChecksumEnabled-com.aspose.barcode.generation.EnableChecksum-} +``` +public final void setChecksumEnabled(EnableChecksum value) +``` + + +Activer la somme de contrôle lors de la génération des codes-barres 1D. + +Par défaut, il est traité comme Oui pour les symbologies qui doivent contenir une somme de contrôle, et comme Non lorsque la somme de contrôle n'est possible que. + +La somme de contrôle est possible : Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN, Codabar + +Somme de contrôle toujours utilisée : Rest symbology + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [EnableChecksum](../../com.aspose.barcode.generation/enablechecksum) | | + +### setCodeText(String value) {#setCodeText-java.lang.String-} +``` +public final void setCodeText(String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setEnableEscape(boolean value) {#setEnableEscape-boolean-} +``` +public final void setEnableEscape(boolean value) +``` + + +Indique si le caractère "\\" est interprété comme un caractère d'échappement dans la propriété CodeText. Utilisé uniquement pour Pdf417, DataMatrix, Code128. Si EnableEscape est vrai, "\\" sera interprété comme un caractère d'échappement spécial. Sinon, "\\" agit comme des caractères normaux. + +Aspose.BarCode prend en charge la saisie du code ASCII décimal et du mnémonique pour les caractères de contrôle ASCII. Par exemple, \\013 et \\\\CR représentent CR. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setFilledBars(boolean value) {#setFilledBars-boolean-} +``` +public final void setFilledBars(boolean value) +``` + + +Définit une valeur indiquant si les barres sont remplies. Uniquement pour les codes-barres 1D. Valeur par défaut : true. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | une valeur indiquant si les barres sont remplies. | + +### setGS1CompositeBar(GS1CompositeBarParameters value) {#setGS1CompositeBar-com.aspose.barcode.generation.GS1CompositeBarParameters-} +``` +public final void setGS1CompositeBar(GS1CompositeBarParameters value) +``` + + +Paramètres du GS1 Composite Bar. + +Cet exemple montre comment créer et enregistrer une image GS1 Composite Bar. Notez que le codetext 1D et le codetext 2D sont séparés par le symbole '|' + +``` + + [C#] + var codetext = "(01)03212345678906|(21)A1B2C3D4E5F6G7H8"; + using (var generator = new BarcodeGenerator(EncodeTypes.GS1CompositeBar, codetext)) + { + generator.Parameters.Barcode.GS1CompositeBar.LinearComponentType = EncodeTypes.GS1Code128; + generator.Parameters.Barcode.GS1CompositeBar.TwoDComponentType = TwoDComponentType.CC_A; + // Aspect ratio of 2D component + generator.Parameters.Barcode.Pdf417.AspectRatio = 3; + // X-Dimension of 1D and 2D components + generator.Parameters.Barcode.XDimension.Pixels = 3; + // Height of 1D component + generator.Parameters.Barcode.BarHeight.Pixels = 100; + generator.Save("test.png"); + } + +``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [GS1CompositeBarParameters](../../com.aspose.barcode.generation/gs1compositebarparameters) | | + +### setThrowExceptionWhenCodeTextIncorrect(boolean value) {#setThrowExceptionWhenCodeTextIncorrect-boolean-} +``` +public final void setThrowExceptionWhenCodeTextIncorrect(boolean value) +``` + + +Uniquement pour les codes-barres 1D. Si le codetext est incorrect et que la valeur est définie sur true, une exception sera levée. Sinon le codetext sera corrigé pour correspondre à la spécification du code-barres. Une exception sera toujours levée pour : la symbologie Databar si le codetext est incorrect. Une exception ne sera jamais levée pour : AustraliaPost, SingapurePost, Code39FullASCII, Code93, Code16K, la symbologie Code128 si le codetext est incorrect. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setWideNarrowRatio(float value) {#setWideNarrowRatio-float-} +``` +public final void setWideNarrowRatio(float value) +``` + + +Ratio des barres larges aux barres étroites. Valeur par défaut : 3, c’est‑à‑dire que les barres larges sont trois fois plus larges que les barres étroites. Utilisé pour ITF, PZN, PharmaCode, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, IATA2of5, VIN, DeutschePost, OPC, Code32, DataLogic2of5, PatchCode, Code39, Code39FullASCII + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setXDimension(Unit value) {#setXDimension-com.aspose.barcode.generation.Unit-} +``` +public final void setXDimension(Unit value) +``` + + +x-dimension est la plus petite largeur de l'unité des barres ou espaces du code-barres. Augmenter cela augmentera la largeur totale de l'image du code-barres. Ignoré si la propriété BaseGenerationParameters.AutoSizeMode ([BaseGenerationParameters.getAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#getAutoSizeMode)/[BaseGenerationParameters.setAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#setAutoSizeMode)) est définie sur AutoSizeMode.Nearest ou AutoSizeMode.Interpolation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/barcodeparametersinternal/_index.md b/french/androidjava/com.aspose.barcode.generation/barcodeparametersinternal/_index.md new file mode 100644 index 000000000..b5b083a11 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/barcodeparametersinternal/_index.md @@ -0,0 +1,308 @@ +--- +title: BarcodeParametersInternal +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 15 +url: /fr/androidjava/com.aspose.barcode.generation/barcodeparametersinternal/ +--- +**Inheritance:** +java.lang.Object +``` +public class BarcodeParametersInternal +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarcodeParametersInternal()](#BarcodeParametersInternal--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio(BarcodeParameters parameters)](#getAspectRatio-com.aspose.barcode.generation.BarcodeParameters-) | | +| [getBackColor(BarcodeParameters parameters)](#getBackColor-com.aspose.barcode.generation.BarcodeParameters-) | | +| [getCMYKBackColor(BarcodeParameters parameters)](#getCMYKBackColor-com.aspose.barcode.generation.BarcodeParameters-) | | +| [getCMYKBarColor(BarcodeParameters parameters)](#getCMYKBarColor-com.aspose.barcode.generation.BarcodeParameters-) | | +| [getChecksum(CodetextParameters parameters)](#getChecksum-com.aspose.barcode.generation.CodetextParameters-) | | +| [getClass()](#getClass--) | | +| [getColumns(BarcodeParameters parameters)](#getColumns-com.aspose.barcode.generation.BarcodeParameters-) | | +| [getComplexBarcode(BarcodeParameters parameters)](#getComplexBarcode-com.aspose.barcode.generation.BarcodeParameters-) | | +| [getPostalShortBarHeight(BarcodeParameters parameters)](#getPostalShortBarHeight-com.aspose.barcode.generation.BarcodeParameters-) | | +| [getRows(BarcodeParameters parameters)](#getRows-com.aspose.barcode.generation.BarcodeParameters-) | | +| [getSupplementSpace(BarcodeParameters parameters)](#getSupplementSpace-com.aspose.barcode.generation.BarcodeParameters-) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBarColor(BarcodeParameters barcodeParameters, int value)](#setBarColor-com.aspose.barcode.generation.BarcodeParameters-int-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarcodeParametersInternal() {#BarcodeParametersInternal--} +``` +public BarcodeParametersInternal() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAspectRatio(BarcodeParameters parameters) {#getAspectRatio-com.aspose.barcode.generation.BarcodeParameters-} +``` +public static float getAspectRatio(BarcodeParameters parameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) | | + +**Returns:** +float +### getBackColor(BarcodeParameters parameters) {#getBackColor-com.aspose.barcode.generation.BarcodeParameters-} +``` +public static int getBackColor(BarcodeParameters parameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) | | + +**Returns:** +int +### getCMYKBackColor(BarcodeParameters parameters) {#getCMYKBackColor-com.aspose.barcode.generation.BarcodeParameters-} +``` +public static CMYKColor getCMYKBackColor(BarcodeParameters parameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) | | + +**Returns:** +[CMYKColor](../../com.aspose.barcode.generation/cmykcolor) +### getCMYKBarColor(BarcodeParameters parameters) {#getCMYKBarColor-com.aspose.barcode.generation.BarcodeParameters-} +``` +public static CMYKColor getCMYKBarColor(BarcodeParameters parameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) | | + +**Returns:** +[CMYKColor](../../com.aspose.barcode.generation/cmykcolor) +### getChecksum(CodetextParameters parameters) {#getChecksum-com.aspose.barcode.generation.CodetextParameters-} +``` +public static String getChecksum(CodetextParameters parameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [CodetextParameters](../../com.aspose.barcode.generation/codetextparameters) | | + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getColumns(BarcodeParameters parameters) {#getColumns-com.aspose.barcode.generation.BarcodeParameters-} +``` +public static int getColumns(BarcodeParameters parameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) | | + +**Returns:** +int +### getComplexBarcode(BarcodeParameters parameters) {#getComplexBarcode-com.aspose.barcode.generation.BarcodeParameters-} +``` +public static ComplexBarcode getComplexBarcode(BarcodeParameters parameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) | | + +**Returns:** +[ComplexBarcode](../../com.aspose.barcode.generation/complexbarcode) +### getPostalShortBarHeight(BarcodeParameters parameters) {#getPostalShortBarHeight-com.aspose.barcode.generation.BarcodeParameters-} +``` +public static int getPostalShortBarHeight(BarcodeParameters parameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) | | + +**Returns:** +int +### getRows(BarcodeParameters parameters) {#getRows-com.aspose.barcode.generation.BarcodeParameters-} +``` +public static int getRows(BarcodeParameters parameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) | | + +**Returns:** +int +### getSupplementSpace(BarcodeParameters parameters) {#getSupplementSpace-com.aspose.barcode.generation.BarcodeParameters-} +``` +public static int getSupplementSpace(BarcodeParameters parameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) | | + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBarColor(BarcodeParameters barcodeParameters, int value) {#setBarColor-com.aspose.barcode.generation.BarcodeParameters-int-} +``` +public static void setBarColor(BarcodeParameters barcodeParameters, int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeParameters | [BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) | | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/baseencodetype/_index.md b/french/androidjava/com.aspose.barcode.generation/baseencodetype/_index.md new file mode 100644 index 000000000..965c1862c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/baseencodetype/_index.md @@ -0,0 +1,238 @@ +--- +title: BaseEncodeType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe de base pour SymbologyEncodeType. +type: docs +weight: 16 +url: /fr/androidjava/com.aspose.barcode.generation/baseencodetype/ +--- +**Inheritance:** +java.lang.Object +``` +public class BaseEncodeType +``` + +Classe de base pour SymbologyEncodeType. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object other)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de BaseEncodeType. | +| [getClass()](#getClass--) | | +| [getClassification()](#getClassification--) | Obtient une classification de cette symbologie. | +| [getString()](#getString--) | Convertit l'instance de BaseEncodeType en sa représentation sous forme de chaîne équivalente. | +| [getString(BaseEncodeType instance)](#getString-com.aspose.barcode.generation.BaseEncodeType-) | Convertit l'instance de BaseEncodeType en sa représentation sous forme de chaîne équivalente. | +| [getTypeIndex()](#getTypeIndex--) | Obtient un index du type d'encodage | +| [getTypeName()](#getTypeName--) | Obtient un nom du type d'encodage | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parse(String stringEncodeType)](#parse-java.lang.String-) | Convertit la représentation sous forme de chaîne du nom d'un BaseEncodeType en son instance. | +| [toString()](#toString--) | Renvoie le nom du BaseEncodeType donné sous forme de chaîne. | +| [tryParse(String parsingType, BaseEncodeType[] result)](#tryParse-java.lang.String-com.aspose.barcode.generation.BaseEncodeType---) | Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. | +| [tryParse(String parsingType, SymbologyEncodeType[] result)](#tryParse-java.lang.String-com.aspose.barcode.generation.SymbologyEncodeType---) | Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object other) {#equals-java.lang.Object-} +``` +public boolean equals(Object other) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de BaseEncodeType. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| autre | java.lang.Object | Une valeur BaseEncodeType à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getClassification() {#getClassification--} +``` +public BarcodeClassifications getClassification() +``` + + +Obtient une classification de cette symbologie. + +**Returns:** +[BarcodeClassifications](../../com.aspose.barcode.generation/barcodeclassifications) +### getString() {#getString--} +``` +public String getString() +``` + + +Convertit l'instance de BaseEncodeType en sa représentation sous forme de chaîne équivalente. Le format de la chaîne est : "Index:0; Name:Codabar". + +**Returns:** +java.lang.String - Une chaîne représentant la valeur complète du type d'encodage +### getString(BaseEncodeType instance) {#getString-com.aspose.barcode.generation.BaseEncodeType-} +``` +public static String getString(BaseEncodeType instance) +``` + + +Convertit l'instance de BaseEncodeType en sa représentation sous forme de chaîne équivalente. Le format de la chaîne est : "Index:-1; Name:None". + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| instance | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | L'instance de BaseEncodeType à convertir | + +**Returns:** +java.lang.String - Une chaîne représentant la valeur complète du type d'encodage donné +### getTypeIndex() {#getTypeIndex--} +``` +public short getTypeIndex() +``` + + +Obtient un index du type d'encodage + +**Returns:** +short +### getTypeName() {#getTypeName--} +``` +public String getTypeName() +``` + + +Obtient un nom du type d'encodage + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parse(String stringEncodeType) {#parse-java.lang.String-} +``` +public static BaseEncodeType parse(String stringEncodeType) +``` + + +Convertit la représentation sous forme de chaîne du nom d'un BaseEncodeType en son instance. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| stringEncodeType | java.lang.String | Une chaîne contenant le nom d'un BaseEncodeType à convertir. | + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - the instance of , if conversion was successful; otherwise, it returns . +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie le nom du BaseEncodeType donné sous forme de chaîne. + +**Returns:** +java.lang.String - Une chaîne représentant le nom du type d'encodage +### tryParse(String parsingType, BaseEncodeType[] result) {#tryParse-java.lang.String-com.aspose.barcode.generation.BaseEncodeType---} +``` +public static boolean tryParse(String parsingType, BaseEncodeType[] result) +``` + + +Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. La valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne au format "Index:-1; Name:None" à convertir. | +| | result | [BaseEncodeType\[\]](../../com.aspose.barcode.generation/baseencodetype) | Un SingleEncodeType réel est renvoyé lorsque la conversion s'est terminée avec succès ; | + +sinon il renvoie null. | + +**Returns:** +boolean - **true** si s a été converti avec succès ; sinon, **false** . +### tryParse(String parsingType, SymbologyEncodeType[] result) {#tryParse-java.lang.String-com.aspose.barcode.generation.SymbologyEncodeType---} +``` +public static boolean tryParse(String parsingType, SymbologyEncodeType[] result) +``` + + +Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. La valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne au format "Index:-1; Name:None" à convertir. | +| | result | [SymbologyEncodeType\[\]](../../com.aspose.barcode.generation/symbologyencodetype) | Un SingleEncodeType réel est renvoyé lorsque la conversion s'est terminée avec succès ; | + +sinon il renvoie null. | + +**Returns:** +boolean - **true** si s a été converti avec succès ; sinon, **false** . +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/basegenerationparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/basegenerationparameters/_index.md new file mode 100644 index 000000000..6b38490a8 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/basegenerationparameters/_index.md @@ -0,0 +1,374 @@ +--- +title: BaseGenerationParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres de génération d'image de code-barres. +type: docs +weight: 17 +url: /fr/androidjava/com.aspose.barcode.generation/basegenerationparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class BaseGenerationParameters +``` + +Paramètres de génération d'image de code-barres. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAutoSizeMode()](#getAutoSizeMode--) | Spécifie les différents types de modes de dimensionnement automatique. | +| [getBackColor()](#getBackColor--) | Couleur d'arrière-plan de l'image du code-barres. | +| [getBarcode()](#getBarcode--) | Obtient les BarcodeParameters qui contiennent toutes les propriétés du code-barres. | +| [getBorder()](#getBorder--) | Obtient les BorderParameters qui contiennent toutes les propriétés de configuration pour la bordure du code-barres. | +| [getCaptionAbove()](#getCaptionAbove--) | Légende au-dessus de l'image BarCode. | +| [getCaptionBelow()](#getCaptionBelow--) | Légende en dessous de l'image BarCode. | +| [getClass()](#getClass--) | | +| [getImage()](#getImage--) | Paramètres d'image. | +| [getImageHeight()](#getImageHeight--) | Hauteur de l'image BarCode lorsque la propriété AutoSizeMode est définie sur AutoSizeMode.NEAREST ou AutoSizeMode.INTERPOLATION. | +| [getImageWidth()](#getImageWidth--) | Largeur de l'image BarCode lorsque la propriété AutoSizeMode est définie sur AutoSizeMode.NEAREST ou AutoSizeMode.INTERPOLATION. | +| [getResolution()](#getResolution--) | Obtient la résolution de l'image BarCode. | +| [getRotationAngle()](#getRotationAngle--) | Angle de rotation de l'image BarCode, mesuré en degrés, p. ex. | +| [getUseAntiAlias()](#getUseAntiAlias--) | Obtient une valeur indiquant si le mode anti-aliasing est utilisé pour rendre l'image. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAutoSizeMode(AutoSizeMode value)](#setAutoSizeMode-com.aspose.barcode.generation.AutoSizeMode-) | Spécifie les différents types de modes de dimensionnement automatique. | +| [setBackColor(int value)](#setBackColor-int-) | Couleur d'arrière-plan de l'image du code-barres. | +| [setImageHeight(Unit value)](#setImageHeight-com.aspose.barcode.generation.Unit-) | Hauteur de l'image BarCode lorsque la propriété AutoSizeMode est définie sur AutoSizeMode.NEAREST ou AutoSizeMode.INTERPOLATION. | +| [setImageWidth(Unit value)](#setImageWidth-com.aspose.barcode.generation.Unit-) | Largeur de l'image BarCode lorsque la propriété AutoSizeMode est définie sur AutoSizeMode.NEAREST ou AutoSizeMode.INTERPOLATION. | +| [setResolution(float value)](#setResolution-float-) | Définit la résolution de l'image BarCode. | +| [setRotationAngle(float value)](#setRotationAngle-float-) | Angle de rotation de l'image BarCode, mesuré en degrés, p. ex. | +| [setUseAntiAlias(boolean value)](#setUseAntiAlias-boolean-) | Définit une valeur indiquant si le mode anti-aliasing est utilisé pour rendre l'image. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAutoSizeMode() {#getAutoSizeMode--} +``` +public AutoSizeMode getAutoSizeMode() +``` + + +Spécifie les différents types de modes de dimensionnement automatique. Valeur par défaut : AutoSizeMode.NONE. + +**Returns:** +[AutoSizeMode](../../com.aspose.barcode.generation/autosizemode) +### getBackColor() {#getBackColor--} +``` +public int getBackColor() +``` + + +Couleur d'arrière-plan de l'image du code-barres. Valeur par défaut : Color.White. Voir Color. + +**Returns:** +int +### getBarcode() {#getBarcode--} +``` +public BarcodeParameters getBarcode() +``` + + +Obtient les BarcodeParameters qui contiennent toutes les propriétés du code-barres. + +**Returns:** +[BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) +### getBorder() {#getBorder--} +``` +public BorderParameters getBorder() +``` + + +Obtient les BorderParameters qui contiennent toutes les propriétés de configuration pour la bordure du code-barres. + +**Returns:** +[BorderParameters](../../com.aspose.barcode.generation/borderparameters) +### getCaptionAbove() {#getCaptionAbove--} +``` +public CaptionParameters getCaptionAbove() +``` + + +Légende au-dessus de l'image BarCode. Voir CaptionParameters. + +**Returns:** +[CaptionParameters](../../com.aspose.barcode.generation/captionparameters) +### getCaptionBelow() {#getCaptionBelow--} +``` +public CaptionParameters getCaptionBelow() +``` + + +Légende en dessous de l'image BarCode. Voir CaptionParameters. + +**Returns:** +[CaptionParameters](../../com.aspose.barcode.generation/captionparameters) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getImage() {#getImage--} +``` +public ImageParameters getImage() +``` + + +Paramètres d'image. Voir . + +**Returns:** +[ImageParameters](../../com.aspose.barcode.generation/imageparameters) - +### getImageHeight() {#getImageHeight--} +``` +public Unit getImageHeight() +``` + + +Hauteur de l'image BarCode lorsque la propriété AutoSizeMode est définie sur AutoSizeMode.NEAREST ou AutoSizeMode.INTERPOLATION. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getImageWidth() {#getImageWidth--} +``` +public Unit getImageWidth() +``` + + +Largeur de l'image BarCode lorsque la propriété AutoSizeMode est définie sur AutoSizeMode.NEAREST ou AutoSizeMode.INTERPOLATION. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getResolution() {#getResolution--} +``` +public float getResolution() +``` + + +Obtient la résolution de l'image BarCode. Une valeur pour les deux dimensions. Valeur par défaut : 96 dpi. + +**Returns:** +float +### getRotationAngle() {#getRotationAngle--} +``` +public float getRotationAngle() +``` + + +Angle de rotation de l'image BarCode, mesuré en degrés, p. ex. RotationAngle = 0 ou RotationAngle = 360 signifie aucune rotation. Si RotationAngle n'est PAS égal à 90, 180, 270 ou 0, cela peut augmenter la difficulté pour le scanner de lire l'image. Valeur par défaut : 0. + +-------------------- + +> ``` +> This sample shows how to create and save a BarCode image. +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX); +> generator.getParameters().setRotationAngle(7f); +> generator.save("test.png"); +> ``` + +**Returns:** +float +### getUseAntiAlias() {#getUseAntiAlias--} +``` +public boolean getUseAntiAlias() +``` + + +Obtient une valeur indiquant si le mode anti-aliasing est utilisé pour rendre l'image. + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAutoSizeMode(AutoSizeMode value) {#setAutoSizeMode-com.aspose.barcode.generation.AutoSizeMode-} +``` +public void setAutoSizeMode(AutoSizeMode value) +``` + + +Spécifie les différents types de modes de dimensionnement automatique. Valeur par défaut : AutoSizeMode.NONE. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [AutoSizeMode](../../com.aspose.barcode.generation/autosizemode) | | + +### setBackColor(int value) {#setBackColor-int-} +``` +public void setBackColor(int value) +``` + + +Couleur d'arrière-plan de l'image du code-barres. Valeur par défaut : Color.White. Voir Color. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setImageHeight(Unit value) {#setImageHeight-com.aspose.barcode.generation.Unit-} +``` +public void setImageHeight(Unit value) +``` + + +Hauteur de l'image BarCode lorsque la propriété AutoSizeMode est définie sur AutoSizeMode.NEAREST ou AutoSizeMode.INTERPOLATION. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### setImageWidth(Unit value) {#setImageWidth-com.aspose.barcode.generation.Unit-} +``` +public void setImageWidth(Unit value) +``` + + +Largeur de l'image BarCode lorsque la propriété AutoSizeMode est définie sur AutoSizeMode.NEAREST ou AutoSizeMode.INTERPOLATION. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### setResolution(float value) {#setResolution-float-} +``` +public void setResolution(float value) +``` + + +Définit la résolution de l'image BarCode. Une valeur pour les deux dimensions. Valeur par défaut : 96 dpi. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setRotationAngle(float value) {#setRotationAngle-float-} +``` +public void setRotationAngle(float value) +``` + + +Angle de rotation de l'image BarCode, mesuré en degrés, p. ex. RotationAngle = 0 ou RotationAngle = 360 signifie aucune rotation. Si RotationAngle n'est PAS égal à 90, 180, 270 ou 0, cela peut augmenter la difficulté pour le scanner de lire l'image. Valeur par défaut : 0. + +-------------------- + +> ``` +> This sample shows how to create and save a BarCode image. +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX); +> generator.getParameters().setRotationAngle(7f); +> generator.save("test.png"); +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setUseAntiAlias(boolean value) {#setUseAntiAlias-boolean-} +``` +public void setUseAntiAlias(boolean value) +``` + + +Définit une valeur indiquant si le mode anti-aliasing est utilisé pour rendre l'image. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/borderdashstyle/_index.md b/french/androidjava/com.aspose.barcode.generation/borderdashstyle/_index.md new file mode 100644 index 000000000..0dde02e2a --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/borderdashstyle/_index.md @@ -0,0 +1,288 @@ +--- +title: BorderDashStyle +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifie le style des lignes de bordure en pointillés. +type: docs +weight: 77 +url: /fr/androidjava/com.aspose.barcode.generation/borderdashstyle/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum BorderDashStyle extends Enum +``` + +Spécifie le style des lignes de bordure en pointillés. +## Champs + +| Champ | Description | +| --- | --- | +| [DASH](#DASH) | Spécifie une ligne composée de tirets. | +| [DASH_DOT](#DASH-DOT) | Spécifie une ligne composée d'un motif répété tiret-point. | +| [DASH_DOT_DOT](#DASH-DOT-DOT) | Spécifie une ligne composée d'un motif répété tiret-point-point. | +| [DOT](#DOT) | Spécifie une ligne composée de points. | +| [SOLID](#SOLID) | Spécifie une ligne pleine. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### DASH {#DASH} +``` +public static final BorderDashStyle DASH +``` + + +Spécifie une ligne composée de tirets. + +### DASH_DOT {#DASH-DOT} +``` +public static final BorderDashStyle DASH_DOT +``` + + +Spécifie une ligne composée d'un motif répété tiret-point. + +### DASH_DOT_DOT {#DASH-DOT-DOT} +``` +public static final BorderDashStyle DASH_DOT_DOT +``` + + +Spécifie une ligne composée d'un motif répété tiret-point-point. + +### DOT {#DOT} +``` +public static final BorderDashStyle DOT +``` + + +Spécifie une ligne composée de points. + +### SOLID {#SOLID} +``` +public static final BorderDashStyle SOLID +``` + + +Spécifie une ligne pleine. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static BorderDashStyle valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[BorderDashStyle](../../com.aspose.barcode.generation/borderdashstyle) +### values() {#values--} +``` +public static BorderDashStyle[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.BorderDashStyle[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/borderparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/borderparameters/_index.md new file mode 100644 index 000000000..1734ebb8c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/borderparameters/_index.md @@ -0,0 +1,224 @@ +--- +title: BorderParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres de bordure d'image de code-barres +type: docs +weight: 18 +url: /fr/androidjava/com.aspose.barcode.generation/borderparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class BorderParameters +``` + +Paramètres de bordure d'image de code-barres +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getColor()](#getColor--) | Couleur de la bordure. | +| [getDashStyle()](#getDashStyle--) | Style de tiret de la bordure. | +| [getVisible()](#getVisible--) | Visibilité de la bordure. | +| [getWidth()](#getWidth--) | Largeur de la bordure. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setColor(int value)](#setColor-int-) | Couleur de la bordure. | +| [setDashStyle(BorderDashStyle value)](#setDashStyle-com.aspose.barcode.generation.BorderDashStyle-) | Style de tiret de la bordure. | +| [setVisible(boolean value)](#setVisible-boolean-) | Visibilité de la bordure. | +| [setWidth(Unit value)](#setWidth-com.aspose.barcode.generation.Unit-) | Largeur de la bordure. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce BorderParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getColor() {#getColor--} +``` +public int getColor() +``` + + +Couleur de la bordure. Valeur par défaut : Color.Black. + +**Returns:** +int +### getDashStyle() {#getDashStyle--} +``` +public BorderDashStyle getDashStyle() +``` + + +Style de tiret de la bordure. Valeur par défaut : BorderDashStyle.Solid. + +**Returns:** +[BorderDashStyle](../../com.aspose.barcode.generation/borderdashstyle) +### getVisible() {#getVisible--} +``` +public boolean getVisible() +``` + + +Visibilité de la bordure. Si false alors le paramètre Width est toujours ignoré (0). Valeur par défaut : false. + +**Returns:** +boolean +### getWidth() {#getWidth--} +``` +public Unit getWidth() +``` + + +Largeur de la bordure. Valeur par défaut : 0. Ignorée si Visible est défini sur false. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setColor(int value) {#setColor-int-} +``` +public void setColor(int value) +``` + + +Couleur de la bordure. Valeur par défaut : Color.Black. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setDashStyle(BorderDashStyle value) {#setDashStyle-com.aspose.barcode.generation.BorderDashStyle-} +``` +public void setDashStyle(BorderDashStyle value) +``` + + +Style de tiret de la bordure. Valeur par défaut : BorderDashStyle.Solid. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [BorderDashStyle](../../com.aspose.barcode.generation/borderdashstyle) | | + +### setVisible(boolean value) {#setVisible-boolean-} +``` +public void setVisible(boolean value) +``` + + +Visibilité de la bordure. Si false alors le paramètre Width est toujours ignoré (0). Valeur par défaut : false. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setWidth(Unit value) {#setWidth-com.aspose.barcode.generation.Unit-} +``` +public void setWidth(Unit value) +``` + + +Largeur de la bordure. Valeur par défaut : 0. Ignorée si Visible est défini sur false. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce BorderParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ce BorderParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/captionparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/captionparameters/_index.md new file mode 100644 index 000000000..6ac8a9798 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/captionparameters/_index.md @@ -0,0 +1,305 @@ +--- +title: CaptionParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres de légende. +type: docs +weight: 20 +url: /fr/androidjava/com.aspose.barcode.generation/captionparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class CaptionParameters +``` + +Paramètres de légende. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [CaptionParameters()](#CaptionParameters--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAlignment()](#getAlignment--) | Alignement horizontal du texte de légende. | +| [getClass()](#getClass--) | | +| [getFont()](#getFont--) | Police de la légende. | +| | [getNoWrap()](#getNoWrap--) | ``` | +Spécifie les retours à la ligne (césures) dans le texte. +``` | +| [getPadding()](#getPadding--) | Captions paddings. | +| [getText()](#getText--) | Caption text. | +| [getTextColor()](#getTextColor--) | Caption text color. | +| [getVisible()](#getVisible--) | Caption text visibility. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAlignment(TextAlignment value)](#setAlignment-com.aspose.barcode.generation.TextAlignment-) | Caption test horizontal alignment. | +| [setNoWrap(boolean value)](#setNoWrap-boolean-) | ``` +Specify word wraps (line breaks) within text +``` | +| [setPadding(Padding value)](#setPadding-com.aspose.barcode.generation.Padding-) | Marges des légendes. | +| [setText(String value)](#setText-java.lang.String-) | Texte de la légende. | +| [setTextColor(int value)](#setTextColor-int-) | Couleur du texte de la légende. | +| [setVisible(boolean value)](#setVisible-boolean-) | Visibilité du texte de la légende. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CaptionParameters() {#CaptionParameters--} +``` +public CaptionParameters() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAlignment() {#getAlignment--} +``` +public TextAlignment getAlignment() +``` + + +Alignement horizontal du texte de légende. Valeur par défaut : StringAlignment.Center. + +**Returns:** +[TextAlignment](../../com.aspose.barcode.generation/textalignment) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFont() {#getFont--} +``` +public FontUnit getFont() +``` + + +Police de la légende. Valeur par défaut : Arial 8pt regular. + +**Returns:** +[FontUnit](../../com.aspose.barcode.generation/fontunit) +### getNoWrap() {#getNoWrap--} +``` +public boolean getNoWrap() +``` + + +``` +Specify word wraps (line breaks) within text. + Default value: false. +``` + +**Returns:** +boolean +### getPadding() {#getPadding--} +``` +public Padding getPadding() +``` + + +Marges des légendes. Valeur par défaut pour CaptionAbove : 5pt 5pt 0 5pt. Valeur par défaut pour CaptionBelow : 0 5pt 5pt 5pt. + +**Returns:** +[Padding](../../com.aspose.barcode.generation/padding) +### getText() {#getText--} +``` +public String getText() +``` + + +Texte de la légende. Valeur par défaut : chaîne vide. + +**Returns:** +java.lang.String +### getTextColor() {#getTextColor--} +``` +public int getTextColor() +``` + + +Couleur du texte de la légende. Valeur par défaut : Color.BLACK. + +**Returns:** +int +### getVisible() {#getVisible--} +``` +public boolean getVisible() +``` + + +Visibilité du texte de la légende. Valeur par défaut : false. + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAlignment(TextAlignment value) {#setAlignment-com.aspose.barcode.generation.TextAlignment-} +``` +public void setAlignment(TextAlignment value) +``` + + +Alignement horizontal du texte de légende. Valeur par défaut : StringAlignment.Center. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [TextAlignment](../../com.aspose.barcode.generation/textalignment) | | + +### setNoWrap(boolean value) {#setNoWrap-boolean-} +``` +public void setNoWrap(boolean value) +``` + + +``` +Specify word wraps (line breaks) within text +``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setPadding(Padding value) {#setPadding-com.aspose.barcode.generation.Padding-} +``` +public void setPadding(Padding value) +``` + + +Marges des légendes. Valeur par défaut pour CaptionAbove : 5pt 5pt 0 5pt. Valeur par défaut pour CaptionBelow : 0 5pt 5pt 5pt. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Padding](../../com.aspose.barcode.generation/padding) | | + +### setText(String value) {#setText-java.lang.String-} +``` +public void setText(String value) +``` + + +Texte de la légende. Valeur par défaut : chaîne vide. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setTextColor(int value) {#setTextColor-int-} +``` +public void setTextColor(int value) +``` + + +Couleur du texte de la légende. Valeur par défaut : Color.BLACK. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setVisible(boolean value) {#setVisible-boolean-} +``` +public void setVisible(boolean value) +``` + + +Visibilité du texte de la légende. Valeur par défaut : false. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/captionparametersinternal/_index.md b/french/androidjava/com.aspose.barcode.generation/captionparametersinternal/_index.md new file mode 100644 index 000000000..9d1b562e8 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/captionparametersinternal/_index.md @@ -0,0 +1,164 @@ +--- +title: CaptionParametersInternal +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 21 +url: /fr/androidjava/com.aspose.barcode.generation/captionparametersinternal/ +--- +**Inheritance:** +java.lang.Object +``` +public class CaptionParametersInternal +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [CaptionParametersInternal()](#CaptionParametersInternal--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getCMYKTextColor(CaptionParameters parameters)](#getCMYKTextColor-com.aspose.barcode.generation.CaptionParameters-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setCMYKBarColor(CaptionParameters captionParameters, CMYKColor value)](#setCMYKBarColor-com.aspose.barcode.generation.CaptionParameters-com.aspose.barcode.generation.CMYKColor-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CaptionParametersInternal() {#CaptionParametersInternal--} +``` +public CaptionParametersInternal() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getCMYKTextColor(CaptionParameters parameters) {#getCMYKTextColor-com.aspose.barcode.generation.CaptionParameters-} +``` +public static CMYKColor getCMYKTextColor(CaptionParameters parameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [CaptionParameters](../../com.aspose.barcode.generation/captionparameters) | | + +**Returns:** +[CMYKColor](../../com.aspose.barcode.generation/cmykcolor) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setCMYKBarColor(CaptionParameters captionParameters, CMYKColor value) {#setCMYKBarColor-com.aspose.barcode.generation.CaptionParameters-com.aspose.barcode.generation.CMYKColor-} +``` +public static void setCMYKBarColor(CaptionParameters captionParameters, CMYKColor value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| captionParameters | [CaptionParameters](../../com.aspose.barcode.generation/captionparameters) | | +| value | [CMYKColor](../../com.aspose.barcode.generation/cmykcolor) | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/cmykcolor/_index.md b/french/androidjava/com.aspose.barcode.generation/cmykcolor/_index.md new file mode 100644 index 000000000..53aa2fde6 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/cmykcolor/_index.md @@ -0,0 +1,177 @@ +--- +title: CMYKColor +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe pour la couleur CMYK. +type: docs +weight: 19 +url: /fr/androidjava/com.aspose.barcode.generation/cmykcolor/ +--- +**Inheritance:** +java.lang.Object +``` +public class CMYKColor +``` + +Classe pour la couleur CMYK. Null signifie que le CMYK n'est pas utilisé, la couleur RGB par défaut est utilisée. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [CMYKColor(int c, int m, int y, int k)](#CMYKColor-int-int-int-int-) | Initialise une nouvelle instance de la classe CMYKColor à partir des valeurs CMYK. | +## Champs + +| Champ | Description | +| --- | --- | +| [C](#C) | | +| [K](#K) | | +| [M](#M) | | +| [Y](#Y) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Compare si les valeurs des couleurs sont identiques | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | Code de hachage de CMYKColor | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CMYKColor(int c, int m, int y, int k) {#CMYKColor-int-int-int-int-} +``` +public CMYKColor(int c, int m, int y, int k) +``` + + +Initialise une nouvelle instance de la classe CMYKColor à partir des valeurs CMYK. Les valeurs CMYK sont comprises entre 0 et 100. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| c | int | Valeur Cyan [0, 100] | +| m | int | Valeur Magenta [0, 100] | +| y | int | Valeur Jaune [0, 100] | +| k | int | Valeur Noir [0, 100] | + +### C {#C} +``` +public float C +``` + + +### K {#K} +``` +public float K +``` + + +### M {#M} +``` +public float M +``` + + +### Y {#Y} +``` +public float Y +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Compare si les valeurs des couleurs sont identiques + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | CMYKColor à comparer | + +**Returns:** +booléen - Les valeurs sont identiques +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Code de hachage de CMYKColor + +**Returns:** +int - Code de hachage de CMYKColor +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/codabarchecksummode/_index.md b/french/androidjava/com.aspose.barcode.generation/codabarchecksummode/_index.md new file mode 100644 index 000000000..c6348d6e2 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/codabarchecksummode/_index.md @@ -0,0 +1,261 @@ +--- +title: CodabarChecksumMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifie l'algorithme de somme de contrôle pour Codabar +type: docs +weight: 78 +url: /fr/androidjava/com.aspose.barcode.generation/codabarchecksummode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum CodabarChecksumMode extends Enum +``` + +Spécifie l'algorithme de somme de contrôle pour Codabar +## Champs + +| Champ | Description | +| --- | --- | +| [MOD_10](#MOD-10) | Spécifie l'algorithme Mod 10 pour Codabar. | +| [MOD_16](#MOD-16) | Spécifie l'algorithme Mod 16 pour Codabar (recommandé AIIM). | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MOD_10 {#MOD-10} +``` +public static final CodabarChecksumMode MOD_10 +``` + + +Spécifie l'algorithme Mod 10 pour Codabar. + +### MOD_16 {#MOD-16} +``` +public static final CodabarChecksumMode MOD_16 +``` + + +Spécifie l'algorithme Mod 16 pour Codabar (recommandé AIIM). + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static CodabarChecksumMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[CodabarChecksumMode](../../com.aspose.barcode.generation/codabarchecksummode) +### values() {#values--} +``` +public static CodabarChecksumMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.CodabarChecksumMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/codabarparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/codabarparameters/_index.md new file mode 100644 index 000000000..d7b713f06 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/codabarparameters/_index.md @@ -0,0 +1,274 @@ +--- +title: CodabarParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres Codabar. +type: docs +weight: 22 +url: /fr/androidjava/com.aspose.barcode.generation/codabarparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class CodabarParameters +``` + +Paramètres Codabar. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getChecksumMode()](#getChecksumMode--) | Obtenir l'algorithme de somme de contrôle pour les codes-barres Codabar. | +| [getClass()](#getClass--) | | +| [getCodabarChecksumMode()](#getCodabarChecksumMode--) | Obtenir l'algorithme de somme de contrôle pour les codes-barres Codabar. | +| [getCodabarStartSymbol()](#getCodabarStartSymbol--) | Symbole de départ (caractère) de la symbologie Codabar. | +| [getCodabarStopSymbol()](#getCodabarStopSymbol--) | Symbole d'arrêt (caractère) de la symbologie Codabar. | +| [getStartSymbol()](#getStartSymbol--) | Symbole de départ (caractère) de la symbologie Codabar. | +| [getStopSymbol()](#getStopSymbol--) | Symbole d'arrêt (caractère) de la symbologie Codabar. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setChecksumMode(CodabarChecksumMode value)](#setChecksumMode-com.aspose.barcode.generation.CodabarChecksumMode-) | Définir l'algorithme de somme de contrôle pour les codes-barres Codabar. | +| [setCodabarChecksumMode(CodabarChecksumMode value)](#setCodabarChecksumMode-com.aspose.barcode.generation.CodabarChecksumMode-) | Définir l'algorithme de somme de contrôle pour les codes-barres Codabar. | +| [setCodabarStartSymbol(short value)](#setCodabarStartSymbol-short-) | Symbole de départ (caractère) de la symbologie Codabar. | +| [setCodabarStopSymbol(short value)](#setCodabarStopSymbol-short-) | Symbole d'arrêt (caractère) de la symbologie Codabar. | +| [setStartSymbol(short value)](#setStartSymbol-short-) | Symbole de départ (caractère) de la symbologie Codabar. | +| [setStopSymbol(short value)](#setStopSymbol-short-) | Symbole d'arrêt (caractère) de la symbologie Codabar. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [CodabarParameters](../../com.aspose.barcode.generation/codabarparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getChecksumMode() {#getChecksumMode--} +``` +public final CodabarChecksumMode getChecksumMode() +``` + + +Obtenir l'algorithme de somme de contrôle pour les codes-barres Codabar. Valeur par défaut : CodabarChecksumMode.Mod16. Pour activer le calcul de la somme de contrôle, définissez la valeur EnableChecksum.Yes sur la propriété EnableChecksum. Voir ChecksumMode (\#getChecksumMode.getChecksumMode/\#setChecksumMode.setChecksumMode). + +**Returns:** +[CodabarChecksumMode](../../com.aspose.barcode.generation/codabarchecksummode) - the checksum algorithm for Codabar barcodes. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCodabarChecksumMode() {#getCodabarChecksumMode--} +``` +public final CodabarChecksumMode getCodabarChecksumMode() +``` + + +Obtenir l'algorithme de somme de contrôle pour les codes-barres Codabar. Valeur par défaut : CodabarChecksumMode.Mod16. Pour activer le calcul de la somme de contrôle, définissez la valeur EnableChecksum.Yes sur la propriété EnableChecksum. Voir ChecksumMode (\#getChecksumMode.getChecksumMode/\#setChecksumMode.setChecksumMode). + +**Returns:** +[CodabarChecksumMode](../../com.aspose.barcode.generation/codabarchecksummode) - the checksum algorithm for Codabar barcodes. +### getCodabarStartSymbol() {#getCodabarStartSymbol--} +``` +public final short getCodabarStartSymbol() +``` + + +Symbole de départ (caractère) de la symbologie Codabar. Valeur par défaut : CodabarSymbol.A + +**Returns:** +short +### getCodabarStopSymbol() {#getCodabarStopSymbol--} +``` +public final short getCodabarStopSymbol() +``` + + +Symbole d'arrêt (caractère) de la symbologie Codabar. Valeur par défaut : CodabarSymbol.A + +**Returns:** +short +### getStartSymbol() {#getStartSymbol--} +``` +public final short getStartSymbol() +``` + + +Symbole de départ (caractère) de la symbologie Codabar. Valeur par défaut : CodabarSymbol.A + +**Returns:** +short +### getStopSymbol() {#getStopSymbol--} +``` +public final short getStopSymbol() +``` + + +Symbole d'arrêt (caractère) de la symbologie Codabar. Valeur par défaut : CodabarSymbol.A + +**Returns:** +short +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setChecksumMode(CodabarChecksumMode value) {#setChecksumMode-com.aspose.barcode.generation.CodabarChecksumMode-} +``` +public final void setChecksumMode(CodabarChecksumMode value) +``` + + +Définir l'algorithme de somme de contrôle pour les codes-barres Codabar. Valeur par défaut : CodabarChecksumMode.Mod16. Pour activer le calcul de la somme de contrôle, définissez la valeur EnableChecksum.Yes sur la propriété EnableChecksum. Voir ChecksumMode (\#getChecksumMode.getChecksumMode/\#setChecksumMode.setChecksumMode). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CodabarChecksumMode](../../com.aspose.barcode.generation/codabarchecksummode) | l'algorithme de somme de contrôle pour les codes-barres Codabar. | + +### setCodabarChecksumMode(CodabarChecksumMode value) {#setCodabarChecksumMode-com.aspose.barcode.generation.CodabarChecksumMode-} +``` +public final void setCodabarChecksumMode(CodabarChecksumMode value) +``` + + +Définir l'algorithme de somme de contrôle pour les codes-barres Codabar. Valeur par défaut : CodabarChecksumMode.Mod16. Pour activer le calcul de la somme de contrôle, définissez la valeur EnableChecksum.Yes sur la propriété EnableChecksum. Voir ChecksumMode (\#getChecksumMode.getChecksumMode/\#setChecksumMode.setChecksumMode). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CodabarChecksumMode](../../com.aspose.barcode.generation/codabarchecksummode) | l'algorithme de somme de contrôle pour les codes-barres Codabar. | + +### setCodabarStartSymbol(short value) {#setCodabarStartSymbol-short-} +``` +public final void setCodabarStartSymbol(short value) +``` + + +Symbole de départ (caractère) de la symbologie Codabar. Valeur par défaut : CodabarSymbol.A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | short | | + +### setCodabarStopSymbol(short value) {#setCodabarStopSymbol-short-} +``` +public final void setCodabarStopSymbol(short value) +``` + + +Symbole d'arrêt (caractère) de la symbologie Codabar. Valeur par défaut : CodabarSymbol.A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | short | | + +### setStartSymbol(short value) {#setStartSymbol-short-} +``` +public final void setStartSymbol(short value) +``` + + +Symbole de départ (caractère) de la symbologie Codabar. Valeur par défaut : CodabarSymbol.A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | short | | + +### setStopSymbol(short value) {#setStopSymbol-short-} +``` +public final void setStopSymbol(short value) +``` + + +Symbole d'arrêt (caractère) de la symbologie Codabar. Valeur par défaut : CodabarSymbol.A + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | short | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [CodabarParameters](../../com.aspose.barcode.generation/codabarparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente ce [CodabarParameters](../../com.aspose.barcode.generation/codabarparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/codabarsymbol/_index.md b/french/androidjava/com.aspose.barcode.generation/codabarsymbol/_index.md new file mode 100644 index 000000000..08b462814 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/codabarsymbol/_index.md @@ -0,0 +1,617 @@ +--- +title: CodabarSymbol +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifie le symbole de début ou de fin de la spécification du code-barres Codabar. +type: docs +weight: 23 +url: /fr/androidjava/com.aspose.barcode.generation/codabarsymbol/ +--- +**Inheritance:** +java.lang.Object, com.aspose.ms.System.ValueType, com.aspose.ms.System.Enum +``` +public final class CodabarSymbol extends System.Enum +``` + +Spécifie le symbole de début ou de fin de la spécification du code-barres Codabar. +## Champs + +| Champ | Description | +| --- | --- | +| [A](#A) | Spécifie le caractère A comme symbole de début ou de fin de la spécification du code-barres Codabar. | +| [B](#B) | Spécifie le caractère B comme symbole de début ou de fin de la spécification du code-barres Codabar. | +| [C](#C) | Spécifie le caractère C comme symbole de début ou de fin de la spécification du code-barres Codabar. | +| [D](#D) | Spécifie le caractère D comme symbole de début ou de fin de la spécification du code-barres Codabar. | +| [EnumSeparatorCharArray](#EnumSeparatorCharArray) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [Clone()](#Clone--) | | +| [CloneTo(T that)](#CloneTo-T-) | | +| [CloneTo(System.Enum that)](#CloneTo-com.aspose.ms.System.Enum-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [format(System.Type enumType, Object value, String format)](#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-) | | +| [format(Class enumType, long value, String format)](#format-java.lang.Class----long-java.lang.String-) | | +| [getClass()](#getClass--) | | +| [getCodabarSymbolName(short codabarSymbol)](#getCodabarSymbolName-short-) | | +| [getCodabarSymbolValue(String codabarSymbol)](#getCodabarSymbolValue-java.lang.String-) | | +| [getName(System.Type enumType, Object value)](#getName-com.aspose.ms.System.Type-java.lang.Object-) | | +| [getName(Class enumType, long value)](#getName-java.lang.Class----long-) | | +| [getNames(System.Type enumType)](#getNames-com.aspose.ms.System.Type-) | | +| [getNames(Class enumType)](#getNames-java.lang.Class----) | | +| [getUnderlyingType(System.Type enumType)](#getUnderlyingType-com.aspose.ms.System.Type-) | | +| [getUnderlyingType(Class enumType)](#getUnderlyingType-java.lang.Class----) | | +| [getValue(Class enumType, String name)](#getValue-java.lang.Class----java.lang.String-) | | +| [getValues(System.Type enumType)](#getValues-com.aspose.ms.System.Type-) | | +| [get_Caption()](#get-Caption--) | | +| [get_Value()](#get-Value--) | | +| [hashCode()](#hashCode--) | | +| [isDefined(System.Type enumType, Object value)](#isDefined-com.aspose.ms.System.Type-java.lang.Object-) | | +| [isDefined(System.Type enumType, String value)](#isDefined-com.aspose.ms.System.Type-java.lang.String-) | | +| [isDefined(System.Type enumType, long value)](#isDefined-com.aspose.ms.System.Type-long-) | | +| [isDefined(Class enumType, long value)](#isDefined-java.lang.Class----long-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parse(System.Type enumType, String value)](#parse-com.aspose.ms.System.Type-java.lang.String-) | | +| [parse(System.Type enumType, String value, Boolean ignoreCase)](#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-) | | +| [parse(Class enumType, String value)](#parse-java.lang.Class----java.lang.String-) | | +| [parse(Class enumType, String value, Boolean ignoreCase)](#parse-java.lang.Class----java.lang.String-java.lang.Boolean-) | | +| [register(System.Enum.AbstractEnum e)](#register-com.aspose.ms.System.Enum.AbstractEnum-) | | +| [toObject(System.Type enumType, Object value)](#toObject-com.aspose.ms.System.Type-java.lang.Object-) | | +| [toString()](#toString--) | | +| [toString(Class enumType, long value)](#toString-java.lang.Class----long-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### A {#A} +``` +public static final short A +``` + + +Spécifie le caractère A comme symbole de début ou de fin de la spécification du code-barres Codabar. + +### B {#B} +``` +public static final short B +``` + + +Spécifie le caractère B comme symbole de début ou de fin de la spécification du code-barres Codabar. + +### C {#C} +``` +public static final short C +``` + + +Spécifie le caractère C comme symbole de début ou de fin de la spécification du code-barres Codabar. + +### D {#D} +``` +public static final short D +``` + + +Spécifie le caractère D comme symbole de début ou de fin de la spécification du code-barres Codabar. + +### EnumSeparatorCharArray {#EnumSeparatorCharArray} +``` +public static final char[] EnumSeparatorCharArray +``` + + +### Clone() {#Clone--} +``` +public System.Enum Clone() +``` + + + + +**Returns:** +com.aspose.ms.System.Enum +### CloneTo(T that) {#CloneTo-T-} +``` +public abstract void CloneTo(T that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | T | | + +### CloneTo(System.Enum that) {#CloneTo-com.aspose.ms.System.Enum-} +``` +public void CloneTo(System.Enum that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | com.aspose.ms.System.Enum | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### format(System.Type enumType, Object value, String format) {#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-} +``` +public static String format(System.Type enumType, Object value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### format(Class enumType, long value, String format) {#format-java.lang.Class----long-java.lang.String-} +``` +public static String format(Class enumType, long value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCodabarSymbolName(short codabarSymbol) {#getCodabarSymbolName-short-} +``` +public static String getCodabarSymbolName(short codabarSymbol) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codabarSymbol | short | | + +**Returns:** +java.lang.String +### getCodabarSymbolValue(String codabarSymbol) {#getCodabarSymbolValue-java.lang.String-} +``` +public static short getCodabarSymbolValue(String codabarSymbol) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codabarSymbol | java.lang.String | | + +**Returns:** +short +### getName(System.Type enumType, Object value) {#getName-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static String getName(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.String +### getName(Class enumType, long value) {#getName-java.lang.Class----long-} +``` +public static String getName(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### getNames(System.Type enumType) {#getNames-com.aspose.ms.System.Type-} +``` +public static String[] getNames(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +java.lang.String[] +### getNames(Class enumType) {#getNames-java.lang.Class----} +``` +public static Collection getNames(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.util.Collection +### getUnderlyingType(System.Type enumType) {#getUnderlyingType-com.aspose.ms.System.Type-} +``` +public static System.Type getUnderlyingType(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Type +### getUnderlyingType(Class enumType) {#getUnderlyingType-java.lang.Class----} +``` +public static Class getUnderlyingType(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.lang.Class +### getValue(Class enumType, String name) {#getValue-java.lang.Class----java.lang.String-} +``` +public static long getValue(Class enumType, String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| nom | java.lang.String | | + +**Returns:** +long +### getValues(System.Type enumType) {#getValues-com.aspose.ms.System.Type-} +``` +public static System.Array getValues(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Array +### get_Caption() {#get-Caption--} +``` +public String get_Caption() +``` + + + + +**Returns:** +java.lang.String +### get_Value() {#get-Value--} +``` +public long get_Value() +``` + + + + +**Returns:** +long +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isDefined(System.Type enumType, Object value) {#isDefined-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static boolean isDefined(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +boolean +### isDefined(System.Type enumType, String value) {#isDefined-com.aspose.ms.System.Type-java.lang.String-} +``` +public static boolean isDefined(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +boolean +### isDefined(System.Type enumType, long value) {#isDefined-com.aspose.ms.System.Type-long-} +``` +public static boolean isDefined(System.Type enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | long | | + +**Returns:** +boolean +### isDefined(Class enumType, long value) {#isDefined-java.lang.Class----long-} +``` +public static boolean isDefined(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parse(System.Type enumType, String value) {#parse-com.aspose.ms.System.Type-java.lang.String-} +``` +public static long parse(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(System.Type enumType, String value, Boolean ignoreCase) {#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-} +``` +public static long parse(System.Type enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### parse(Class enumType, String value) {#parse-java.lang.Class----java.lang.String-} +``` +public static long parse(Class enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(Class enumType, String value, Boolean ignoreCase) {#parse-java.lang.Class----java.lang.String-java.lang.Boolean-} +``` +public static long parse(Class enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### register(System.Enum.AbstractEnum e) {#register-com.aspose.ms.System.Enum.AbstractEnum-} +``` +public static void register(System.Enum.AbstractEnum e) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| e | com.aspose.ms.System.Enum.AbstractEnum | | + +### toObject(System.Type enumType, Object value) {#toObject-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static Object toObject(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.Object +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### toString(Class enumType, long value) {#toString-java.lang.Class----long-} +``` +public static String toString(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/codablockparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/codablockparameters/_index.md new file mode 100644 index 000000000..cc68c540c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/codablockparameters/_index.md @@ -0,0 +1,199 @@ +--- +title: CodablockParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres Codablock. +type: docs +weight: 24 +url: /fr/androidjava/com.aspose.barcode.generation/codablockparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class CodablockParameters +``` + +Paramètres Codablock. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio()](#getAspectRatio--) | Ratio hauteur/largeur du module du code-barres 2D. | +| [getClass()](#getClass--) | | +| [getColumns()](#getColumns--) | Nombre de colonnes. | +| [getRows()](#getRows--) | Nombre de lignes. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAspectRatio(float value)](#setAspectRatio-float-) | Ratio hauteur/largeur du module du code-barres 2D. | +| [setColumns(int value)](#setColumns-int-) | Nombre de colonnes. | +| [setRows(int value)](#setRows-int-) | Nombre de lignes. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce CodablockParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAspectRatio() {#getAspectRatio--} +``` +public float getAspectRatio() +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getColumns() {#getColumns--} +``` +public int getColumns() +``` + + +Nombre de colonnes. + +**Returns:** +int +### getRows() {#getRows--} +``` +public int getRows() +``` + + +Nombre de lignes. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAspectRatio(float value) {#setAspectRatio-float-} +``` +public void setAspectRatio(float value) +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setColumns(int value) {#setColumns-int-} +``` +public void setColumns(int value) +``` + + +Nombre de colonnes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setRows(int value) {#setRows-int-} +``` +public void setRows(int value) +``` + + +Nombre de lignes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce CodablockParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ce CodablockParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/code128emulation/_index.md b/french/androidjava/com.aspose.barcode.generation/code128emulation/_index.md new file mode 100644 index 000000000..650b2b931 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/code128emulation/_index.md @@ -0,0 +1,285 @@ +--- +title: Code128Emulation +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 79 +url: /fr/androidjava/com.aspose.barcode.generation/code128emulation/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum Code128Emulation extends Enum +``` +## Champs + +| Champ | Description | +| --- | --- | +| [CODE_903](#CODE-903) | | +| [CODE_904](#CODE-904) | | +| [CODE_905](#CODE-905) | | +| [NONE](#NONE) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(int arg0)](#valueOf-int-) | | +| [valueOf(String arg0)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CODE_903 {#CODE-903} +``` +public static final Code128Emulation CODE_903 +``` + + +### CODE_904 {#CODE-904} +``` +public static final Code128Emulation CODE_904 +``` + + +### CODE_905 {#CODE-905} +``` +public static final Code128Emulation CODE_905 +``` + + +### NONE {#NONE} +``` +public static final Code128Emulation NONE +``` + + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(int arg0) {#valueOf-int-} +``` +public static Code128Emulation valueOf(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +com.aspose.barcode.generation.Code128Emulation +### valueOf(String arg0) {#valueOf-java.lang.String-} +``` +public static Code128Emulation valueOf(String arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.String | | + +**Returns:** +com.aspose.barcode.generation.Code128Emulation +### values() {#values--} +``` +public static Code128Emulation[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.Code128Emulation[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/code128encodemode/_index.md b/french/androidjava/com.aspose.barcode.generation/code128encodemode/_index.md new file mode 100644 index 000000000..9e7fc789a --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/code128encodemode/_index.md @@ -0,0 +1,339 @@ +--- +title: Code128EncodeMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode d'encodage pour les codes-barres Code128. +type: docs +weight: 80 +url: /fr/androidjava/com.aspose.barcode.generation/code128encodemode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum Code128EncodeMode extends Enum +``` + +Encoding mode for Code128 barcodes. Code 128 specification. + +-------------------- + +> ``` +> Following code demonstrates how to generate code 128 with different encodings +> +> +> //Generate code 128 with ISO 15417 encoding +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.CODE_128, "ABCD1234567890"); +> generator.getParameters().getBarcode().getCode128().setCode128EncodeMode(Code128EncodeMode.AUTO); +> generator.save(filePath, BarCodeImageFormat.PNG); +> +> //Generate code 128 only with Codeset A encoding +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.CODE_128, "ABCD1234567890"); +> generator.getParameters().getBarcode().getCode128().setCode128EncodeMode(Code128EncodeMode.CODE_A); +> generator.save(filePath, BarCodeImageFormat.PNG); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Encode codetext in classic ISO 15417 mode. | +| [CODE_A](#CODE-A) | Encode codetext only in 128A codeset. | +| [CODE_AB](#CODE-AB) | Encode codetext only in 128A and 128B codesets. | +| [CODE_AC](#CODE-AC) | Encode codetext only in 128A and 128C codesets. | +| [CODE_B](#CODE-B) | Encode codetext only in 128B codeset. | +| [CODE_BC](#CODE-BC) | Encode codetext only in 128B and 128C codesets. | +| [CODE_C](#CODE-C) | Encode codetext only in 128C codeset. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(int value)](#valueOf-int-) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final Code128EncodeMode AUTO +``` + + +Encode codetext in classic ISO 15417 mode. The mode should be used in all ordinary cases. + +### CODE_A {#CODE-A} +``` +public static final Code128EncodeMode CODE_A +``` + + +Encode codetext only in 128A codeset. + +### CODE_AB {#CODE-AB} +``` +public static final Code128EncodeMode CODE_AB +``` + + +Encode codetext only in 128A and 128B codesets. + +### CODE_AC {#CODE-AC} +``` +public static final Code128EncodeMode CODE_AC +``` + + +Encode codetext only in 128A and 128C codesets. + +### CODE_B {#CODE-B} +``` +public static final Code128EncodeMode CODE_B +``` + + +Encode codetext only in 128B codeset. + +### CODE_BC {#CODE-BC} +``` +public static final Code128EncodeMode CODE_BC +``` + + +Encode codetext only in 128B and 128C codesets. + +### CODE_C {#CODE-C} +``` +public static final Code128EncodeMode CODE_C +``` + + +Encode codetext only in 128C codeset. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(int value) {#valueOf-int-} +``` +public static Code128EncodeMode valueOf(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static Code128EncodeMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) +### values() {#values--} +``` +public static Code128EncodeMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.Code128EncodeMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/code128parameters/_index.md b/french/androidjava/com.aspose.barcode.generation/code128parameters/_index.md new file mode 100644 index 000000000..761739b7c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/code128parameters/_index.md @@ -0,0 +1,174 @@ +--- +title: Code128Parameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres Code128. +type: docs +weight: 25 +url: /fr/androidjava/com.aspose.barcode.generation/code128parameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class Code128Parameters +``` + +Paramètres Code128. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getCode128EncodeMode()](#getCode128EncodeMode--) | Obtient un mode d'encodage Code128. | +| [getEncodeMode()](#getEncodeMode--) | Obtient un mode d'encodage Code128. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setCode128EncodeMode(Code128EncodeMode value)](#setCode128EncodeMode-com.aspose.barcode.generation.Code128EncodeMode-) | Définit un mode d'encodage Code128. | +| [setEncodeMode(Code128EncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.Code128EncodeMode-) | Définit un mode d'encodage Code128. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [Code128Parameters](../../com.aspose.barcode.generation/code128parameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCode128EncodeMode() {#getCode128EncodeMode--} +``` +public final Code128EncodeMode getCode128EncodeMode() +``` + + +Obtient un mode d'encodage Code128. Valeur par défaut : Code128EncodeMode.Auto + +**Returns:** +[Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) - a Code128 encode mode. +### getEncodeMode() {#getEncodeMode--} +``` +public final Code128EncodeMode getEncodeMode() +``` + + +Obtient un mode d'encodage Code128. Valeur par défaut : Code128EncodeMode.Auto + +**Returns:** +[Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) - a Code128 encode mode. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setCode128EncodeMode(Code128EncodeMode value) {#setCode128EncodeMode-com.aspose.barcode.generation.Code128EncodeMode-} +``` +public final void setCode128EncodeMode(Code128EncodeMode value) +``` + + +Définit un mode d'encodage Code128. Valeur par défaut : Code128EncodeMode.Auto + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) | un mode d'encodage Code128. | + +### setEncodeMode(Code128EncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.Code128EncodeMode-} +``` +public final void setEncodeMode(Code128EncodeMode value) +``` + + +Définit un mode d'encodage Code128. Valeur par défaut : Code128EncodeMode.Auto + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) | un mode d'encodage Code128. | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [Code128Parameters](../../com.aspose.barcode.generation/code128parameters). + +**Returns:** +java.lang.String - Une chaîne qui représente ce [Code128Parameters](../../com.aspose.barcode.generation/code128parameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/code16kparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/code16kparameters/_index.md new file mode 100644 index 000000000..3375b7509 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/code16kparameters/_index.md @@ -0,0 +1,199 @@ +--- +title: Code16KParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres Code16K. +type: docs +weight: 26 +url: /fr/androidjava/com.aspose.barcode.generation/code16kparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class Code16KParameters +``` + +Paramètres Code16K. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio()](#getAspectRatio--) | Ratio hauteur/largeur du module du code-barres 2D. | +| [getClass()](#getClass--) | | +| [getQuietZoneLeftCoef()](#getQuietZoneLeftCoef--) | Taille de la zone silencieuse gauche en xDimension. | +| [getQuietZoneRightCoef()](#getQuietZoneRightCoef--) | Taille de la zone silencieuse droite en xDimension. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAspectRatio(float value)](#setAspectRatio-float-) | Ratio hauteur/largeur du module du code-barres 2D. | +| [setQuietZoneLeftCoef(int value)](#setQuietZoneLeftCoef-int-) | Taille de la zone silencieuse gauche en xDimension. | +| [setQuietZoneRightCoef(int value)](#setQuietZoneRightCoef-int-) | Taille de la zone silencieuse droite en xDimension. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce Code16KParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAspectRatio() {#getAspectRatio--} +``` +public float getAspectRatio() +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getQuietZoneLeftCoef() {#getQuietZoneLeftCoef--} +``` +public int getQuietZoneLeftCoef() +``` + + +Taille de la zone silencieuse gauche en xDimension. Valeur par défaut : 10, signifiant que si xDimension = 2 px alors la zone silencieuse gauche sera de 20 px. + +**Returns:** +int +### getQuietZoneRightCoef() {#getQuietZoneRightCoef--} +``` +public int getQuietZoneRightCoef() +``` + + +Taille de la zone silencieuse droite en xDimension. Valeur par défaut : 1, signifiant que si xDimension = 2 px alors la zone silencieuse droite sera de 2 px. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAspectRatio(float value) {#setAspectRatio-float-} +``` +public void setAspectRatio(float value) +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setQuietZoneLeftCoef(int value) {#setQuietZoneLeftCoef-int-} +``` +public void setQuietZoneLeftCoef(int value) +``` + + +Taille de la zone silencieuse gauche en xDimension. Valeur par défaut : 10, signifiant que si xDimension = 2 px alors la zone silencieuse gauche sera de 20 px. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setQuietZoneRightCoef(int value) {#setQuietZoneRightCoef-int-} +``` +public void setQuietZoneRightCoef(int value) +``` + + +Taille de la zone silencieuse droite en xDimension. Valeur par défaut : 1, signifiant que si xDimension = 2 px alors la zone silencieuse droite sera de 2 px. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce Code16KParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ce Code16KParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/codelocation/_index.md b/french/androidjava/com.aspose.barcode.generation/codelocation/_index.md new file mode 100644 index 000000000..e8dbd3fc2 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/codelocation/_index.md @@ -0,0 +1,270 @@ +--- +title: CodeLocation +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Emplacement du texte de code +type: docs +weight: 81 +url: /fr/androidjava/com.aspose.barcode.generation/codelocation/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum CodeLocation extends Enum +``` + +Emplacement du texte de code +## Champs + +| Champ | Description | +| --- | --- | +| [ABOVE](#ABOVE) | Texte du code au-dessus du code-barres. | +| [BELOW](#BELOW) | Texte du code en dessous du code-barres. | +| [NONE](#NONE) | Masquer le texte du code. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ABOVE {#ABOVE} +``` +public static final CodeLocation ABOVE +``` + + +Texte du code au-dessus du code-barres. + +### BELOW {#BELOW} +``` +public static final CodeLocation BELOW +``` + + +Texte du code en dessous du code-barres. + +### NONE {#NONE} +``` +public static final CodeLocation NONE +``` + + +Masquer le texte du code. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static CodeLocation valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[CodeLocation](../../com.aspose.barcode.generation/codelocation) +### values() {#values--} +``` +public static CodeLocation[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.CodeLocation[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/codetextparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/codetextparameters/_index.md new file mode 100644 index 000000000..f113f3e03 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/codetextparameters/_index.md @@ -0,0 +1,344 @@ +--- +title: CodetextParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres de texte de code. +type: docs +weight: 27 +url: /fr/androidjava/com.aspose.barcode.generation/codetextparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class CodetextParameters +``` + +Paramètres de texte de code. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [CodetextParameters()](#CodetextParameters--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAlignment()](#getAlignment--) | Obtient l'alignement du texte de code. | +| [getClass()](#getClass--) | | +| [getColor()](#getColor--) | Spécifie la couleur du texte de code affiché. | +| [getFont()](#getFont--) | Spécifie la police du texte de code affiché. | +| [getFontMode()](#getFontMode--) | Spécifie le mode de police. | +| [getLocation()](#getLocation--) | Spécifie l'emplacement du texte de code affiché, définissez à CodeLocation.None pour masquer le texte de code. | +| | [getNoWrap()](#getNoWrap--) | ``` | +Spécifie les retours à la ligne (césures) dans le texte. +``` | +| [getSpace()](#getSpace--) | Space between the CodeText and the BarCode in Unit value. | +| [getTwoDDisplayText()](#getTwoDDisplayText--) | Text that will be displayed instead of codetext in 2D barcodes. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAlignment(TextAlignment value)](#setAlignment-com.aspose.barcode.generation.TextAlignment-) | Sets the alignment of the code text. | +| [setColor(int value)](#setColor-int-) | Specify the displaying CodeText's Color. | +| [setFont(FontUnit value)](#setFont-com.aspose.barcode.generation.FontUnit-) | Specify the displaying CodeText's font. | +| [setFontMode(FontMode value)](#setFontMode-com.aspose.barcode.generation.FontMode-) | Specify FontMode. | +| [setLocation(CodeLocation value)](#setLocation-com.aspose.barcode.generation.CodeLocation-) | Specify the displaying CodeText Location, set to CodeLocation.None to hide CodeText. | +| [setNoWrap(boolean value)](#setNoWrap-boolean-) | ``` +Specify word wraps (line breaks) within text +``` | +| [setSpace(Unit value)](#setSpace-com.aspose.barcode.generation.Unit-) | Espace entre le texte de code et le code-barres en valeur d'unité. | +| [setTwoDDisplayText(String value)](#setTwoDDisplayText-java.lang.String-) | Texte qui sera affiché à la place du texte de code dans les codes-barres 2D. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible de cet objet CodetextParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CodetextParameters() {#CodetextParameters--} +``` +public CodetextParameters() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAlignment() {#getAlignment--} +``` +public TextAlignment getAlignment() +``` + + +Obtient l'alignement du texte de code. Valeur par défaut : TextAlignment.CENTER. + +**Returns:** +[TextAlignment](../../com.aspose.barcode.generation/textalignment) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getColor() {#getColor--} +``` +public int getColor() +``` + + +Spécifiez la couleur du texte du code affiché. Valeur par défaut : Color.BLACK. + +**Returns:** +int +### getFont() {#getFont--} +``` +public FontUnit getFont() +``` + + +Spécifiez la police du texte du code affiché. Valeur par défaut : Arial 5pt régulier. Ignoré si FontMode est défini sur FontMode.AUTO. + +**Returns:** +[FontUnit](../../com.aspose.barcode.generation/fontunit) +### getFontMode() {#getFontMode--} +``` +public FontMode getFontMode() +``` + + +Spécifiez le FontMode. Si FontMode est défini sur Auto, la taille de la police sera calculée automatiquement en fonction de la valeur xDimension. Il est recommandé d’utiliser FontMode.AUTO notamment dans AutoSizeMode.NEAREST ou AutoSizeMode.INTERPOLATION. Valeur par défaut : FontMode.AUTO. + +**Returns:** +[FontMode](../../com.aspose.barcode.generation/fontmode) +### getLocation() {#getLocation--} +``` +public CodeLocation getLocation() +``` + + +Spécifiez l’emplacement du texte du code affiché, définissez CodeLocation.None pour masquer le texte du code. Valeur par défaut : CodeLocation.BELOW pour les codes-barres 1D et CodeLocation.None pour les codes-barres 2D. + +**Returns:** +[CodeLocation](../../com.aspose.barcode.generation/codelocation) +### getNoWrap() {#getNoWrap--} +``` +public boolean getNoWrap() +``` + + +``` +Specify word wraps (line breaks) within text. + Default value: false. +``` + +**Returns:** +boolean +### getSpace() {#getSpace--} +``` +public Unit getSpace() +``` + + +Espace entre le texte du code et le code-barres en valeur d’unité. Valeur par défaut : 2pt. Ignoré pour EAN8, EAN13, UPCE, UPCA, ISBN, ISMN, ISSN, UpcaGs1DatabarCoupon. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getTwoDDisplayText() {#getTwoDDisplayText--} +``` +public String getTwoDDisplayText() +``` + + +Texte qui sera affiché à la place du texte du code dans les codes-barres 2D. Utilisé pour : Aztec, Pdf417, DataMatrix, QR, MaxiCode, DotCode. + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAlignment(TextAlignment value) {#setAlignment-com.aspose.barcode.generation.TextAlignment-} +``` +public void setAlignment(TextAlignment value) +``` + + +Définit l’alignement du texte du code. Valeur par défaut : TextAlignment.CENTER. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [TextAlignment](../../com.aspose.barcode.generation/textalignment) | | + +### setColor(int value) {#setColor-int-} +``` +public void setColor(int value) +``` + + +Spécifiez la couleur du texte du code affiché. Valeur par défaut : Color.BLACK. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setFont(FontUnit value) {#setFont-com.aspose.barcode.generation.FontUnit-} +``` +public void setFont(FontUnit value) +``` + + +Spécifiez la police du texte du code affiché. Valeur par défaut : Arial 5pt régulier. Ignoré si FontMode est défini sur FontMode.AUTO. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [FontUnit](../../com.aspose.barcode.generation/fontunit) | | + +### setFontMode(FontMode value) {#setFontMode-com.aspose.barcode.generation.FontMode-} +``` +public void setFontMode(FontMode value) +``` + + +Spécifiez le FontMode. Si FontMode est défini sur Auto, la taille de la police sera calculée automatiquement en fonction de la valeur xDimension. Il est recommandé d’utiliser FontMode.AUTO notamment dans AutoSizeMode.NEAREST ou AutoSizeMode.INTERPOLATION. Valeur par défaut : FontMode.AUTO. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [FontMode](../../com.aspose.barcode.generation/fontmode) | | + +### setLocation(CodeLocation value) {#setLocation-com.aspose.barcode.generation.CodeLocation-} +``` +public void setLocation(CodeLocation value) +``` + + +Spécifiez l’emplacement du texte du code affiché, définissez CodeLocation.None pour masquer le texte du code. Valeur par défaut : CodeLocation.BELOW pour les codes-barres 1D et CodeLocation.None pour les codes-barres 2D. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CodeLocation](../../com.aspose.barcode.generation/codelocation) | | + +### setNoWrap(boolean value) {#setNoWrap-boolean-} +``` +public void setNoWrap(boolean value) +``` + + +``` +Specify word wraps (line breaks) within text +``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setSpace(Unit value) {#setSpace-com.aspose.barcode.generation.Unit-} +``` +public void setSpace(Unit value) +``` + + +Espace entre le texte du code et le code-barres en valeur d’unité. Valeur par défaut : 2pt. Ignoré pour EAN8, EAN13, UPCE, UPCA, ISBN, ISMN, ISSN, UpcaGs1DatabarCoupon. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### setTwoDDisplayText(String value) {#setTwoDDisplayText-java.lang.String-} +``` +public void setTwoDDisplayText(String value) +``` + + +Texte qui sera affiché à la place du texte du code dans les codes-barres 2D. Utilisé pour : Aztec, Pdf417, DataMatrix, QR, MaxiCode, DotCode. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible de cet objet CodetextParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ces CodetextParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/codetextparametersinternal/_index.md b/french/androidjava/com.aspose.barcode.generation/codetextparametersinternal/_index.md new file mode 100644 index 000000000..4cd2ffb46 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/codetextparametersinternal/_index.md @@ -0,0 +1,252 @@ +--- +title: CodetextParametersInternal +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 28 +url: /fr/androidjava/com.aspose.barcode.generation/codetextparametersinternal/ +--- +**Inheritance:** +java.lang.Object +``` +public class CodetextParametersInternal +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [CodetextParametersInternal()](#CodetextParametersInternal--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [CODETEXT_MAX_HEIGHT_PERCENT](#CODETEXT-MAX-HEIGHT-PERCENT) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBackColor(CodetextParameters codetextParameters)](#getBackColor-com.aspose.barcode.generation.CodetextParameters-) | | +| [getCMYKBackColor(CodetextParameters codetextParameters)](#getCMYKBackColor-com.aspose.barcode.generation.CodetextParameters-) | | +| [getCMYKColor(CodetextParameters codetextParameters)](#getCMYKColor-com.aspose.barcode.generation.CodetextParameters-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBackColor(CodetextParameters codetextParameters, int value)](#setBackColor-com.aspose.barcode.generation.CodetextParameters-int-) | | +| [setCMYKBackColor(CodetextParameters codetextParameters, CMYKColor value)](#setCMYKBackColor-com.aspose.barcode.generation.CodetextParameters-com.aspose.barcode.generation.CMYKColor-) | | +| [setCMYKColor(CodetextParameters codetextParameters, CMYKColor value)](#setCMYKColor-com.aspose.barcode.generation.CodetextParameters-com.aspose.barcode.generation.CMYKColor-) | | +| [setChecksum(CodetextParameters codetextParameters, String checksum)](#setChecksum-com.aspose.barcode.generation.CodetextParameters-java.lang.String-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CodetextParametersInternal() {#CodetextParametersInternal--} +``` +public CodetextParametersInternal() +``` + + +### CODETEXT_MAX_HEIGHT_PERCENT {#CODETEXT-MAX-HEIGHT-PERCENT} +``` +public static final float CODETEXT_MAX_HEIGHT_PERCENT +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBackColor(CodetextParameters codetextParameters) {#getBackColor-com.aspose.barcode.generation.CodetextParameters-} +``` +public static int getBackColor(CodetextParameters codetextParameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codetextParameters | [CodetextParameters](../../com.aspose.barcode.generation/codetextparameters) | | + +**Returns:** +int +### getCMYKBackColor(CodetextParameters codetextParameters) {#getCMYKBackColor-com.aspose.barcode.generation.CodetextParameters-} +``` +public static CMYKColor getCMYKBackColor(CodetextParameters codetextParameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codetextParameters | [CodetextParameters](../../com.aspose.barcode.generation/codetextparameters) | | + +**Returns:** +[CMYKColor](../../com.aspose.barcode.generation/cmykcolor) +### getCMYKColor(CodetextParameters codetextParameters) {#getCMYKColor-com.aspose.barcode.generation.CodetextParameters-} +``` +public static CMYKColor getCMYKColor(CodetextParameters codetextParameters) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codetextParameters | [CodetextParameters](../../com.aspose.barcode.generation/codetextparameters) | | + +**Returns:** +[CMYKColor](../../com.aspose.barcode.generation/cmykcolor) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBackColor(CodetextParameters codetextParameters, int value) {#setBackColor-com.aspose.barcode.generation.CodetextParameters-int-} +``` +public static void setBackColor(CodetextParameters codetextParameters, int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codetextParameters | [CodetextParameters](../../com.aspose.barcode.generation/codetextparameters) | | +| valeur | int | | + +### setCMYKBackColor(CodetextParameters codetextParameters, CMYKColor value) {#setCMYKBackColor-com.aspose.barcode.generation.CodetextParameters-com.aspose.barcode.generation.CMYKColor-} +``` +public static void setCMYKBackColor(CodetextParameters codetextParameters, CMYKColor value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codetextParameters | [CodetextParameters](../../com.aspose.barcode.generation/codetextparameters) | | +| value | [CMYKColor](../../com.aspose.barcode.generation/cmykcolor) | | + +### setCMYKColor(CodetextParameters codetextParameters, CMYKColor value) {#setCMYKColor-com.aspose.barcode.generation.CodetextParameters-com.aspose.barcode.generation.CMYKColor-} +``` +public static void setCMYKColor(CodetextParameters codetextParameters, CMYKColor value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codetextParameters | [CodetextParameters](../../com.aspose.barcode.generation/codetextparameters) | | +| value | [CMYKColor](../../com.aspose.barcode.generation/cmykcolor) | | + +### setChecksum(CodetextParameters codetextParameters, String checksum) {#setChecksum-com.aspose.barcode.generation.CodetextParameters-java.lang.String-} +``` +public static void setChecksum(CodetextParameters codetextParameters, String checksum) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| codetextParameters | [CodetextParameters](../../com.aspose.barcode.generation/codetextparameters) | | +| checksum | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/complexbarcode/_index.md b/french/androidjava/com.aspose.barcode.generation/complexbarcode/_index.md new file mode 100644 index 000000000..d4c24dab1 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/complexbarcode/_index.md @@ -0,0 +1,158 @@ +--- +title: ComplexBarcode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 29 +url: /fr/androidjava/com.aspose.barcode.generation/complexbarcode/ +--- +**Inheritance:** +java.lang.Object +``` +public class ComplexBarcode +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [ComplexBarcode()](#ComplexBarcode--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDrawSwissCross()](#getDrawSwissCross--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setDrawSwissCross(boolean value)](#setDrawSwissCross-boolean-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ComplexBarcode() {#ComplexBarcode--} +``` +public ComplexBarcode() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDrawSwissCross() {#getDrawSwissCross--} +``` +public boolean getDrawSwissCross() +``` + + + + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setDrawSwissCross(boolean value) {#setDrawSwissCross-boolean-} +``` +public void setDrawSwissCross(boolean value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/constparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/constparameters/_index.md new file mode 100644 index 000000000..80fa35edb --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/constparameters/_index.md @@ -0,0 +1,522 @@ +--- +title: ConstParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 30 +url: /fr/androidjava/com.aspose.barcode.generation/constparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public final class ConstParameters +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [ConstParameters()](#ConstParameters--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [AUSTRALIA_ABAR_MAX_MM](#AUSTRALIA-ABAR-MAX-MM) | | +| [AUSTRALIA_ABAR_MIN_MM](#AUSTRALIA-ABAR-MIN-MM) | | +| [AUSTRALIA_ABAR_MM](#AUSTRALIA-ABAR-MM) | | +| [AUSTRALIA_BARWIDTH_MAX_MM](#AUSTRALIA-BARWIDTH-MAX-MM) | | +| [AUSTRALIA_BARWIDTH_MIN_MM](#AUSTRALIA-BARWIDTH-MIN-MM) | | +| [AUSTRALIA_BARWIDTH_MM](#AUSTRALIA-BARWIDTH-MM) | | +| [AUSTRALIA_FBAR_MAX_MM](#AUSTRALIA-FBAR-MAX-MM) | | +| [AUSTRALIA_FBAR_MIN_MM](#AUSTRALIA-FBAR-MIN-MM) | | +| [AUSTRALIA_FBAR_MM](#AUSTRALIA-FBAR-MM) | | +| [AUSTRALIA_TBAR_MAX_MM](#AUSTRALIA-TBAR-MAX-MM) | | +| [AUSTRALIA_TBAR_MIN_MM](#AUSTRALIA-TBAR-MIN-MM) | | +| [AUSTRALIA_TBAR_MM](#AUSTRALIA-TBAR-MM) | | +| [CAPTION_ABOVE_DEFAULT](#CAPTION-ABOVE-DEFAULT) | | +| [CODE16K_FBAR_INCH](#CODE16K-FBAR-INCH) | | +| [CODE16K_FBAR_MAX_INCH](#CODE16K-FBAR-MAX-INCH) | | +| [CODE16K_FBAR_MIN_INCH](#CODE16K-FBAR-MIN-INCH) | | +| [ONECODE_FBAR_INCH](#ONECODE-FBAR-INCH) | | +| [ONECODE_FBAR_MAX_INCH](#ONECODE-FBAR-MAX-INCH) | | +| [ONECODE_FBAR_MIN_INCH](#ONECODE-FBAR-MIN-INCH) | | +| [OVERFLOW1](#OVERFLOW1) | | +| [OVERFLOW2](#OVERFLOW2) | | +| [POSTNET_BARWIDTH_INCH](#POSTNET-BARWIDTH-INCH) | | +| [POSTNET_BARWIDTH_MAX_INCH](#POSTNET-BARWIDTH-MAX-INCH) | | +| [POSTNET_BARWIDTH_MIN_INCH](#POSTNET-BARWIDTH-MIN-INCH) | | +| [POSTNET_SHORTBAR_INCH](#POSTNET-SHORTBAR-INCH) | | +| [POSTNET_SHORTBAR_MAX_INCH](#POSTNET-SHORTBAR-MAX-INCH) | | +| [POSTNET_SHORTBAR_MIN_INCH](#POSTNET-SHORTBAR-MIN-INCH) | | +| [POSTNET_TALLBAR_INCH](#POSTNET-TALLBAR-INCH) | | +| [POSTNET_TALLBAR_MAX_INCH](#POSTNET-TALLBAR-MAX-INCH) | | +| [POSTNET_TALLBAR_MIN_INCH](#POSTNET-TALLBAR-MIN-INCH) | | +| [RM4SCC_ABAR_MAX_MM](#RM4SCC-ABAR-MAX-MM) | | +| [RM4SCC_ABAR_MIN_MM](#RM4SCC-ABAR-MIN-MM) | | +| [RM4SCC_ABAR_MM](#RM4SCC-ABAR-MM) | | +| [RM4SCC_BARWIDTH_MAX_MM](#RM4SCC-BARWIDTH-MAX-MM) | | +| [RM4SCC_BARWIDTH_MIN_MM](#RM4SCC-BARWIDTH-MIN-MM) | | +| [RM4SCC_BARWIDTH_MM](#RM4SCC-BARWIDTH-MM) | | +| [RM4SCC_FBAR_MAX_MM](#RM4SCC-FBAR-MAX-MM) | | +| [RM4SCC_FBAR_MIN_MM](#RM4SCC-FBAR-MIN-MM) | | +| [RM4SCC_FBAR_MM](#RM4SCC-FBAR-MM) | | +| [RM4SCC_TBAR_MAX_MM](#RM4SCC-TBAR-MAX-MM) | | +| [RM4SCC_TBAR_MIN_MM](#RM4SCC-TBAR-MIN-MM) | | +| [RM4SCC_TBAR_MM](#RM4SCC-TBAR-MM) | | +| [SINGAPORE_ABAR_MAX_MM](#SINGAPORE-ABAR-MAX-MM) | | +| [SINGAPORE_ABAR_MIN_MM](#SINGAPORE-ABAR-MIN-MM) | | +| [SINGAPORE_ABAR_MM](#SINGAPORE-ABAR-MM) | | +| [SINGAPORE_BARWIDTH_MAX_MM](#SINGAPORE-BARWIDTH-MAX-MM) | | +| [SINGAPORE_BARWIDTH_MIN_MM](#SINGAPORE-BARWIDTH-MIN-MM) | | +| [SINGAPORE_BARWIDTH_MM](#SINGAPORE-BARWIDTH-MM) | | +| [SINGAPORE_FBAR_MAX_MM](#SINGAPORE-FBAR-MAX-MM) | | +| [SINGAPORE_FBAR_MIN_MM](#SINGAPORE-FBAR-MIN-MM) | | +| [SINGAPORE_FBAR_MM](#SINGAPORE-FBAR-MM) | | +| [SINGAPORE_TBAR_MAX_MM](#SINGAPORE-TBAR-MAX-MM) | | +| [SINGAPORE_TBAR_MIN_MM](#SINGAPORE-TBAR-MIN-MM) | | +| [SINGAPORE_TBAR_MM](#SINGAPORE-TBAR-MM) | | +| [STRING_ADJUST](#STRING-ADJUST) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ConstParameters() {#ConstParameters--} +``` +public ConstParameters() +``` + + +### AUSTRALIA_ABAR_MAX_MM {#AUSTRALIA-ABAR-MAX-MM} +``` +public static final float AUSTRALIA_ABAR_MAX_MM +``` + + +### AUSTRALIA_ABAR_MIN_MM {#AUSTRALIA-ABAR-MIN-MM} +``` +public static final float AUSTRALIA_ABAR_MIN_MM +``` + + +### AUSTRALIA_ABAR_MM {#AUSTRALIA-ABAR-MM} +``` +public static final float AUSTRALIA_ABAR_MM +``` + + +### AUSTRALIA_BARWIDTH_MAX_MM {#AUSTRALIA-BARWIDTH-MAX-MM} +``` +public static final float AUSTRALIA_BARWIDTH_MAX_MM +``` + + +### AUSTRALIA_BARWIDTH_MIN_MM {#AUSTRALIA-BARWIDTH-MIN-MM} +``` +public static final float AUSTRALIA_BARWIDTH_MIN_MM +``` + + +### AUSTRALIA_BARWIDTH_MM {#AUSTRALIA-BARWIDTH-MM} +``` +public static final float AUSTRALIA_BARWIDTH_MM +``` + + +### AUSTRALIA_FBAR_MAX_MM {#AUSTRALIA-FBAR-MAX-MM} +``` +public static final float AUSTRALIA_FBAR_MAX_MM +``` + + +### AUSTRALIA_FBAR_MIN_MM {#AUSTRALIA-FBAR-MIN-MM} +``` +public static final float AUSTRALIA_FBAR_MIN_MM +``` + + +### AUSTRALIA_FBAR_MM {#AUSTRALIA-FBAR-MM} +``` +public static final float AUSTRALIA_FBAR_MM +``` + + +### AUSTRALIA_TBAR_MAX_MM {#AUSTRALIA-TBAR-MAX-MM} +``` +public static final float AUSTRALIA_TBAR_MAX_MM +``` + + +### AUSTRALIA_TBAR_MIN_MM {#AUSTRALIA-TBAR-MIN-MM} +``` +public static final float AUSTRALIA_TBAR_MIN_MM +``` + + +### AUSTRALIA_TBAR_MM {#AUSTRALIA-TBAR-MM} +``` +public static final float AUSTRALIA_TBAR_MM +``` + + +### CAPTION_ABOVE_DEFAULT {#CAPTION-ABOVE-DEFAULT} +``` +public static final String CAPTION_ABOVE_DEFAULT +``` + + +### CODE16K_FBAR_INCH {#CODE16K-FBAR-INCH} +``` +public static final float CODE16K_FBAR_INCH +``` + + +### CODE16K_FBAR_MAX_INCH {#CODE16K-FBAR-MAX-INCH} +``` +public static final float CODE16K_FBAR_MAX_INCH +``` + + +### CODE16K_FBAR_MIN_INCH {#CODE16K-FBAR-MIN-INCH} +``` +public static final float CODE16K_FBAR_MIN_INCH +``` + + +### ONECODE_FBAR_INCH {#ONECODE-FBAR-INCH} +``` +public static final float ONECODE_FBAR_INCH +``` + + +### ONECODE_FBAR_MAX_INCH {#ONECODE-FBAR-MAX-INCH} +``` +public static final float ONECODE_FBAR_MAX_INCH +``` + + +### ONECODE_FBAR_MIN_INCH {#ONECODE-FBAR-MIN-INCH} +``` +public static final float ONECODE_FBAR_MIN_INCH +``` + + +### OVERFLOW1 {#OVERFLOW1} +``` +public static final int OVERFLOW1 +``` + + +### OVERFLOW2 {#OVERFLOW2} +``` +public static final int OVERFLOW2 +``` + + +### POSTNET_BARWIDTH_INCH {#POSTNET-BARWIDTH-INCH} +``` +public static final float POSTNET_BARWIDTH_INCH +``` + + +### POSTNET_BARWIDTH_MAX_INCH {#POSTNET-BARWIDTH-MAX-INCH} +``` +public static final float POSTNET_BARWIDTH_MAX_INCH +``` + + +### POSTNET_BARWIDTH_MIN_INCH {#POSTNET-BARWIDTH-MIN-INCH} +``` +public static final float POSTNET_BARWIDTH_MIN_INCH +``` + + +### POSTNET_SHORTBAR_INCH {#POSTNET-SHORTBAR-INCH} +``` +public static final float POSTNET_SHORTBAR_INCH +``` + + +### POSTNET_SHORTBAR_MAX_INCH {#POSTNET-SHORTBAR-MAX-INCH} +``` +public static final float POSTNET_SHORTBAR_MAX_INCH +``` + + +### POSTNET_SHORTBAR_MIN_INCH {#POSTNET-SHORTBAR-MIN-INCH} +``` +public static final float POSTNET_SHORTBAR_MIN_INCH +``` + + +### POSTNET_TALLBAR_INCH {#POSTNET-TALLBAR-INCH} +``` +public static final float POSTNET_TALLBAR_INCH +``` + + +### POSTNET_TALLBAR_MAX_INCH {#POSTNET-TALLBAR-MAX-INCH} +``` +public static final float POSTNET_TALLBAR_MAX_INCH +``` + + +### POSTNET_TALLBAR_MIN_INCH {#POSTNET-TALLBAR-MIN-INCH} +``` +public static final float POSTNET_TALLBAR_MIN_INCH +``` + + +### RM4SCC_ABAR_MAX_MM {#RM4SCC-ABAR-MAX-MM} +``` +public static final float RM4SCC_ABAR_MAX_MM +``` + + +### RM4SCC_ABAR_MIN_MM {#RM4SCC-ABAR-MIN-MM} +``` +public static final float RM4SCC_ABAR_MIN_MM +``` + + +### RM4SCC_ABAR_MM {#RM4SCC-ABAR-MM} +``` +public static final float RM4SCC_ABAR_MM +``` + + +### RM4SCC_BARWIDTH_MAX_MM {#RM4SCC-BARWIDTH-MAX-MM} +``` +public static final float RM4SCC_BARWIDTH_MAX_MM +``` + + +### RM4SCC_BARWIDTH_MIN_MM {#RM4SCC-BARWIDTH-MIN-MM} +``` +public static final float RM4SCC_BARWIDTH_MIN_MM +``` + + +### RM4SCC_BARWIDTH_MM {#RM4SCC-BARWIDTH-MM} +``` +public static final float RM4SCC_BARWIDTH_MM +``` + + +### RM4SCC_FBAR_MAX_MM {#RM4SCC-FBAR-MAX-MM} +``` +public static final float RM4SCC_FBAR_MAX_MM +``` + + +### RM4SCC_FBAR_MIN_MM {#RM4SCC-FBAR-MIN-MM} +``` +public static final float RM4SCC_FBAR_MIN_MM +``` + + +### RM4SCC_FBAR_MM {#RM4SCC-FBAR-MM} +``` +public static final float RM4SCC_FBAR_MM +``` + + +### RM4SCC_TBAR_MAX_MM {#RM4SCC-TBAR-MAX-MM} +``` +public static final float RM4SCC_TBAR_MAX_MM +``` + + +### RM4SCC_TBAR_MIN_MM {#RM4SCC-TBAR-MIN-MM} +``` +public static final float RM4SCC_TBAR_MIN_MM +``` + + +### RM4SCC_TBAR_MM {#RM4SCC-TBAR-MM} +``` +public static final float RM4SCC_TBAR_MM +``` + + +### SINGAPORE_ABAR_MAX_MM {#SINGAPORE-ABAR-MAX-MM} +``` +public static final float SINGAPORE_ABAR_MAX_MM +``` + + +### SINGAPORE_ABAR_MIN_MM {#SINGAPORE-ABAR-MIN-MM} +``` +public static final float SINGAPORE_ABAR_MIN_MM +``` + + +### SINGAPORE_ABAR_MM {#SINGAPORE-ABAR-MM} +``` +public static final float SINGAPORE_ABAR_MM +``` + + +### SINGAPORE_BARWIDTH_MAX_MM {#SINGAPORE-BARWIDTH-MAX-MM} +``` +public static final float SINGAPORE_BARWIDTH_MAX_MM +``` + + +### SINGAPORE_BARWIDTH_MIN_MM {#SINGAPORE-BARWIDTH-MIN-MM} +``` +public static final float SINGAPORE_BARWIDTH_MIN_MM +``` + + +### SINGAPORE_BARWIDTH_MM {#SINGAPORE-BARWIDTH-MM} +``` +public static final float SINGAPORE_BARWIDTH_MM +``` + + +### SINGAPORE_FBAR_MAX_MM {#SINGAPORE-FBAR-MAX-MM} +``` +public static final float SINGAPORE_FBAR_MAX_MM +``` + + +### SINGAPORE_FBAR_MIN_MM {#SINGAPORE-FBAR-MIN-MM} +``` +public static final float SINGAPORE_FBAR_MIN_MM +``` + + +### SINGAPORE_FBAR_MM {#SINGAPORE-FBAR-MM} +``` +public static final float SINGAPORE_FBAR_MM +``` + + +### SINGAPORE_TBAR_MAX_MM {#SINGAPORE-TBAR-MAX-MM} +``` +public static final float SINGAPORE_TBAR_MAX_MM +``` + + +### SINGAPORE_TBAR_MIN_MM {#SINGAPORE-TBAR-MIN-MM} +``` +public static final float SINGAPORE_TBAR_MIN_MM +``` + + +### SINGAPORE_TBAR_MM {#SINGAPORE-TBAR-MM} +``` +public static final float SINGAPORE_TBAR_MM +``` + + +### STRING_ADJUST {#STRING-ADJUST} +``` +public static final int STRING_ADJUST +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/couponparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/couponparameters/_index.md new file mode 100644 index 000000000..cc6ec9aa4 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/couponparameters/_index.md @@ -0,0 +1,149 @@ +--- +title: CouponParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres de coupon. +type: docs +weight: 31 +url: /fr/androidjava/com.aspose.barcode.generation/couponparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class CouponParameters +``` + +Paramètres du coupon. Utilisé pour UpcaGs1DatabarCoupon, UpcaGs1Code128Coupon. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getSupplementSpace()](#getSupplementSpace--) | Espace entre le BarCode principal et le BarCode supplémentaire en valeur Unit. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setSupplementSpace(Unit value)](#setSupplementSpace-com.aspose.barcode.generation.Unit-) | Espace entre le BarCode principal et le BarCode supplémentaire en valeur Unit. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce CouponParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getSupplementSpace() {#getSupplementSpace--} +``` +public Unit getSupplementSpace() +``` + + +Espace entre le BarCode principal et le BarCode supplémentaire en valeur Unit. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setSupplementSpace(Unit value) {#setSupplementSpace-com.aspose.barcode.generation.Unit-} +``` +public void setSupplementSpace(Unit value) +``` + + +Espace entre le BarCode principal et le BarCode supplémentaire en valeur Unit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce CouponParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ce CouponParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/databarparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/databarparameters/_index.md new file mode 100644 index 000000000..bd038930a --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/databarparameters/_index.md @@ -0,0 +1,249 @@ +--- +title: DataBarParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres Databar. +type: docs +weight: 32 +url: /fr/androidjava/com.aspose.barcode.generation/databarparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class DataBarParameters +``` + +Paramètres Databar. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio()](#getAspectRatio--) | Ratio hauteur/largeur du module du code-barres 2D. | +| [getClass()](#getClass--) | | +| [getColumns()](#getColumns--) | Nombre de colonnes. | +| [getRows()](#getRows--) | Nombre de lignes. | +| [hashCode()](#hashCode--) | | +| [is2DCompositeComponent()](#is2DCompositeComponent--) | Active le drapeau du composant composite 2D avec le code-barres DataBar | +| [isAllowOnlyGS1Encoding()](#isAllowOnlyGS1Encoding--) | Si ce drapeau est activé, il n'autorise que la norme d'encodage GS1 pour les types de code-barres DataBar | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [set2DCompositeComponent(boolean value)](#set2DCompositeComponent-boolean-) | Active le drapeau du composant composite 2D avec le code-barres DataBar | +| [setAllowOnlyGS1Encoding(boolean value)](#setAllowOnlyGS1Encoding-boolean-) | Si ce drapeau est activé, il n'autorise que la norme d'encodage GS1 pour les types de code-barres DataBar | +| [setAspectRatio(float value)](#setAspectRatio-float-) | Ratio hauteur/largeur du module du code-barres 2D. | +| [setColumns(int value)](#setColumns-int-) | Nombre de colonnes. | +| [setRows(int value)](#setRows-int-) | Nombre de lignes. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce DataBarParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAspectRatio() {#getAspectRatio--} +``` +public float getAspectRatio() +``` + + +Ratio hauteur/largeur du module de BarCode 2D. Utilisé pour le DataBar empilé. + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getColumns() {#getColumns--} +``` +public int getColumns() +``` + + +Nombre de colonnes. + +**Returns:** +int +### getRows() {#getRows--} +``` +public int getRows() +``` + + +Nombre de lignes. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### is2DCompositeComponent() {#is2DCompositeComponent--} +``` +public boolean is2DCompositeComponent() +``` + + +Active le drapeau du composant composite 2D avec le code-barres DataBar + +**Returns:** +boolean +### isAllowOnlyGS1Encoding() {#isAllowOnlyGS1Encoding--} +``` +public boolean isAllowOnlyGS1Encoding() +``` + + +Si ce drapeau est activé, il n'autorise que la norme d'encodage GS1 pour les types de code-barres DataBar + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### set2DCompositeComponent(boolean value) {#set2DCompositeComponent-boolean-} +``` +public void set2DCompositeComponent(boolean value) +``` + + +Active le drapeau du composant composite 2D avec le code-barres DataBar + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setAllowOnlyGS1Encoding(boolean value) {#setAllowOnlyGS1Encoding-boolean-} +``` +public void setAllowOnlyGS1Encoding(boolean value) +``` + + +Si ce drapeau est activé, il n'autorise que la norme d'encodage GS1 pour les types de code-barres DataBar + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setAspectRatio(float value) {#setAspectRatio-float-} +``` +public void setAspectRatio(float value) +``` + + +Ratio hauteur/largeur du module de BarCode 2D. Utilisé pour le DataBar empilé. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setColumns(int value) {#setColumns-int-} +``` +public void setColumns(int value) +``` + + +Nombre de colonnes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setRows(int value) {#setRows-int-} +``` +public void setRows(int value) +``` + + +Nombre de lignes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce DataBarParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ce DataBarParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/datamatrixecctype/_index.md b/french/androidjava/com.aspose.barcode.generation/datamatrixecctype/_index.md new file mode 100644 index 000000000..95e560c08 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/datamatrixecctype/_index.md @@ -0,0 +1,306 @@ +--- +title: DataMatrixEccType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifiez le type de ECC à encoder. +type: docs +weight: 82 +url: /fr/androidjava/com.aspose.barcode.generation/datamatrixecctype/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum DataMatrixEccType extends Enum +``` + +Spécifiez le type de ECC à encoder. +## Champs + +| Champ | Description | +| --- | --- | +| [ECC_000](#ECC-000) | Spécifie que le type ECC encodé est défini ECC 000. | +| [ECC_050](#ECC-050) | Spécifie que le type ECC encodé est défini ECC 050. | +| [ECC_080](#ECC-080) | Spécifie que le type ECC encodé est défini ECC 080. | +| [ECC_100](#ECC-100) | Spécifie que le type ECC encodé est défini ECC 100. | +| [ECC_140](#ECC-140) | Spécifie que le type ECC encodé est défini ECC 140. | +| [ECC_200](#ECC-200) | Spécifie que le type ECC encodé est défini ECC 200. | +| [ECC_AUTO](#ECC-AUTO) | Spécifie que le type ECC encodé est défini par défaut par la correction d'erreurs Reed-Solomon ou ECC 200. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ECC_000 {#ECC-000} +``` +public static final DataMatrixEccType ECC_000 +``` + + +Spécifie que le type ECC encodé est défini ECC 000. + +### ECC_050 {#ECC-050} +``` +public static final DataMatrixEccType ECC_050 +``` + + +Spécifie que le type ECC encodé est défini ECC 050. + +### ECC_080 {#ECC-080} +``` +public static final DataMatrixEccType ECC_080 +``` + + +Spécifie que le type ECC encodé est défini ECC 080. + +### ECC_100 {#ECC-100} +``` +public static final DataMatrixEccType ECC_100 +``` + + +Spécifie que le type ECC encodé est défini ECC 100. + +### ECC_140 {#ECC-140} +``` +public static final DataMatrixEccType ECC_140 +``` + + +Spécifie que le type ECC encodé est défini ECC 140. + +### ECC_200 {#ECC-200} +``` +public static final DataMatrixEccType ECC_200 +``` + + +Spécifie que le type ECC encodé est défini ECC 200. Recommandé à l'utiliser. + +### ECC_AUTO {#ECC-AUTO} +``` +public static final DataMatrixEccType ECC_AUTO +``` + + +Spécifie que le type ECC encodé est défini par défaut par la correction d'erreurs Reed-Solomon ou ECC 200. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static DataMatrixEccType valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[DataMatrixEccType](../../com.aspose.barcode.generation/datamatrixecctype) +### values() {#values--} +``` +public static DataMatrixEccType[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.DataMatrixEccType[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/datamatrixencodemode/_index.md b/french/androidjava/com.aspose.barcode.generation/datamatrixencodemode/_index.md new file mode 100644 index 000000000..4138a9a70 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/datamatrixencodemode/_index.md @@ -0,0 +1,396 @@ +--- +title: DataMatrixEncodeMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Le mode d’encodage des encodeurs DataMatrix est par défaut sur Auto. +type: docs +weight: 83 +url: /fr/androidjava/com.aspose.barcode.generation/datamatrixencodemode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum DataMatrixEncodeMode extends Enum +``` + +Mode d'encodage de l'encodeur DataMatrix, par défaut sur Auto + +-------------------- + +> ``` +> This sample shows how to do codetext in Extended Mode. +> +> //Auto mode +> String codetext = "\u72acRight\u72d7"; +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX, codetext); +> generator.getParameters().getBarcode().getDataMatrix().setECIEncoding(ECIEncodings.UTF8); +> generator.save("test.bmp"); +> //Bytes mode +> byte[] encodedArr = { (byte)0xFF, (byte)0xFE, (byte)0xFD, (byte)0xFC, (byte)0xFB, (byte)0xFA, (byte)0xF9 }; +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX); +> generator.setCodetext(encodedArr); +> generator.getParameters().getBarcode().getDataMatrix().setEncodeMode(EncodeMode.BINARY); +> generator.save("test.bmp"); +> //Extended codetext mode +> //create codetext +> DataMatrixExtCodetextBuilder codetextBuilder=new DataMatrixExtCodetextBuilder(); +> codetextBuilder.addECICodetextWithEncodeMode(ECIEncodings.Win1251,EncodeMode.BYTES,"World"); +> codetextBuilder.addPlainCodetext("Will"); +> codetextBuilder.addECICodetext(ECIEncodings.UTF8,"\u72acRight\u72d7"); +> codetextBuilder.addCodetextWithEncodeMode(EncodeMode.C40,"ABCDE"); +> //generate codetext +> String codetext=codetextBuilder.getExtended(); +> //generate +> BarcodeGenerator generator=new BarcodeGenerator(EncodeTypes.DATA_MATRIX,codetext); +> generator.getParameters().getBarcode().getDataMatrix().setEncodeMode(EncodeMode.EXTENDED_CODETEXT); +> generator.save("test.bmp"); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [ANSIX12](#ANSIX12) | Utilise l’encodage ANSI X12. | +| [ASCII](#ASCII) | Encode un caractère alphanumérique ou deux caractères numériques par octet. | +| [AUTO](#AUTO) | En mode Auto, le CodeText est encodé avec une compacité maximale des données. | +| [BASE_256](#BASE-256) | Encode des valeurs 8 bits. | +| [BINARY](#BINARY) | En mode Binaire, le CodeText est encodé avec une compacité maximale des données. | +| [BYTES](#BYTES) | Encode des valeurs 8 bits. | +| [C40](#C40) | Utilise l’encodage C40. | +| [ECI](#ECI) | En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. | +| [EDIFACT](#EDIFACT) | Utilise l’encodage EDIFACT. | +| [EXTENDED](#EXTENDED) | Le mode ExtendedCodetext permet de changer manuellement les schémas d’encodage et les encodages ECI dans le codetext. | +| [EXTENDED_CODETEXT](#EXTENDED-CODETEXT) | | +| [TEXT](#TEXT) | Utilise l’encodage Text. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ANSIX12 {#ANSIX12} +``` +public static final DataMatrixEncodeMode ANSIX12 +``` + + +Utilise l’encodage ANSI X12. + +### ASCII {#ASCII} +``` +public static final DataMatrixEncodeMode ASCII +``` + + +Encode un caractère alphanumérique ou deux caractères numériques par octet. + +### AUTO {#AUTO} +``` +public static final DataMatrixEncodeMode AUTO +``` + + +En mode Auto, le CodeText est encodé avec une compacité maximale des données. Les caractères Unicode sont ré‑encodés dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. Si un caractère est trouvé qui n’est pas pris en charge par l’encodage ECI sélectionné, une exception est levée. + +### BASE_256 {#BASE-256} +``` +public static final DataMatrixEncodeMode BASE_256 +``` + + +Encode des valeurs 8 bits. + +### BINARY {#BINARY} +``` +public static final DataMatrixEncodeMode BINARY +``` + + +En mode Binaire, le CodeText est encodé avec une compacité maximale des données. Si un caractère Unicode est trouvé, une exception est levée. + +### BYTES {#BYTES} +``` +public static final DataMatrixEncodeMode BYTES +``` + + +Encode des valeurs 8 bits. + +### C40 {#C40} +``` +public static final DataMatrixEncodeMode C40 +``` + + +Utilise l’encodage C40. Encode les caractères alphanumériques majuscules, les minuscules et les caractères spéciaux. + +### ECI {#ECI} +``` +public static final DataMatrixEncodeMode ECI +``` + + +En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. Si un caractère est trouvé qui n’est pas pris en charge par l’encodage ECI sélectionné, une exception est levée. Veuillez noter que certains scanners anciens (pré‑2006) peuvent ne pas prendre en charge ce mode. + +### EDIFACT {#EDIFACT} +``` +public static final DataMatrixEncodeMode EDIFACT +``` + + +Utilise l’encodage EDIFACT. Utilise six bits par caractère, encode les chiffres, les lettres majuscules et de nombreuses ponctuations, mais ne prend pas en charge les lettres minuscules. + +### EXTENDED {#EXTENDED} +``` +public static final DataMatrixEncodeMode EXTENDED +``` + + +Le mode ExtendedCodetext permet de changer manuellement les schémas d’encodage et les encodages ECI dans le codetext. Il est préférable d’utiliser DataMatrixExtCodetextBuilder pour la génération de codetext étendu. Utilisez la propriété Display2DText pour définir le texte visible en supprimant les caractères de gestion. Les identifiants ECI sont définis comme une barre oblique unique et un identifiant à six chiffres "\\000026" - identifiant ECI UTF‑8. Tous les caractères Unicode après l’identifiant ECI sont automatiquement encodés dans le jeu de caractères correct. Les schémas d’encodage sont définis au format suivant : "\\Encodation\_scheme\_name:text\\Encodation\_scheme\_name:text". Les schémas d’encodage autorisés sont : EDIFACT, ANSIX12, ASCII, C40, Text, Auto. Tous les antislashs (\\) doivent être doublés dans le texte. + +### EXTENDED_CODETEXT {#EXTENDED-CODETEXT} +``` +public static final DataMatrixEncodeMode EXTENDED_CODETEXT +``` + + +Le mode ExtendedCodetext permet de changer manuellement les schémas d’encodage et les encodages ECI dans le codetext. + +Il est préférable d’utiliser DataMatrixExtCodetextBuilder pour la génération de codetext étendu. + +Utilisez la propriété Display2DText pour définir le texte visible en supprimant les caractères de gestion. + +Les identifiants ECI sont définis comme une barre oblique unique et un identifiant à six chiffres "\\000026" - identifiant ECI UTF‑8. + +Tous les caractères Unicode après l’identifiant ECI sont automatiquement encodés dans le jeu de caractères correct. + +Les schémas d’encodage sont définis au format suivant : "\\Encodation\_scheme\_name:text\\Encodation\_scheme\_name:text". + +Les schémas d’encodage autorisés sont : EDIFACT, ANSIX12, ASCII, C40, Text, Auto. + +Tous les antislashs (\\) doivent être doublés dans le texte. + +### TEXT {#TEXT} +``` +public static final DataMatrixEncodeMode TEXT +``` + + +Utilise l’encodage Text. Encode les caractères alphanumériques minuscules, majuscules et les caractères spéciaux. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static DataMatrixEncodeMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) +### values() {#values--} +``` +public static DataMatrixEncodeMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.DataMatrixEncodeMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/datamatrixextcodetextbuilder/_index.md b/french/androidjava/com.aspose.barcode.generation/datamatrixextcodetextbuilder/_index.md new file mode 100644 index 000000000..d9facffa4 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/datamatrixextcodetextbuilder/_index.md @@ -0,0 +1,249 @@ +--- +title: DataMatrixExtCodetextBuilder +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 33 +url: /fr/androidjava/com.aspose.barcode.generation/datamatrixextcodetextbuilder/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.generation.ExtCodetextBuilder](../../com.aspose.barcode.generation/extcodetextbuilder) +``` +public class DataMatrixExtCodetextBuilder extends ExtCodetextBuilder +``` + +Générateur de texte de code étendu pour les codes-barres DataMatrix 2D en mode ExtendedCodetext de EncodeMode. + +-------------------- + +> ``` +> //Extended codetext mode +> //create codetext +> DataMatrixExtCodetextBuilder textBuilder = new DataMatrixExtCodetextBuilder(); +> codetextBuilder.addECICodetextWithEncodeMode(ECIEncodings.Win1251, EncodeMode.BYTES, "World"); +> codetextBuilder.addPlainCodetext("Will"); +> codetextBuilder.addECICodetext(ECIEncodings.UTF8, "\u72acRight\u72d7"); +> codetextBuilder.addCodetextWithEncodeMode(EncodeMode.C40, "ABCDE"); +> //generate codetext +> String codetext = textBuilder.getExtendedCodetext(); +> //generate +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX, codetext); +> generator.getParameters().getBarcode().getDataMatrix().setEncodeMode(EncodeMode.EXTENDED_CODETEXT); +> generator.save("test.bmp"); +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [DataMatrixExtCodetextBuilder()](#DataMatrixExtCodetextBuilder--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addCodetextWithEncodeMode(DataMatrixEncodeMode encodeMode, String codetext)](#addCodetextWithEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-java.lang.String-) | Ajoute du texte de code avec le mode d’encodage défini aux éléments de texte de code étendu. | +| [addECICodetext(int ECIEncoding, String codetext)](#addECICodetext-int-java.lang.String-) | Ajoute du codetext avec un identifiant de canal étendu. | +| [addECICodetextWithEncodeMode(int ECIEncoding, DataMatrixEncodeMode encodeMode, String codetext)](#addECICodetextWithEncodeMode-int-com.aspose.barcode.generation.DataMatrixEncodeMode-java.lang.String-) | Ajoute du texte de code avec l’identifiant de canal étendu avec le mode d’encodage défini. | +| [addPlainCodetext(String codetext)](#addPlainCodetext-java.lang.String-) | Ajoute du texte de code simple aux éléments de texte de code étendu | +| [clear()](#clear--) | Efface les éléments de texte de code étendu | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getExtendedCodetext()](#getExtendedCodetext--) | Génère du texte de code étendu à partir de la liste de texte de code étendu. | +| [hashCode()](#hashCode--) | | +| [isNeedToShieldItemFromPrevECI(int Index)](#isNeedToShieldItemFromPrevECI-int-) | Vérifie la nécessité de protéger l'élément précédent par "\\000000" | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### DataMatrixExtCodetextBuilder() {#DataMatrixExtCodetextBuilder--} +``` +public DataMatrixExtCodetextBuilder() +``` + + +### addCodetextWithEncodeMode(DataMatrixEncodeMode encodeMode, String codetext) {#addCodetextWithEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-java.lang.String-} +``` +public void addCodetextWithEncodeMode(DataMatrixEncodeMode encodeMode, String codetext) +``` + + +Ajoute du texte de code avec le mode d’encodage défini aux éléments de texte de code étendu. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| encodeMode | [DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) | Valeur du mode d’encodage | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu | + +### addECICodetext(int ECIEncoding, String codetext) {#addECICodetext-int-java.lang.String-} +``` +public void addECICodetext(int ECIEncoding, String codetext) +``` + + +Ajoute du codetext avec un identifiant de canal étendu. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| ECIEncoding | int | Identifiant de canal étendu | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu avec l'identifiant de canal étendu | + +### addECICodetextWithEncodeMode(int ECIEncoding, DataMatrixEncodeMode encodeMode, String codetext) {#addECICodetextWithEncodeMode-int-com.aspose.barcode.generation.DataMatrixEncodeMode-java.lang.String-} +``` +public void addECICodetextWithEncodeMode(int ECIEncoding, DataMatrixEncodeMode encodeMode, String codetext) +``` + + +Ajoute du texte de code avec l’identifiant de canal étendu avec le mode d’encodage défini. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| ECIEncoding | int | Identifiant de canal étendu | +| encodeMode | [DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) | Valeur du mode d’encodage | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter comme élément de texte de code étendu avec l’identifiant de canal étendu et le mode d’encodage défini. | + +### addPlainCodetext(String codetext) {#addPlainCodetext-java.lang.String-} +``` +public void addPlainCodetext(String codetext) +``` + + +Ajoute du texte de code simple aux éléments de texte de code étendu + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu | + +### clear() {#clear--} +``` +public void clear() +``` + + +Efface les éléments de texte de code étendu + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getExtendedCodetext() {#getExtendedCodetext--} +``` +public String getExtendedCodetext() +``` + + +Génère du texte de code étendu à partir de la liste de texte de code étendu. + +**Returns:** +java.lang.String - Texte de code étendu en tant que chaîne +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isNeedToShieldItemFromPrevECI(int Index) {#isNeedToShieldItemFromPrevECI-int-} +``` +public boolean isNeedToShieldItemFromPrevECI(int Index) +``` + + +Vérifie la nécessité de protéger l'élément précédent par "\\000000" + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| Indice | int | Indice dans m\_List | + +**Returns:** +booléen - Nécessité de protéger +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/datamatrixparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/datamatrixparameters/_index.md new file mode 100644 index 000000000..fbe14eaff --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/datamatrixparameters/_index.md @@ -0,0 +1,499 @@ +--- +title: DataMatrixParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres DataMatrix. +type: docs +weight: 34 +url: /fr/androidjava/com.aspose.barcode.generation/datamatrixparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class DataMatrixParameters +``` + +Paramètres DataMatrix. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio()](#getAspectRatio--) | Ratio hauteur/largeur du module du code-barres 2D. | +| [getClass()](#getClass--) | | +| [getColumns()](#getColumns--) | Nombre de colonnes. | +| [getDataMatrixEcc()](#getDataMatrixEcc--) | Obtient un type ECC Datamatrix. | +| [getDataMatrixEncodeMode()](#getDataMatrixEncodeMode--) | Mode d’encodage du code-barres Datamatrix. | +| [getDataMatrixVersion()](#getDataMatrixVersion--) | Obtient une taille de symbole Datamatrix. | +| [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEccType()](#getEccType--) | Obtient un type ECC Datamatrix. | +| [getEncodeMode()](#getEncodeMode--) | Mode d’encodage du code-barres Datamatrix. | +| [getMacroCharacters()](#getMacroCharacters--) | Les valeurs des caractères macro 05 et 06 sont utilisées pour obtenir un encodage plus compact dans les modes spéciaux. | +| [getRows()](#getRows--) | Nombre de lignes. | +| [getStructuredAppendBarcodeId()](#getStructuredAppendBarcodeId--) | ID du code-barres pour le mode Structured Append du code-barres Datamatrix. | +| [getStructuredAppendBarcodesCount()](#getStructuredAppendBarcodesCount--) | Nombre de codes-barres pour le mode Structured Append du code-barres Datamatrix. | +| [getStructuredAppendFileId()](#getStructuredAppendFileId--) | ID du fichier pour le mode Structured Append du code-barres Datamatrix. | +| [getVersion()](#getVersion--) | Obtient une taille de symbole Datamatrix. | +| [hashCode()](#hashCode--) | | +| [isReaderProgramming()](#isReaderProgramming--) | Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAspectRatio(float value)](#setAspectRatio-float-) | Ratio hauteur/largeur du module du code-barres 2D. | +| [setColumns(int value)](#setColumns-int-) | Nombre de colonnes. | +| [setDataMatrixEcc(DataMatrixEccType value)](#setDataMatrixEcc-com.aspose.barcode.generation.DataMatrixEccType-) | Définit un type ECC Datamatrix. | +| [setDataMatrixEncodeMode(DataMatrixEncodeMode value)](#setDataMatrixEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-) | Mode d’encodage du code-barres Datamatrix. | +| [setDataMatrixVersion(DataMatrixVersion value)](#setDataMatrixVersion-com.aspose.barcode.generation.DataMatrixVersion-) | Définit une taille de symbole Datamatrix. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Définit l'encodage ECI. | +| [setEccType(DataMatrixEccType value)](#setEccType-com.aspose.barcode.generation.DataMatrixEccType-) | Définit un type ECC Datamatrix. | +| [setEncodeMode(DataMatrixEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-) | Mode d’encodage du code-barres Datamatrix. | +| [setMacroCharacters(MacroCharacter value)](#setMacroCharacters-com.aspose.barcode.generation.MacroCharacter-) | Les valeurs des caractères macro 05 et 06 sont utilisées pour obtenir un encodage plus compact dans les modes spéciaux. | +| [setReaderProgramming(boolean value)](#setReaderProgramming-boolean-) | Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. | +| [setRows(int value)](#setRows-int-) | Nombre de lignes. | +| [setStructuredAppendBarcodeId(int value)](#setStructuredAppendBarcodeId-int-) | ID du code-barres pour le mode Structured Append du code-barres Datamatrix. | +| [setStructuredAppendBarcodesCount(int value)](#setStructuredAppendBarcodesCount-int-) | Nombre de codes-barres pour le mode Structured Append du code-barres Datamatrix. | +| [setStructuredAppendFileId(int value)](#setStructuredAppendFileId-int-) | ID du fichier pour le mode Structured Append du code-barres Datamatrix. | +| [setVersion(DataMatrixVersion value)](#setVersion-com.aspose.barcode.generation.DataMatrixVersion-) | Définit une taille de symbole Datamatrix. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [DataMatrixParameters](../../com.aspose.barcode.generation/datamatrixparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAspectRatio() {#getAspectRatio--} +``` +public final float getAspectRatio() +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getColumns() {#getColumns--} +``` +public final int getColumns() +``` + + +Nombre de colonnes. + +**Returns:** +int +### getDataMatrixEcc() {#getDataMatrixEcc--} +``` +public final DataMatrixEccType getDataMatrixEcc() +``` + + +Obtient un type ECC Datamatrix. Valeur par défaut : DataMatrixEccType.Ecc200. + +**Returns:** +[DataMatrixEccType](../../com.aspose.barcode.generation/datamatrixecctype) - a Datamatrix ECC type. +### getDataMatrixEncodeMode() {#getDataMatrixEncodeMode--} +``` +public final DataMatrixEncodeMode getDataMatrixEncodeMode() +``` + + +Mode d'encodage du code-barres Datamatrix. Valeur par défaut : EncodeMode.Auto. + +**Returns:** +[DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) +### getDataMatrixVersion() {#getDataMatrixVersion--} +``` +public final DataMatrixVersion getDataMatrixVersion() +``` + + +Obtient une taille de symbole Datamatrix. Valeur par défaut : Version.Auto. + +**Returns:** +[DataMatrixVersion](../../com.aspose.barcode.generation/datamatrixversion) - a Datamatrix symbol size. +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Obtient l'encodage ECI. Utilisé lorsque EncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Returns:** +int - encodage ECI. +### getEccType() {#getEccType--} +``` +public final DataMatrixEccType getEccType() +``` + + +Obtient un type ECC Datamatrix. Valeur par défaut : DataMatrixEccType.Ecc200. + +**Returns:** +[DataMatrixEccType](../../com.aspose.barcode.generation/datamatrixecctype) - a Datamatrix ECC type. +### getEncodeMode() {#getEncodeMode--} +``` +public final DataMatrixEncodeMode getEncodeMode() +``` + + +Mode d'encodage du code-barres Datamatrix. Valeur par défaut : EncodeMode.Auto. + +**Returns:** +[DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) +### getMacroCharacters() {#getMacroCharacters--} +``` +public final MacroCharacter getMacroCharacters() +``` + + +Les valeurs des caractères macro 05 et 06 sont utilisées pour obtenir un encodage plus compact dans des modes spéciaux. Elles ne peuvent être utilisées qu'avec DataMatrixEccType.Ecc200 ou DataMatrixEccType.EccAuto. Elles ne peuvent pas être utilisées avec EncodeTypes.GS1DataMatrix Valeur par défaut : MacroCharacters.None. + +**Returns:** +[MacroCharacter](../../com.aspose.barcode.generation/macrocharacter) +### getRows() {#getRows--} +``` +public final int getRows() +``` + + +Nombre de lignes. + +**Returns:** +int +### getStructuredAppendBarcodeId() {#getStructuredAppendBarcodeId--} +``` +public final int getStructuredAppendBarcodeId() +``` + + +ID du code-barres pour le mode Structured Append du code-barres Datamatrix. Valeur par défaut : 0 + +**Returns:** +int +### getStructuredAppendBarcodesCount() {#getStructuredAppendBarcodesCount--} +``` +public final int getStructuredAppendBarcodesCount() +``` + + +Nombre de codes-barres pour le mode Structured Append du code-barres Datamatrix. Valeur par défaut : 0 + +**Returns:** +int +### getStructuredAppendFileId() {#getStructuredAppendFileId--} +``` +public final int getStructuredAppendFileId() +``` + + +ID du fichier pour le mode Structured Append du code-barres Datamatrix. Valeur par défaut : 0 + +**Returns:** +int +### getVersion() {#getVersion--} +``` +public final DataMatrixVersion getVersion() +``` + + +Obtient une taille de symbole Datamatrix. Valeur par défaut : Version.Auto. + +**Returns:** +[DataMatrixVersion](../../com.aspose.barcode.generation/datamatrixversion) - a Datamatrix symbol size. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isReaderProgramming() {#isReaderProgramming--} +``` +public final boolean isReaderProgramming() +``` + + +Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. Valeur par défaut : false + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAspectRatio(float value) {#setAspectRatio-float-} +``` +public final void setAspectRatio(float value) +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setColumns(int value) {#setColumns-int-} +``` +public final void setColumns(int value) +``` + + +Nombre de colonnes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setDataMatrixEcc(DataMatrixEccType value) {#setDataMatrixEcc-com.aspose.barcode.generation.DataMatrixEccType-} +``` +public final void setDataMatrixEcc(DataMatrixEccType value) +``` + + +Définit un type ECC Datamatrix. Valeur par défaut : DataMatrixEccType.Ecc200. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [DataMatrixEccType](../../com.aspose.barcode.generation/datamatrixecctype) | un type ECC Datamatrix. | + +### setDataMatrixEncodeMode(DataMatrixEncodeMode value) {#setDataMatrixEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-} +``` +public final void setDataMatrixEncodeMode(DataMatrixEncodeMode value) +``` + + +Mode d'encodage du code-barres Datamatrix. Valeur par défaut : EncodeMode.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) | | + +### setDataMatrixVersion(DataMatrixVersion value) {#setDataMatrixVersion-com.aspose.barcode.generation.DataMatrixVersion-} +``` +public final void setDataMatrixVersion(DataMatrixVersion value) +``` + + +Définit une taille de symbole Datamatrix. Valeur par défaut : Version.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [DataMatrixVersion](../../com.aspose.barcode.generation/datamatrixversion) | une taille de symbole Datamatrix. | + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Définit l'encodage ECI. Utilisé lorsque EncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Encodage ECI. | + +### setEccType(DataMatrixEccType value) {#setEccType-com.aspose.barcode.generation.DataMatrixEccType-} +``` +public final void setEccType(DataMatrixEccType value) +``` + + +Définit un type ECC Datamatrix. Valeur par défaut : DataMatrixEccType.Ecc200. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [DataMatrixEccType](../../com.aspose.barcode.generation/datamatrixecctype) | un type ECC Datamatrix. | + +### setEncodeMode(DataMatrixEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-} +``` +public final void setEncodeMode(DataMatrixEncodeMode value) +``` + + +Mode d'encodage du code-barres Datamatrix. Valeur par défaut : EncodeMode.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) | | + +### setMacroCharacters(MacroCharacter value) {#setMacroCharacters-com.aspose.barcode.generation.MacroCharacter-} +``` +public final void setMacroCharacters(MacroCharacter value) +``` + + +Les valeurs des caractères macro 05 et 06 sont utilisées pour obtenir un encodage plus compact dans des modes spéciaux. Elles ne peuvent être utilisées qu'avec DataMatrixEccType.Ecc200 ou DataMatrixEccType.EccAuto. Elles ne peuvent pas être utilisées avec EncodeTypes.GS1DataMatrix Valeur par défaut : MacroCharacters.None. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MacroCharacter](../../com.aspose.barcode.generation/macrocharacter) | | + +### setReaderProgramming(boolean value) {#setReaderProgramming-boolean-} +``` +public final void setReaderProgramming(boolean value) +``` + + +Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. Valeur par défaut : false + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setRows(int value) {#setRows-int-} +``` +public final void setRows(int value) +``` + + +Nombre de lignes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setStructuredAppendBarcodeId(int value) {#setStructuredAppendBarcodeId-int-} +``` +public final void setStructuredAppendBarcodeId(int value) +``` + + +ID du code-barres pour le mode Structured Append du code-barres Datamatrix. Valeur par défaut : 0 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setStructuredAppendBarcodesCount(int value) {#setStructuredAppendBarcodesCount-int-} +``` +public final void setStructuredAppendBarcodesCount(int value) +``` + + +Nombre de codes-barres pour le mode Structured Append du code-barres Datamatrix. Valeur par défaut : 0 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setStructuredAppendFileId(int value) {#setStructuredAppendFileId-int-} +``` +public final void setStructuredAppendFileId(int value) +``` + + +ID du fichier pour le mode Structured Append du code-barres Datamatrix. Valeur par défaut : 0 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setVersion(DataMatrixVersion value) {#setVersion-com.aspose.barcode.generation.DataMatrixVersion-} +``` +public final void setVersion(DataMatrixVersion value) +``` + + +Définit une taille de symbole Datamatrix. Valeur par défaut : Version.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [DataMatrixVersion](../../com.aspose.barcode.generation/datamatrixversion) | une taille de symbole Datamatrix. | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [DataMatrixParameters](../../com.aspose.barcode.generation/datamatrixparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente ce [DataMatrixParameters](../../com.aspose.barcode.generation/datamatrixparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/datamatrixversion/_index.md b/french/androidjava/com.aspose.barcode.generation/datamatrixversion/_index.md new file mode 100644 index 000000000..0926ac462 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/datamatrixversion/_index.md @@ -0,0 +1,882 @@ +--- +title: DataMatrixVersion +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifiez le type de ECC à encoder. +type: docs +weight: 84 +url: /fr/androidjava/com.aspose.barcode.generation/datamatrixversion/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum DataMatrixVersion extends Enum +``` + +Spécifiez le type de ECC à encoder. +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Spécifie de choisir automatiquement la plus petite taille pour DataMatrix. | +| [DMRE_12x64](#DMRE-12x64) | Spécifie une taille de 12 × 64 modules pour les codes-barres DMRE. | +| [DMRE_12x88](#DMRE-12x88) | Spécifie une taille de 12 × 88 modules pour les codes-barres DMRE. | +| [DMRE_16x64](#DMRE-16x64) | Spécifie une taille de 16 × 64 modules pour les codes-barres DMRE. | +| [DMRE_20x36](#DMRE-20x36) | Spécifie une taille de 20 × 36 modules pour les codes-barres DMRE. | +| [DMRE_20x44](#DMRE-20x44) | Spécifie une taille de 20 × 44 modules pour les codes-barres DMRE. | +| [DMRE_20x64](#DMRE-20x64) | Spécifie une taille de 20 × 64 modules pour les codes-barres DMRE. | +| [DMRE_22x48](#DMRE-22x48) | Spécifie une taille de 22 × 48 modules pour les codes-barres DMRE. | +| [DMRE_24x48](#DMRE-24x48) | Spécifie une taille de 24 × 48 modules pour les codes-barres DMRE. | +| [DMRE_24x64](#DMRE-24x64) | Spécifie une taille de 24 × 64 modules pour les codes-barres DMRE. | +| [DMRE_26x40](#DMRE-26x40) | Spécifie la taille de 26 x 40 modules pour les codes-barres DMRE. | +| [DMRE_26x48](#DMRE-26x48) | Spécifie la taille de 26 x 48 modules pour les codes-barres DMRE. | +| [DMRE_26x64](#DMRE-26x64) | Spécifie la taille de 26 x 64 modules pour les codes-barres DMRE. | +| [DMRE_8x120](#DMRE-8x120) | Spécifie la taille de 8 x 120 modules pour les codes-barres DMRE. | +| [DMRE_8x144](#DMRE-8x144) | Spécifie la taille de 8 x 144 modules pour les codes-barres DMRE. | +| [DMRE_8x48](#DMRE-8x48) | Spécifie la taille de 8 x 48 modules pour les codes-barres DMRE. | +| [DMRE_8x64](#DMRE-8x64) | Spécifie la taille de 8 x 64 modules pour les codes-barres DMRE. | +| [DMRE_8x80](#DMRE-8x80) | Spécifie la taille de 8 x 80 modules pour les codes-barres DMRE. | +| [DMRE_8x96](#DMRE-8x96) | Spécifie la taille de 8 x 96 modules pour les codes-barres DMRE. | +| [ECC000_050_11x11](#ECC000-050-11x11) | Spécifie la taille de 11 x 11 modules pour les types ECC000-ECC050. | +| [ECC000_100_13x13](#ECC000-100-13x13) | Spécifie la taille de 13 x 13 modules pour les types ECC000-ECC100. | +| [ECC000_100_15x15](#ECC000-100-15x15) | Spécifie la taille de 15 x 15 modules pour les types ECC000-ECC100. | +| [ECC000_140_17x17](#ECC000-140-17x17) | Spécifie la taille de 17 x 17 modules pour les types ECC000-ECC140. | +| [ECC000_140_19x19](#ECC000-140-19x19) | Spécifie la taille de 19 x 19 modules pour les types ECC000-ECC140. | +| [ECC000_140_21x21](#ECC000-140-21x21) | Spécifie la taille de 21 x 21 modules pour les types ECC000-ECC140. | +| [ECC000_140_23x23](#ECC000-140-23x23) | Spécifie la taille de 23 x 23 modules pour les types ECC000-ECC140. | +| [ECC000_140_25x25](#ECC000-140-25x25) | Spécifie la taille de 25 x 25 modules pour les types ECC000-ECC140. | +| [ECC000_140_27x27](#ECC000-140-27x27) | Spécifie la taille de 27 x 27 modules pour les types ECC000-ECC140. | +| [ECC000_140_29x29](#ECC000-140-29x29) | Spécifie la taille de 29 x 29 modules pour les types ECC000-ECC140. | +| [ECC000_140_31x31](#ECC000-140-31x31) | Spécifie la taille de 31 x 31 modules pour les types ECC000-ECC140. | +| [ECC000_140_33x33](#ECC000-140-33x33) | Spécifie la taille de 33 x 33 modules pour les types ECC000-ECC140. | +| [ECC000_140_35x35](#ECC000-140-35x35) | Spécifie la taille de 35 x 35 modules pour les types ECC000-ECC140. | +| [ECC000_140_37x37](#ECC000-140-37x37) | Spécifie la taille de 37 x 37 modules pour les types ECC000-ECC140. | +| [ECC000_140_39x39](#ECC000-140-39x39) | Spécifie la taille de 39 x 39 modules pour les types ECC000-ECC140. | +| [ECC000_140_41x41](#ECC000-140-41x41) | Spécifie la taille de 41 x 41 modules pour les types ECC000-ECC140. | +| [ECC000_140_43x43](#ECC000-140-43x43) | Spécifie la taille de 43 x 43 modules pour les types ECC000-ECC140. | +| [ECC000_140_45x45](#ECC000-140-45x45) | Spécifie la taille de 45 x 45 modules pour les types ECC000-ECC140. | +| [ECC000_140_47x47](#ECC000-140-47x47) | Spécifie la taille de 47 x 47 modules pour les types ECC000-ECC140. | +| [ECC000_140_49x49](#ECC000-140-49x49) | Spécifie la taille de 49 x 49 modules pour les types ECC000-ECC140. | +| [ECC000_9x9](#ECC000-9x9) | Spécifie la taille de 9 x 9 modules pour le type ECC000. | +| [ECC200_104x104](#ECC200-104x104) | Spécifie la taille de 104 x 104 modules pour le type ECC200. | +| [ECC200_10x10](#ECC200-10x10) | Spécifie la taille de 10 x 10 modules pour le type ECC200. | +| [ECC200_120x120](#ECC200-120x120) | Spécifie la taille de 120 x 120 modules pour le type ECC200. | +| [ECC200_12x12](#ECC200-12x12) | Spécifie la taille de 12 x 12 modules pour le type ECC200. | +| [ECC200_12x26](#ECC200-12x26) | Spécifie la taille de 12 x 26 modules pour le type ECC200. | +| [ECC200_12x36](#ECC200-12x36) | Spécifie la taille de 12 x 36 modules pour le type ECC200. | +| [ECC200_132x132](#ECC200-132x132) | Spécifie la taille de 132 x 132 modules pour le type ECC200. | +| [ECC200_144x144](#ECC200-144x144) | Spécifie la taille de 144 x 144 modules pour le type ECC200. | +| [ECC200_14x14](#ECC200-14x14) | Spécifie la taille de 14 x 14 modules pour le type ECC200. | +| [ECC200_16x16](#ECC200-16x16) | Spécifie la taille de 16 x 16 modules pour le type ECC200. | +| [ECC200_16x36](#ECC200-16x36) | Spécifie la taille de 16 x 36 modules pour le type ECC200. | +| [ECC200_16x48](#ECC200-16x48) | Spécifie la taille de 16 x 48 modules pour le type ECC200. | +| [ECC200_18x18](#ECC200-18x18) | Spécifie la taille de 18 x 18 modules pour le type ECC200. | +| [ECC200_20x20](#ECC200-20x20) | Spécifie la taille de 20 x 20 modules pour le type ECC200. | +| [ECC200_22x22](#ECC200-22x22) | Spécifie la taille de 22 x 22 modules pour le type ECC200. | +| [ECC200_24x24](#ECC200-24x24) | Spécifie la taille de 24 x 24 modules pour le type ECC200. | +| [ECC200_26x26](#ECC200-26x26) | Spécifie la taille de 26 x 26 modules pour le type ECC200. | +| [ECC200_32x32](#ECC200-32x32) | Spécifie la taille de 32 x 32 modules pour le type ECC200. | +| [ECC200_36x36](#ECC200-36x36) | Spécifie la taille de 36 x 36 modules pour le type ECC200. | +| [ECC200_40x40](#ECC200-40x40) | Spécifie la taille de 40 x 40 modules pour le type ECC200. | +| [ECC200_44x44](#ECC200-44x44) | Specifies size of 44 x 44 modules for ECC200 type. | +| [ECC200_48x48](#ECC200-48x48) | Specifies size of 48 x 48 modules for ECC200 type. | +| [ECC200_52x52](#ECC200-52x52) | Specifies size of 52 x 52 modules for ECC200 type. | +| [ECC200_64x64](#ECC200-64x64) | Specifies size of 64 x 64 modules for ECC200 type. | +| [ECC200_72x72](#ECC200-72x72) | Specifies size of 72 x 72 modules for ECC200 type. | +| [ECC200_80x80](#ECC200-80x80) | Specifies size of 80 x 80 modules for ECC200 type. | +| [ECC200_88x88](#ECC200-88x88) | Specifies size of 88 x 88 modules for ECC200 type. | +| [ECC200_8x18](#ECC200-8x18) | Specifies size of 8 x 18 modules for ECC200 type. | +| [ECC200_8x32](#ECC200-8x32) | Specifies size of 8 x 32 modules for ECC200 type. | +| [ECC200_96x96](#ECC200-96x96) | Specifies size of 96 x 96 modules for ECC200 type. | +| [ROWS_COLUMNS](#ROWS-COLUMNS) | Instructs to get symbol sizes from Rows And Columns parameters. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final DataMatrixVersion AUTO +``` + + +Specifies to automatically pick up the smallest size for DataMatrix. This is default value. + +### DMRE_12x64 {#DMRE-12x64} +``` +public static final DataMatrixVersion DMRE_12x64 +``` + + +Spécifie une taille de 12 × 64 modules pour les codes-barres DMRE. + +### DMRE_12x88 {#DMRE-12x88} +``` +public static final DataMatrixVersion DMRE_12x88 +``` + + +Spécifie une taille de 12 × 88 modules pour les codes-barres DMRE. + +### DMRE_16x64 {#DMRE-16x64} +``` +public static final DataMatrixVersion DMRE_16x64 +``` + + +Spécifie une taille de 16 × 64 modules pour les codes-barres DMRE. + +### DMRE_20x36 {#DMRE-20x36} +``` +public static final DataMatrixVersion DMRE_20x36 +``` + + +Spécifie une taille de 20 × 36 modules pour les codes-barres DMRE. + +### DMRE_20x44 {#DMRE-20x44} +``` +public static final DataMatrixVersion DMRE_20x44 +``` + + +Spécifie une taille de 20 × 44 modules pour les codes-barres DMRE. + +### DMRE_20x64 {#DMRE-20x64} +``` +public static final DataMatrixVersion DMRE_20x64 +``` + + +Spécifie une taille de 20 × 64 modules pour les codes-barres DMRE. + +### DMRE_22x48 {#DMRE-22x48} +``` +public static final DataMatrixVersion DMRE_22x48 +``` + + +Spécifie une taille de 22 × 48 modules pour les codes-barres DMRE. + +### DMRE_24x48 {#DMRE-24x48} +``` +public static final DataMatrixVersion DMRE_24x48 +``` + + +Spécifie une taille de 24 × 48 modules pour les codes-barres DMRE. + +### DMRE_24x64 {#DMRE-24x64} +``` +public static final DataMatrixVersion DMRE_24x64 +``` + + +Spécifie une taille de 24 × 64 modules pour les codes-barres DMRE. + +### DMRE_26x40 {#DMRE-26x40} +``` +public static final DataMatrixVersion DMRE_26x40 +``` + + +Spécifie la taille de 26 x 40 modules pour les codes-barres DMRE. + +### DMRE_26x48 {#DMRE-26x48} +``` +public static final DataMatrixVersion DMRE_26x48 +``` + + +Spécifie la taille de 26 x 48 modules pour les codes-barres DMRE. + +### DMRE_26x64 {#DMRE-26x64} +``` +public static final DataMatrixVersion DMRE_26x64 +``` + + +Spécifie la taille de 26 x 64 modules pour les codes-barres DMRE. + +### DMRE_8x120 {#DMRE-8x120} +``` +public static final DataMatrixVersion DMRE_8x120 +``` + + +Spécifie la taille de 8 x 120 modules pour les codes-barres DMRE. + +### DMRE_8x144 {#DMRE-8x144} +``` +public static final DataMatrixVersion DMRE_8x144 +``` + + +Spécifie la taille de 8 x 144 modules pour les codes-barres DMRE. + +### DMRE_8x48 {#DMRE-8x48} +``` +public static final DataMatrixVersion DMRE_8x48 +``` + + +Spécifie la taille de 8 x 48 modules pour les codes-barres DMRE. + +### DMRE_8x64 {#DMRE-8x64} +``` +public static final DataMatrixVersion DMRE_8x64 +``` + + +Spécifie la taille de 8 x 64 modules pour les codes-barres DMRE. + +### DMRE_8x80 {#DMRE-8x80} +``` +public static final DataMatrixVersion DMRE_8x80 +``` + + +Spécifie la taille de 8 x 80 modules pour les codes-barres DMRE. + +### DMRE_8x96 {#DMRE-8x96} +``` +public static final DataMatrixVersion DMRE_8x96 +``` + + +Spécifie la taille de 8 x 96 modules pour les codes-barres DMRE. + +### ECC000_050_11x11 {#ECC000-050-11x11} +``` +public static final DataMatrixVersion ECC000_050_11x11 +``` + + +Spécifie la taille de 11 x 11 modules pour les types ECC000-ECC050. + +### ECC000_100_13x13 {#ECC000-100-13x13} +``` +public static final DataMatrixVersion ECC000_100_13x13 +``` + + +Spécifie la taille de 13 x 13 modules pour les types ECC000-ECC100. + +### ECC000_100_15x15 {#ECC000-100-15x15} +``` +public static final DataMatrixVersion ECC000_100_15x15 +``` + + +Spécifie la taille de 15 x 15 modules pour les types ECC000-ECC100. + +### ECC000_140_17x17 {#ECC000-140-17x17} +``` +public static final DataMatrixVersion ECC000_140_17x17 +``` + + +Spécifie la taille de 17 x 17 modules pour les types ECC000-ECC140. + +### ECC000_140_19x19 {#ECC000-140-19x19} +``` +public static final DataMatrixVersion ECC000_140_19x19 +``` + + +Spécifie la taille de 19 x 19 modules pour les types ECC000-ECC140. + +### ECC000_140_21x21 {#ECC000-140-21x21} +``` +public static final DataMatrixVersion ECC000_140_21x21 +``` + + +Spécifie la taille de 21 x 21 modules pour les types ECC000-ECC140. + +### ECC000_140_23x23 {#ECC000-140-23x23} +``` +public static final DataMatrixVersion ECC000_140_23x23 +``` + + +Spécifie la taille de 23 x 23 modules pour les types ECC000-ECC140. + +### ECC000_140_25x25 {#ECC000-140-25x25} +``` +public static final DataMatrixVersion ECC000_140_25x25 +``` + + +Spécifie la taille de 25 x 25 modules pour les types ECC000-ECC140. + +### ECC000_140_27x27 {#ECC000-140-27x27} +``` +public static final DataMatrixVersion ECC000_140_27x27 +``` + + +Spécifie la taille de 27 x 27 modules pour les types ECC000-ECC140. + +### ECC000_140_29x29 {#ECC000-140-29x29} +``` +public static final DataMatrixVersion ECC000_140_29x29 +``` + + +Spécifie la taille de 29 x 29 modules pour les types ECC000-ECC140. + +### ECC000_140_31x31 {#ECC000-140-31x31} +``` +public static final DataMatrixVersion ECC000_140_31x31 +``` + + +Spécifie la taille de 31 x 31 modules pour les types ECC000-ECC140. + +### ECC000_140_33x33 {#ECC000-140-33x33} +``` +public static final DataMatrixVersion ECC000_140_33x33 +``` + + +Spécifie la taille de 33 x 33 modules pour les types ECC000-ECC140. + +### ECC000_140_35x35 {#ECC000-140-35x35} +``` +public static final DataMatrixVersion ECC000_140_35x35 +``` + + +Spécifie la taille de 35 x 35 modules pour les types ECC000-ECC140. + +### ECC000_140_37x37 {#ECC000-140-37x37} +``` +public static final DataMatrixVersion ECC000_140_37x37 +``` + + +Spécifie la taille de 37 x 37 modules pour les types ECC000-ECC140. + +### ECC000_140_39x39 {#ECC000-140-39x39} +``` +public static final DataMatrixVersion ECC000_140_39x39 +``` + + +Spécifie la taille de 39 x 39 modules pour les types ECC000-ECC140. + +### ECC000_140_41x41 {#ECC000-140-41x41} +``` +public static final DataMatrixVersion ECC000_140_41x41 +``` + + +Spécifie la taille de 41 x 41 modules pour les types ECC000-ECC140. + +### ECC000_140_43x43 {#ECC000-140-43x43} +``` +public static final DataMatrixVersion ECC000_140_43x43 +``` + + +Spécifie la taille de 43 x 43 modules pour les types ECC000-ECC140. + +### ECC000_140_45x45 {#ECC000-140-45x45} +``` +public static final DataMatrixVersion ECC000_140_45x45 +``` + + +Spécifie la taille de 45 x 45 modules pour les types ECC000-ECC140. + +### ECC000_140_47x47 {#ECC000-140-47x47} +``` +public static final DataMatrixVersion ECC000_140_47x47 +``` + + +Spécifie la taille de 47 x 47 modules pour les types ECC000-ECC140. + +### ECC000_140_49x49 {#ECC000-140-49x49} +``` +public static final DataMatrixVersion ECC000_140_49x49 +``` + + +Spécifie la taille de 49 x 49 modules pour les types ECC000-ECC140. + +### ECC000_9x9 {#ECC000-9x9} +``` +public static final DataMatrixVersion ECC000_9x9 +``` + + +Spécifie la taille de 9 x 9 modules pour le type ECC000. + +### ECC200_104x104 {#ECC200-104x104} +``` +public static final DataMatrixVersion ECC200_104x104 +``` + + +Spécifie la taille de 104 x 104 modules pour le type ECC200. + +### ECC200_10x10 {#ECC200-10x10} +``` +public static final DataMatrixVersion ECC200_10x10 +``` + + +Spécifie la taille de 10 x 10 modules pour le type ECC200. + +### ECC200_120x120 {#ECC200-120x120} +``` +public static final DataMatrixVersion ECC200_120x120 +``` + + +Spécifie la taille de 120 x 120 modules pour le type ECC200. + +### ECC200_12x12 {#ECC200-12x12} +``` +public static final DataMatrixVersion ECC200_12x12 +``` + + +Spécifie la taille de 12 x 12 modules pour le type ECC200. + +### ECC200_12x26 {#ECC200-12x26} +``` +public static final DataMatrixVersion ECC200_12x26 +``` + + +Spécifie la taille de 12 x 26 modules pour le type ECC200. + +### ECC200_12x36 {#ECC200-12x36} +``` +public static final DataMatrixVersion ECC200_12x36 +``` + + +Spécifie la taille de 12 x 36 modules pour le type ECC200. + +### ECC200_132x132 {#ECC200-132x132} +``` +public static final DataMatrixVersion ECC200_132x132 +``` + + +Spécifie la taille de 132 x 132 modules pour le type ECC200. + +### ECC200_144x144 {#ECC200-144x144} +``` +public static final DataMatrixVersion ECC200_144x144 +``` + + +Spécifie la taille de 144 x 144 modules pour le type ECC200. + +### ECC200_14x14 {#ECC200-14x14} +``` +public static final DataMatrixVersion ECC200_14x14 +``` + + +Spécifie la taille de 14 x 14 modules pour le type ECC200. + +### ECC200_16x16 {#ECC200-16x16} +``` +public static final DataMatrixVersion ECC200_16x16 +``` + + +Spécifie la taille de 16 x 16 modules pour le type ECC200. + +### ECC200_16x36 {#ECC200-16x36} +``` +public static final DataMatrixVersion ECC200_16x36 +``` + + +Spécifie la taille de 16 x 36 modules pour le type ECC200. + +### ECC200_16x48 {#ECC200-16x48} +``` +public static final DataMatrixVersion ECC200_16x48 +``` + + +Spécifie la taille de 16 x 48 modules pour le type ECC200. + +### ECC200_18x18 {#ECC200-18x18} +``` +public static final DataMatrixVersion ECC200_18x18 +``` + + +Spécifie la taille de 18 x 18 modules pour le type ECC200. + +### ECC200_20x20 {#ECC200-20x20} +``` +public static final DataMatrixVersion ECC200_20x20 +``` + + +Spécifie la taille de 20 x 20 modules pour le type ECC200. + +### ECC200_22x22 {#ECC200-22x22} +``` +public static final DataMatrixVersion ECC200_22x22 +``` + + +Spécifie la taille de 22 x 22 modules pour le type ECC200. + +### ECC200_24x24 {#ECC200-24x24} +``` +public static final DataMatrixVersion ECC200_24x24 +``` + + +Spécifie la taille de 24 x 24 modules pour le type ECC200. + +### ECC200_26x26 {#ECC200-26x26} +``` +public static final DataMatrixVersion ECC200_26x26 +``` + + +Spécifie la taille de 26 x 26 modules pour le type ECC200. + +### ECC200_32x32 {#ECC200-32x32} +``` +public static final DataMatrixVersion ECC200_32x32 +``` + + +Spécifie la taille de 32 x 32 modules pour le type ECC200. + +### ECC200_36x36 {#ECC200-36x36} +``` +public static final DataMatrixVersion ECC200_36x36 +``` + + +Spécifie la taille de 36 x 36 modules pour le type ECC200. + +### ECC200_40x40 {#ECC200-40x40} +``` +public static final DataMatrixVersion ECC200_40x40 +``` + + +Spécifie la taille de 40 x 40 modules pour le type ECC200. + +### ECC200_44x44 {#ECC200-44x44} +``` +public static final DataMatrixVersion ECC200_44x44 +``` + + +Specifies size of 44 x 44 modules for ECC200 type. + +### ECC200_48x48 {#ECC200-48x48} +``` +public static final DataMatrixVersion ECC200_48x48 +``` + + +Specifies size of 48 x 48 modules for ECC200 type. + +### ECC200_52x52 {#ECC200-52x52} +``` +public static final DataMatrixVersion ECC200_52x52 +``` + + +Specifies size of 52 x 52 modules for ECC200 type. + +### ECC200_64x64 {#ECC200-64x64} +``` +public static final DataMatrixVersion ECC200_64x64 +``` + + +Specifies size of 64 x 64 modules for ECC200 type. + +### ECC200_72x72 {#ECC200-72x72} +``` +public static final DataMatrixVersion ECC200_72x72 +``` + + +Specifies size of 72 x 72 modules for ECC200 type. + +### ECC200_80x80 {#ECC200-80x80} +``` +public static final DataMatrixVersion ECC200_80x80 +``` + + +Specifies size of 80 x 80 modules for ECC200 type. + +### ECC200_88x88 {#ECC200-88x88} +``` +public static final DataMatrixVersion ECC200_88x88 +``` + + +Specifies size of 88 x 88 modules for ECC200 type. + +### ECC200_8x18 {#ECC200-8x18} +``` +public static final DataMatrixVersion ECC200_8x18 +``` + + +Specifies size of 8 x 18 modules for ECC200 type. + +### ECC200_8x32 {#ECC200-8x32} +``` +public static final DataMatrixVersion ECC200_8x32 +``` + + +Specifies size of 8 x 32 modules for ECC200 type. + +### ECC200_96x96 {#ECC200-96x96} +``` +public static final DataMatrixVersion ECC200_96x96 +``` + + +Specifies size of 96 x 96 modules for ECC200 type. + +### ROWS_COLUMNS {#ROWS-COLUMNS} +``` +public static final DataMatrixVersion ROWS_COLUMNS +``` + + +Instructs to get symbol sizes from Rows And Columns parameters. Note that DataMatrix does not support custom rows and columns numbers. This option is not recommended to use. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static DataMatrixVersion valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[DataMatrixVersion](../../com.aspose.barcode.generation/datamatrixversion) +### values() {#values--} +``` +public static DataMatrixVersion[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.DataMatrixVersion[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/dotcodeencodemode/_index.md b/french/androidjava/com.aspose.barcode.generation/dotcodeencodemode/_index.md new file mode 100644 index 000000000..29e81cd69 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/dotcodeencodemode/_index.md @@ -0,0 +1,360 @@ +--- +title: DotCodeEncodeMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode d'encodage pour les codes-barres DotCode. +type: docs +weight: 85 +url: /fr/androidjava/com.aspose.barcode.generation/dotcodeencodemode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum DotCodeEncodeMode extends Enum +``` + +Mode d'encodage pour les codes-barres DotCode. + +-------------------- + +> ``` +> //Auto mode with macros +> String codetext = ""[)>05CodetextWithMacros05""; +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, codetext); +> { +> generator.save("test.bmp"); +> } +> +> //Auto mode +> String codetext = "\u72acRight\u72d7"; +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, codetext); +> { +> generator.getParameters().getBarcode().getDotCode().setECIEncoding(ECIEncodings.UTF8); +> generator.save("test.bmp"); +> } +> +> //Bytes mode +> byte[] encodedArr = { 0xFF, 0xFE, 0xFD, 0xFC, 0xFB, 0xFA, 0xF9 }; +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DOT_CODE); +> { +> generator.setCodetext(encodedArr); +> generator.getParameters().getBarcode().getDotCode().setDotCodeEncodeMode(DotCodeEncodeMode.BINARY); +> generator.save("test.bmp"); +> } +> //Extended codetext mode +> //create codetext +> DotCodeExtCodetextBuilder textBuilder = new DotCodeExtCodetextBuilder(); +> textBuilder.addFNC1FormatIdentifier(); +> textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +> textBuilder.addFNC1FormatIdentifier(); +> textBuilder.addECICodetext(ECIEncodings.UTF8, "\u72acRight\u72d7"); +> textBuilder.addFNC3SymbolSeparator(); +> textBuilder.addFNC1FormatIdentifier(); +> textBuilder.addECICodetext(ECIEncodings.UTF16BE, "\u72acPower\u72d7"); +> textBuilder.addPlainCodetext("Plain text"); +> //generate codetext +> String codetext = textBuilder.getExtended(); +> //generate +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, codetext); +> { +> generator.getParameters().getBarcode().getDotCode().setDotCodeEncodeMode(DotCodeEncodeMode.EXTENDED_CODETEXT); +> generator.save("test.bmp"); +> } +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | En mode Auto, le CodeText est encodé avec une compacité maximale des données. | +| [BINARY](#BINARY) | En mode Binaire, le CodeText est encodé avec une compacité maximale des données. | +| [BYTES](#BYTES) | Encoder le texte de code en octets simples. | +| [ECI](#ECI) | En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. | +| [EXTENDED](#EXTENDED) | | +| [EXTENDED_CODETEXT](#EXTENDED-CODETEXT) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final DotCodeEncodeMode AUTO +``` + + +En mode Auto, le CodeText est encodé avec une compacité maximale des données. Les caractères Unicode sont ré‑encodés dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. Si un caractère est trouvé qui n’est pas pris en charge par l’encodage ECI sélectionné, une exception est levée. + +### BINARY {#BINARY} +``` +public static final DotCodeEncodeMode BINARY +``` + + +En mode Binaire, le CodeText est encodé avec une compacité maximale des données. Si un caractère Unicode est trouvé, une exception est levée. + +### BYTES {#BYTES} +``` +public static final DotCodeEncodeMode BYTES +``` + + +Encoder le texte de code en octets simples. Si un caractère Unicode est détecté, le caractère sera encodé en deux octets, l’octet de poids faible en premier. + +### ECI {#ECI} +``` +public static final DotCodeEncodeMode ECI +``` + + +En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. Si un caractère est trouvé qui n’est pas pris en charge par l’encodage ECI sélectionné, une exception est levée. Veuillez noter que certains scanners anciens (pré‑2006) peuvent ne pas prendre en charge ce mode. + +### EXTENDED {#EXTENDED} +``` +public static final DotCodeEncodeMode EXTENDED +``` + + +Mode étendu qui prend en charge plusieurs modes ECI. + +Il est préférable d'utiliser DotCodeExtCodetextBuilder pour la génération de texte codé étendu. + +Utilisez la propriété Display2DText pour définir le texte visible en supprimant les caractères de gestion. + +Les identifiants ECI sont définis comme une barre oblique unique et un identifiant à six chiffres "\\000026" - identifiant ECI UTF‑8. + +Tous les caractères Unicode après l’identifiant ECI sont automatiquement encodés dans le jeu de caractères correct. + +### EXTENDED_CODETEXT {#EXTENDED-CODETEXT} +``` +public static final DotCodeEncodeMode EXTENDED_CODETEXT +``` + + +Mode étendu qui prend en charge plusieurs modes ECI. + +Il est préférable d'utiliser DotCodeExtCodetextBuilder pour la génération de texte codé étendu. + +Utilisez la propriété Display2DText pour définir le texte visible en supprimant les caractères de gestion. + +Les identifiants ECI sont définis comme une barre oblique unique et un identifiant à six chiffres "\\000026" - identifiant ECI UTF‑8. + +Tous les caractères Unicode après l’identifiant ECI sont automatiquement encodés dans le jeu de caractères correct. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static DotCodeEncodeMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[DotCodeEncodeMode](../../com.aspose.barcode.generation/dotcodeencodemode) +### values() {#values--} +``` +public static DotCodeEncodeMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.DotCodeEncodeMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/dotcodeextcodetextbuilder/_index.md b/french/androidjava/com.aspose.barcode.generation/dotcodeextcodetextbuilder/_index.md new file mode 100644 index 000000000..689196de5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/dotcodeextcodetextbuilder/_index.md @@ -0,0 +1,268 @@ +--- +title: DotCodeExtCodetextBuilder +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 35 +url: /fr/androidjava/com.aspose.barcode.generation/dotcodeextcodetextbuilder/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.generation.ExtCodetextBuilder](../../com.aspose.barcode.generation/extcodetextbuilder) +``` +public class DotCodeExtCodetextBuilder extends ExtCodetextBuilder +``` + +Générateur de codetext étendu pour les codes-barres 2D DotCode en mode ExtendedCodetext de DotCodeEncodeMode. + +-------------------- + +> ``` +> //Extended codetext mode +> //create codetext +> DotCodeExtCodetextBuilder textBuilder = new DotCodeExtCodetextBuilder(); +> textBuilder.addFNC1FormatIdentifier(); +> textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +> textBuilder.addFNC1FormatIdentifier(); +> textBuilder.addECICodetext(ECIEncodings.UTF8, "\u72acRight\u72d7"); +> textBuilder.addFNC1FormatIdentifier(); +> textBuilder.addECICodetext(ECIEncodings.UTF16BE, "\u72acPower\u72d7"); +> textBuilder.addPlainCodetext("Plain text"); +> textBuilder.addFNC3SymbolSeparator(); +> textBuilder.addFNC3ReaderInitialization(); +> textBuilder.addPlainCodetext("Reader initialization info"); +> //generate codetext +> String codetext = textBuilder.getExtendedCodetext(); +> //generate +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, codetext); +> { +> generator.getParameters().getBarcode().getDotCode().setDotCodeEncodeMode(DotCodeEncodeMode.EXTENDED_CODETEXT); +> generator.save("test.bmp"); +> } +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [DotCodeExtCodetextBuilder()](#DotCodeExtCodetextBuilder--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addECICodetext(int ECIEncoding, String codetext)](#addECICodetext-int-java.lang.String-) | Ajoute du codetext avec un identifiant de canal étendu. | +| [addFNC1FormatIdentifier()](#addFNC1FormatIdentifier--) | Ajoute l'identifiant de format FNC1 aux éléments de codetext étendu. | +| [addFNC3ReaderInitialization()](#addFNC3ReaderInitialization--) | Ajoute l'initialisation du lecteur FNC3 aux éléments de codetext étendu. | +| [addFNC3SymbolSeparator()](#addFNC3SymbolSeparator--) | Ajoute le séparateur de symbole FNC3 aux éléments de codetext étendu. | +| [addPlainCodetext(String codetext)](#addPlainCodetext-java.lang.String-) | Ajoute du texte de code simple aux éléments de texte de code étendu | +| [addStructuredAppendMode(int barcodeId, int barcodesCount)](#addStructuredAppendMode-int-int-) | Ajoute le mode d'ajout structuré aux éléments de codetext étendu. | +| [clear()](#clear--) | Efface les éléments de texte de code étendu | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getExtendedCodetext()](#getExtendedCodetext--) | Génère du texte de code étendu à partir de la liste de texte de code étendu. | +| [hashCode()](#hashCode--) | | +| [isNeedToShieldItemFromPrevECI(int Index)](#isNeedToShieldItemFromPrevECI-int-) | Vérifie la nécessité de protéger l'élément précédent par "\\000000" | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### DotCodeExtCodetextBuilder() {#DotCodeExtCodetextBuilder--} +``` +public DotCodeExtCodetextBuilder() +``` + + +### addECICodetext(int ECIEncoding, String codetext) {#addECICodetext-int-java.lang.String-} +``` +public void addECICodetext(int ECIEncoding, String codetext) +``` + + +Ajoute du codetext avec un identifiant de canal étendu. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| ECIEncoding | int | Identifiant de canal étendu | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu avec l'identifiant de canal étendu | + +### addFNC1FormatIdentifier() {#addFNC1FormatIdentifier--} +``` +public void addFNC1FormatIdentifier() +``` + + +Ajoute l'identifiant de format FNC1 aux éléments de codetext étendu. + +### addFNC3ReaderInitialization() {#addFNC3ReaderInitialization--} +``` +public void addFNC3ReaderInitialization() +``` + + +Ajoute l'initialisation du lecteur FNC3 aux éléments de codetext étendu. + +### addFNC3SymbolSeparator() {#addFNC3SymbolSeparator--} +``` +public void addFNC3SymbolSeparator() +``` + + +Ajoute le séparateur de symbole FNC3 aux éléments de codetext étendu. + +### addPlainCodetext(String codetext) {#addPlainCodetext-java.lang.String-} +``` +public void addPlainCodetext(String codetext) +``` + + +Ajoute du texte de code simple aux éléments de texte de code étendu + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu | + +### addStructuredAppendMode(int barcodeId, int barcodesCount) {#addStructuredAppendMode-int-int-} +``` +public void addStructuredAppendMode(int barcodeId, int barcodesCount) +``` + + +Ajoute le mode d'ajout structuré aux éléments de codetext étendu. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| barcodeId | int | ID du code-barres | +| barcodesCount | int | Nombre de codes-barres | + +### clear() {#clear--} +``` +public void clear() +``` + + +Efface les éléments de texte de code étendu + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getExtendedCodetext() {#getExtendedCodetext--} +``` +public String getExtendedCodetext() +``` + + +Génère du texte de code étendu à partir de la liste de texte de code étendu. + +**Returns:** +java.lang.String - Texte de code étendu en tant que chaîne +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isNeedToShieldItemFromPrevECI(int Index) {#isNeedToShieldItemFromPrevECI-int-} +``` +public boolean isNeedToShieldItemFromPrevECI(int Index) +``` + + +Vérifie la nécessité de protéger l'élément précédent par "\\000000" + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| Indice | int | Indice dans m\_List | + +**Returns:** +booléen - Nécessité de protéger +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/dotcodeparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/dotcodeparameters/_index.md new file mode 100644 index 000000000..869aac1c2 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/dotcodeparameters/_index.md @@ -0,0 +1,399 @@ +--- +title: DotCodeParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres DotCode. +type: docs +weight: 36 +url: /fr/androidjava/com.aspose.barcode.generation/dotcodeparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class DotCodeParameters +``` + +Paramètres DotCode. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio()](#getAspectRatio--) | Ratio hauteur/largeur du module du code-barres 2D. | +| [getClass()](#getClass--) | | +| [getColumns()](#getColumns--) | Identifies columns count. | +| [getDotCodeEncodeMode()](#getDotCodeEncodeMode--) | Identifies DotCode encode mode. | +| [getDotCodeStructuredAppendModeBarcodeId()](#getDotCodeStructuredAppendModeBarcodeId--) | Identifies the ID of the DotCode structured append mode barcode. | +| [getDotCodeStructuredAppendModeBarcodesCount()](#getDotCodeStructuredAppendModeBarcodesCount--) | Identifies DotCode structured append mode barcodes count. | +| [getECIEncoding()](#getECIEncoding--) | Identifies ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Identifies DotCode encode mode. | +| [getRows()](#getRows--) | Identifies rows count. | +| [getStructuredAppendModeBarcodeId()](#getStructuredAppendModeBarcodeId--) | Identifies the ID of the DotCode structured append mode barcode. | +| [getStructuredAppendModeBarcodesCount()](#getStructuredAppendModeBarcodesCount--) | Identifies DotCode structured append mode barcodes count. | +| [hashCode()](#hashCode--) | | +| [isReaderInitialization()](#isReaderInitialization--) | Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAspectRatio(float value)](#setAspectRatio-float-) | Ratio hauteur/largeur du module du code-barres 2D. | +| [setColumns(int value)](#setColumns-int-) | Identifies columns count. | +| [setDotCodeEncodeMode(DotCodeEncodeMode value)](#setDotCodeEncodeMode-com.aspose.barcode.generation.DotCodeEncodeMode-) | Identifies DotCode encode mode. | +| [setDotCodeStructuredAppendModeBarcodeId(int value)](#setDotCodeStructuredAppendModeBarcodeId-int-) | Identifies the ID of the DotCode structured append mode barcode. | +| [setDotCodeStructuredAppendModeBarcodesCount(int value)](#setDotCodeStructuredAppendModeBarcodesCount-int-) | Identifies DotCode structured append mode barcodes count. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Identifies ECI encoding. | +| [setEncodeMode(DotCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.DotCodeEncodeMode-) | Identifies DotCode encode mode. | +| [setReaderInitialization(boolean value)](#setReaderInitialization-boolean-) | Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. | +| [setRows(int value)](#setRows-int-) | Identifies rows count. | +| [setStructuredAppendModeBarcodeId(int value)](#setStructuredAppendModeBarcodeId-int-) | Identifies the ID of the DotCode structured append mode barcode. | +| [setStructuredAppendModeBarcodesCount(int value)](#setStructuredAppendModeBarcodesCount-int-) | Identifies DotCode structured append mode barcodes count. | +| [toString()](#toString--) | Returns a human-readable string representation of this [DotCodeParameters](../../com.aspose.barcode.generation/dotcodeparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAspectRatio() {#getAspectRatio--} +``` +public final float getAspectRatio() +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getColumns() {#getColumns--} +``` +public final int getColumns() +``` + + +Identifie le nombre de colonnes. La somme du nombre de lignes et du nombre de colonnes d'un symbole DotCode doit être impaire. Le nombre de colonnes doit être au moins de 5. Valeur par défaut : -1 + +**Returns:** +int +### getDotCodeEncodeMode() {#getDotCodeEncodeMode--} +``` +public final DotCodeEncodeMode getDotCodeEncodeMode() +``` + + +Identifie le mode d'encodage DotCode. Valeur par défaut : Auto. + +**Returns:** +[DotCodeEncodeMode](../../com.aspose.barcode.generation/dotcodeencodemode) +### getDotCodeStructuredAppendModeBarcodeId() {#getDotCodeStructuredAppendModeBarcodeId--} +``` +public final int getDotCodeStructuredAppendModeBarcodeId() +``` + + +Identifie l'ID du code‑barres en mode d'ajout structuré DotCode. L'ID commence à 1 et doit être inférieur ou égal au nombre de codes‑barres. La valeur par défaut est -1. + +**Returns:** +int +### getDotCodeStructuredAppendModeBarcodesCount() {#getDotCodeStructuredAppendModeBarcodesCount--} +``` +public final int getDotCodeStructuredAppendModeBarcodesCount() +``` + + +Identifie le nombre de codes‑barres en mode d'ajout structuré DotCode. La valeur par défaut est -1. Le nombre doit être compris entre 1 et 35. + +**Returns:** +int +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Identifie l'encodage ECI. Utilisé lorsque DotCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Returns:** +int +### getEncodeMode() {#getEncodeMode--} +``` +public final DotCodeEncodeMode getEncodeMode() +``` + + +Identifie le mode d'encodage DotCode. Valeur par défaut : Auto. + +**Returns:** +[DotCodeEncodeMode](../../com.aspose.barcode.generation/dotcodeencodemode) +### getRows() {#getRows--} +``` +public final int getRows() +``` + + +Identifie le nombre de lignes. La somme du nombre de lignes et du nombre de colonnes d'un symbole DotCode doit être impaire. Le nombre de lignes doit être au moins de 5. Valeur par défaut : -1 + +**Returns:** +int +### getStructuredAppendModeBarcodeId() {#getStructuredAppendModeBarcodeId--} +``` +public final int getStructuredAppendModeBarcodeId() +``` + + +Identifie l'ID du code‑barres en mode d'ajout structuré DotCode. L'ID commence à 1 et doit être inférieur ou égal au nombre de codes‑barres. La valeur par défaut est -1. + +**Returns:** +int +### getStructuredAppendModeBarcodesCount() {#getStructuredAppendModeBarcodesCount--} +``` +public final int getStructuredAppendModeBarcodesCount() +``` + + +Identifie le nombre de codes‑barres en mode d'ajout structuré DotCode. La valeur par défaut est -1. Le nombre doit être compris entre 1 et 35. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isReaderInitialization() {#isReaderInitialization--} +``` +public final boolean isReaderInitialization() +``` + + +Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. La valeur par défaut est false. + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAspectRatio(float value) {#setAspectRatio-float-} +``` +public final void setAspectRatio(float value) +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setColumns(int value) {#setColumns-int-} +``` +public final void setColumns(int value) +``` + + +Identifie le nombre de colonnes. La somme du nombre de lignes et du nombre de colonnes d'un symbole DotCode doit être impaire. Le nombre de colonnes doit être au moins de 5. Valeur par défaut : -1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setDotCodeEncodeMode(DotCodeEncodeMode value) {#setDotCodeEncodeMode-com.aspose.barcode.generation.DotCodeEncodeMode-} +``` +public final void setDotCodeEncodeMode(DotCodeEncodeMode value) +``` + + +Identifie le mode d'encodage DotCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [DotCodeEncodeMode](../../com.aspose.barcode.generation/dotcodeencodemode) | | + +### setDotCodeStructuredAppendModeBarcodeId(int value) {#setDotCodeStructuredAppendModeBarcodeId-int-} +``` +public final void setDotCodeStructuredAppendModeBarcodeId(int value) +``` + + +Identifie l'ID du code‑barres en mode d'ajout structuré DotCode. L'ID commence à 1 et doit être inférieur ou égal au nombre de codes‑barres. La valeur par défaut est -1. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setDotCodeStructuredAppendModeBarcodesCount(int value) {#setDotCodeStructuredAppendModeBarcodesCount-int-} +``` +public final void setDotCodeStructuredAppendModeBarcodesCount(int value) +``` + + +Identifie le nombre de codes‑barres en mode d'ajout structuré DotCode. La valeur par défaut est -1. Le nombre doit être compris entre 1 et 35. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Identifie l'encodage ECI. Utilisé lorsque DotCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setEncodeMode(DotCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.DotCodeEncodeMode-} +``` +public final void setEncodeMode(DotCodeEncodeMode value) +``` + + +Identifie le mode d'encodage DotCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [DotCodeEncodeMode](../../com.aspose.barcode.generation/dotcodeencodemode) | | + +### setReaderInitialization(boolean value) {#setReaderInitialization-boolean-} +``` +public final void setReaderInitialization(boolean value) +``` + + +Indique si le code est utilisé pour demander au lecteur d’interpréter les données suivantes comme des instructions d'initialisation ou de reprogrammation du lecteur de code-barres. La valeur par défaut est false. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setRows(int value) {#setRows-int-} +``` +public final void setRows(int value) +``` + + +Identifie le nombre de lignes. La somme du nombre de lignes et du nombre de colonnes d'un symbole DotCode doit être impaire. Le nombre de lignes doit être au moins de 5. Valeur par défaut : -1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setStructuredAppendModeBarcodeId(int value) {#setStructuredAppendModeBarcodeId-int-} +``` +public final void setStructuredAppendModeBarcodeId(int value) +``` + + +Identifie l'ID du code‑barres en mode d'ajout structuré DotCode. L'ID commence à 1 et doit être inférieur ou égal au nombre de codes‑barres. La valeur par défaut est -1. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setStructuredAppendModeBarcodesCount(int value) {#setStructuredAppendModeBarcodesCount-int-} +``` +public final void setStructuredAppendModeBarcodesCount(int value) +``` + + +Identifie le nombre de codes‑barres en mode d'ajout structuré DotCode. La valeur par défaut est -1. Le nombre doit être compris entre 1 et 35. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Returns a human-readable string representation of this [DotCodeParameters](../../com.aspose.barcode.generation/dotcodeparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente cet [DotCodeParameters](../../com.aspose.barcode.generation/dotcodeparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/eciencodings/_index.md b/french/androidjava/com.aspose.barcode.generation/eciencodings/_index.md new file mode 100644 index 000000000..c25d6e968 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/eciencodings/_index.md @@ -0,0 +1,867 @@ +--- +title: ECIEncodings +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Identifiants d'interprétation de canal étendu. +type: docs +weight: 37 +url: /fr/androidjava/com.aspose.barcode.generation/eciencodings/ +--- +**Inheritance:** +java.lang.Object, com.aspose.ms.System.ValueType, com.aspose.ms.System.Enum +``` +public final class ECIEncodings extends System.Enum +``` + +Identifiants d'interprétation de canal étendu. Il est utilisé pour informer le lecteur de code-barres des détails concernant les références utilisées pour encoder les données dans le symbole. + +-------------------- + +> ``` +> Example how to use ECI encoding +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); +> generator.setCodeText("12345TEXT"); +> generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.ECIEncoding); +> generator.getParameters().getBarcode().getQR().setQrECIEncoding(ECIEncodings.UTF8); +> generator.save("test.png"); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [BINARY](#BINARY) | Données binaires 8 bits. | +| [Big5](#Big5) | Encodage du jeu de caractères chinois Big 5 (Taïwan). | +| [EUC_KR](#EUC-KR) | Encodage du jeu de caractères coréen. | +| [EnumSeparatorCharArray](#EnumSeparatorCharArray) | | +| [GB18030](#GB18030) | Encodage du jeu de caractères chinois GGB18030. | +| [GB2312](#GB2312) | Encodage du jeu de caractères chinois GB2312. | +| [GBK](#GBK) | Encodage GBK (extension de GB2312 pour le chinois simplifié). | +| [INVARIANT](#INVARIANT) | ISO/IEC 646: jeu de caractères codé ISO 7 bits - encodage du jeu de caractères invariants. | +| [ISO_8859_1](#ISO-8859-1) | ISO/IEC 8859-1 alphabet latin n°. | +| [ISO_8859_10](#ISO-8859-10) | ISO/IEC 8859-10 alphabet latin n°. | +| [ISO_8859_11](#ISO-8859-11) | ISO/IEC 8859-11 encodage de l'alphabet latin/thai. | +| [ISO_8859_13](#ISO-8859-13) | ISO/IEC 8859-13 alphabet latin n°. | +| [ISO_8859_14](#ISO-8859-14) | ISO/IEC 8859-14 alphabet latin n°. | +| [ISO_8859_15](#ISO-8859-15) | ISO/IEC 8859-15 alphabet latin n°. | +| [ISO_8859_16](#ISO-8859-16) | ISO/IEC 8859-16 alphabet latin n°. | +| [ISO_8859_2](#ISO-8859-2) | ISO/IEC 8859-2 alphabet latin n°. | +| [ISO_8859_3](#ISO-8859-3) | ISO/IEC 8859-3 alphabet latin n°. | +| [ISO_8859_4](#ISO-8859-4) | ISO/IEC 8859-4 alphabet latin n°. | +| [ISO_8859_5](#ISO-8859-5) | Encodage de l'alphabet latin/cyrillique ISO/IEC 8859-5. | +| [ISO_8859_6](#ISO-8859-6) | Encodage de l'alphabet latin/arabe ISO/IEC 8859-6. | +| [ISO_8859_7](#ISO-8859-7) | Encodage de l'alphabet latin/grec ISO/IEC 8859-7. | +| [ISO_8859_8](#ISO-8859-8) | Encodage de l'alphabet latin/hébreu ISO/IEC 8859-8. | +| [ISO_8859_9](#ISO-8859-9) | ISO/IEC 8859-9 alphabet latin n°. | +| [NONE](#NONE) | Pas d'interprétation de canal étendue/p> | +| [Shift_JIS](#Shift-JIS) | Encodage Shift JIS (JIS X 0208 Annexe 1 + JIS X 0201). | +| [US_ASCII](#US-ASCII) | ISO/IEC 646:1991 version de référence internationale du jeu de caractères codé ISO 7 bits encodage. | +| [UTF16BE](#UTF16BE) | Encodage ISO/IEC 10646 UCS-2 (octet de poids fort en premier). | +| [UTF16LE](#UTF16LE) | Encodage ISO/IEC 10646 UTF-16LE. | +| [UTF32BE](#UTF32BE) | Encodage ISO/IEC 10646 UTF-32BE. | +| [UTF32LE](#UTF32LE) | Encodage ISO/IEC 10646 UTF-32LE. | +| [UTF8](#UTF8) | Encodage ISO/IEC 10646 UTF-8. | +| [Win1250](#Win1250) | Encodage Windows 1250 Latin 2 (Europe centrale). | +| [Win1251](#Win1251) | Encodage Windows 1251 cyrillique. | +| [Win1252](#Win1252) | Encodage Windows 1252 Latin 1. | +| [Win1256](#Win1256) | Encodage Windows 1256 arabe. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [Clone()](#Clone--) | | +| [CloneTo(T that)](#CloneTo-T-) | | +| [CloneTo(System.Enum that)](#CloneTo-com.aspose.ms.System.Enum-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [format(System.Type enumType, Object value, String format)](#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-) | | +| [format(Class enumType, long value, String format)](#format-java.lang.Class----long-java.lang.String-) | | +| [getClass()](#getClass--) | | +| [getName(System.Type enumType, Object value)](#getName-com.aspose.ms.System.Type-java.lang.Object-) | | +| [getName(Class enumType, long value)](#getName-java.lang.Class----long-) | | +| [getNames(System.Type enumType)](#getNames-com.aspose.ms.System.Type-) | | +| [getNames(Class enumType)](#getNames-java.lang.Class----) | | +| [getUnderlyingType(System.Type enumType)](#getUnderlyingType-com.aspose.ms.System.Type-) | | +| [getUnderlyingType(Class enumType)](#getUnderlyingType-java.lang.Class----) | | +| [getValue(Class enumType, String name)](#getValue-java.lang.Class----java.lang.String-) | | +| [getValues(System.Type enumType)](#getValues-com.aspose.ms.System.Type-) | | +| [get_Caption()](#get-Caption--) | | +| [get_Value()](#get-Value--) | | +| [hashCode()](#hashCode--) | | +| [isDefined(System.Type enumType, Object value)](#isDefined-com.aspose.ms.System.Type-java.lang.Object-) | | +| [isDefined(System.Type enumType, String value)](#isDefined-com.aspose.ms.System.Type-java.lang.String-) | | +| [isDefined(System.Type enumType, long value)](#isDefined-com.aspose.ms.System.Type-long-) | | +| [isDefined(Class enumType, long value)](#isDefined-java.lang.Class----long-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parse(System.Type enumType, String value)](#parse-com.aspose.ms.System.Type-java.lang.String-) | | +| [parse(System.Type enumType, String value, Boolean ignoreCase)](#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-) | | +| [parse(Class enumType, String value)](#parse-java.lang.Class----java.lang.String-) | | +| [parse(Class enumType, String value, Boolean ignoreCase)](#parse-java.lang.Class----java.lang.String-java.lang.Boolean-) | | +| [register(System.Enum.AbstractEnum e)](#register-com.aspose.ms.System.Enum.AbstractEnum-) | | +| [toObject(System.Type enumType, Object value)](#toObject-com.aspose.ms.System.Type-java.lang.Object-) | | +| [toString()](#toString--) | | +| [toString(Class enumType, long value)](#toString-java.lang.Class----long-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BINARY {#BINARY} +``` +public static final int BINARY +``` + + +Données binaires 8 bits. ECI Id:"\\000899" + +### Big5 {#Big5} +``` +public static final int Big5 +``` + + +Encodage Big 5 (Taïwan) jeu de caractères chinois. ECI Id:"\\000028" + +### EUC_KR {#EUC-KR} +``` +public static final int EUC_KR +``` + + +Encodage jeu de caractères coréen. ECI Id:"\\000030" + +### EnumSeparatorCharArray {#EnumSeparatorCharArray} +``` +public static final char[] EnumSeparatorCharArray +``` + + +### GB18030 {#GB18030} +``` +public static final int GB18030 +``` + + +Encodage GGB18030 jeu de caractères chinois. ECI Id:"\\000032" + +### GB2312 {#GB2312} +``` +public static final int GB2312 +``` + + +Encodage GB2312 jeu de caractères chinois. ECI Id:"\\000029" + +### GBK {#GBK} +``` +public static final int GBK +``` + + +Encodage GBK (extension de GB2312 pour le chinois simplifié). ECI Id:"\\000031" + +### INVARIANT {#INVARIANT} +``` +public static final int INVARIANT +``` + + +Encodage ISO/IEC 646 : jeu de caractères codé ISO 7 bits - jeu de caractères invariants. ECI Id:"\\000170" + +### ISO_8859_1 {#ISO-8859-1} +``` +public static final int ISO_8859_1 +``` + + +Encodage ISO/IEC 8859-1 alphabet latin n° 1. ECI Id:"\\000003" + +### ISO_8859_10 {#ISO-8859-10} +``` +public static final int ISO_8859_10 +``` + + +Encodage ISO/IEC 8859-10 alphabet latin n° 6. ECI Id:"\\000012" + +### ISO_8859_11 {#ISO-8859-11} +``` +public static final int ISO_8859_11 +``` + + +Encodage ISO/IEC 8859-11 alphabet latin/thai. ECI Id:"\\000013" + +### ISO_8859_13 {#ISO-8859-13} +``` +public static final int ISO_8859_13 +``` + + +Encodage ISO/IEC 8859-13 alphabet latin n° 7 (bassin baltique). ECI Id:"\\000015" + +### ISO_8859_14 {#ISO-8859-14} +``` +public static final int ISO_8859_14 +``` + + +Encodage ISO/IEC 8859-14 alphabet latin n° 8 (celtique). ECI Id:"\\000016" + +### ISO_8859_15 {#ISO-8859-15} +``` +public static final int ISO_8859_15 +``` + + +Encodage ISO/IEC 8859-15 alphabet latin n° 9. ECI Id:"\\000017" + +### ISO_8859_16 {#ISO-8859-16} +``` +public static final int ISO_8859_16 +``` + + +Encodage ISO/IEC 8859-16 alphabet latin n° 10. ECI Id:"\\000018" + +### ISO_8859_2 {#ISO-8859-2} +``` +public static final int ISO_8859_2 +``` + + +Encodage ISO/IEC 8859-2 alphabet latin n° 2. ECI Id:"\\000004" + +### ISO_8859_3 {#ISO-8859-3} +``` +public static final int ISO_8859_3 +``` + + +Encodage ISO/IEC 8859-3 alphabet latin n° 3. ECI Id:"\\000005" + +### ISO_8859_4 {#ISO-8859-4} +``` +public static final int ISO_8859_4 +``` + + +ISO/IEC 8859-4 encodage de l'alphabet latin n° 4. ECI Id:"\\000006" + +### ISO_8859_5 {#ISO-8859-5} +``` +public static final int ISO_8859_5 +``` + + +ISO/IEC 8859-5 encodage de l'alphabet latin/cyrillique. ECI Id:"\\000007" + +### ISO_8859_6 {#ISO-8859-6} +``` +public static final int ISO_8859_6 +``` + + +ISO/IEC 8859-6 encodage de l'alphabet latin/arabe. ECI Id:"\\000008" + +### ISO_8859_7 {#ISO-8859-7} +``` +public static final int ISO_8859_7 +``` + + +ISO/IEC 8859-7 encodage de l'alphabet latin/grec. ECI Id:"\\000009" + +### ISO_8859_8 {#ISO-8859-8} +``` +public static final int ISO_8859_8 +``` + + +ISO/IEC 8859-8 encodage de l'alphabet latin/hebreu. ECI Id:"\\000010" + +### ISO_8859_9 {#ISO-8859-9} +``` +public static final int ISO_8859_9 +``` + + +ISO/IEC 8859-9 encodage de l'alphabet latin n° 5. ECI Id:"\\000011" + +### NONE {#NONE} +``` +public static final int NONE +``` + + +Pas d'interprétation de canal étendue/p> + +### Shift_JIS {#Shift-JIS} +``` +public static final int Shift_JIS +``` + + +Shift JIS (JIS X 0208 Annexe 1 + JIS X 0201) encodage. ECI Id:"\\000020" + +### US_ASCII {#US-ASCII} +``` +public static final int US_ASCII +``` + + +ISO/IEC 646:1991 version de référence internationale du jeu de caractères codés ISO 7 bits encodage. ECI Id:"\\000027" + +### UTF16BE {#UTF16BE} +``` +public static final int UTF16BE +``` + + +ISO/IEC 10646 UCS-2 (octet de poids fort en premier) encodage. ECI Id:"\\000025" + +### UTF16LE {#UTF16LE} +``` +public static final int UTF16LE +``` + + +ISO/IEC 10646 encodage UTF-16LE. ECI Id:"\\000033" + +### UTF32BE {#UTF32BE} +``` +public static final int UTF32BE +``` + + +ISO/IEC 10646 encodage UTF-32BE. ECI Id:"\\000034" + +### UTF32LE {#UTF32LE} +``` +public static final int UTF32LE +``` + + +ISO/IEC 10646 encodage UTF-32LE. ECI Id:"\\000035" + +### UTF8 {#UTF8} +``` +public static final int UTF8 +``` + + +ISO/IEC 10646 encodage UTF-8. ECI Id:"\\000026" + +### Win1250 {#Win1250} +``` +public static final int Win1250 +``` + + +Windows 1250 Latin 2 (Europe centrale) encodage. ECI Id:"\\000021" + +### Win1251 {#Win1251} +``` +public static final int Win1251 +``` + + +Windows 1251 encodage cyrillique. ECI Id:"\\000022" + +### Win1252 {#Win1252} +``` +public static final int Win1252 +``` + + +Windows 1252 encodage Latin 1. ECI Id:"\\000023" + +### Win1256 {#Win1256} +``` +public static final int Win1256 +``` + + +Windows 1256 encodage arabe. ECI Id:"\\000024" + +### Clone() {#Clone--} +``` +public System.Enum Clone() +``` + + + + +**Returns:** +com.aspose.ms.System.Enum +### CloneTo(T that) {#CloneTo-T-} +``` +public abstract void CloneTo(T that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | T | | + +### CloneTo(System.Enum that) {#CloneTo-com.aspose.ms.System.Enum-} +``` +public void CloneTo(System.Enum that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | com.aspose.ms.System.Enum | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### format(System.Type enumType, Object value, String format) {#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-} +``` +public static String format(System.Type enumType, Object value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### format(Class enumType, long value, String format) {#format-java.lang.Class----long-java.lang.String-} +``` +public static String format(Class enumType, long value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getName(System.Type enumType, Object value) {#getName-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static String getName(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.String +### getName(Class enumType, long value) {#getName-java.lang.Class----long-} +``` +public static String getName(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### getNames(System.Type enumType) {#getNames-com.aspose.ms.System.Type-} +``` +public static String[] getNames(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +java.lang.String[] +### getNames(Class enumType) {#getNames-java.lang.Class----} +``` +public static Collection getNames(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.util.Collection +### getUnderlyingType(System.Type enumType) {#getUnderlyingType-com.aspose.ms.System.Type-} +``` +public static System.Type getUnderlyingType(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Type +### getUnderlyingType(Class enumType) {#getUnderlyingType-java.lang.Class----} +``` +public static Class getUnderlyingType(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.lang.Class +### getValue(Class enumType, String name) {#getValue-java.lang.Class----java.lang.String-} +``` +public static long getValue(Class enumType, String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| nom | java.lang.String | | + +**Returns:** +long +### getValues(System.Type enumType) {#getValues-com.aspose.ms.System.Type-} +``` +public static System.Array getValues(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Array +### get_Caption() {#get-Caption--} +``` +public String get_Caption() +``` + + + + +**Returns:** +java.lang.String +### get_Value() {#get-Value--} +``` +public long get_Value() +``` + + + + +**Returns:** +long +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isDefined(System.Type enumType, Object value) {#isDefined-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static boolean isDefined(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +boolean +### isDefined(System.Type enumType, String value) {#isDefined-com.aspose.ms.System.Type-java.lang.String-} +``` +public static boolean isDefined(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +boolean +### isDefined(System.Type enumType, long value) {#isDefined-com.aspose.ms.System.Type-long-} +``` +public static boolean isDefined(System.Type enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | long | | + +**Returns:** +boolean +### isDefined(Class enumType, long value) {#isDefined-java.lang.Class----long-} +``` +public static boolean isDefined(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parse(System.Type enumType, String value) {#parse-com.aspose.ms.System.Type-java.lang.String-} +``` +public static long parse(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(System.Type enumType, String value, Boolean ignoreCase) {#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-} +``` +public static long parse(System.Type enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### parse(Class enumType, String value) {#parse-java.lang.Class----java.lang.String-} +``` +public static long parse(Class enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(Class enumType, String value, Boolean ignoreCase) {#parse-java.lang.Class----java.lang.String-java.lang.Boolean-} +``` +public static long parse(Class enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### register(System.Enum.AbstractEnum e) {#register-com.aspose.ms.System.Enum.AbstractEnum-} +``` +public static void register(System.Enum.AbstractEnum e) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| e | com.aspose.ms.System.Enum.AbstractEnum | | + +### toObject(System.Type enumType, Object value) {#toObject-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static Object toObject(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.Object +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### toString(Class enumType, long value) {#toString-java.lang.Class----long-} +``` +public static String toString(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/enablechecksum/_index.md b/french/androidjava/com.aspose.barcode.generation/enablechecksum/_index.md new file mode 100644 index 000000000..aef53bce3 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/enablechecksum/_index.md @@ -0,0 +1,278 @@ +--- +title: EnableChecksum +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Activer la somme de contrôle lors de la génération des codes-barres 1D. +type: docs +weight: 86 +url: /fr/androidjava/com.aspose.barcode.generation/enablechecksum/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum EnableChecksum extends Enum +``` + +Activer la somme de contrôle lors de la génération des codes-barres 1D. + +Par défaut, il est traité comme Yes pour les symbologies qui doivent contenir un checksum, comme No là où le checksum n'est possible que. + +Somme de contrôle jamais utilisée : Codabar + +Somme de contrôle possible : Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN + +Checksum toujours utilisé : le reste des symbologies +## Champs + +| Champ | Description | +| --- | --- | +| [DEFAULT](#DEFAULT) | Si la somme de contrôle est requise par la spécification - elle sera jointe. | +| [NO](#NO) | Ne pas utiliser la somme de contrôle. | +| [YES](#YES) | Utilisez toujours la somme de contrôle si possible. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### DEFAULT {#DEFAULT} +``` +public static final EnableChecksum DEFAULT +``` + + +Si la somme de contrôle est requise par la spécification - elle sera jointe. + +### NO {#NO} +``` +public static final EnableChecksum NO +``` + + +Ne pas utiliser la somme de contrôle. + +### YES {#YES} +``` +public static final EnableChecksum YES +``` + + +Utilisez toujours la somme de contrôle si possible. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static EnableChecksum valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[EnableChecksum](../../com.aspose.barcode.generation/enablechecksum) +### values() {#values--} +``` +public static EnableChecksum[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.EnableChecksum[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/encodetypes/_index.md b/french/androidjava/com.aspose.barcode.generation/encodetypes/_index.md new file mode 100644 index 000000000..f396e3ae8 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/encodetypes/_index.md @@ -0,0 +1,980 @@ +--- +title: EncodeTypes +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifie le type de code-barres à encoder. +type: docs +weight: 38 +url: /fr/androidjava/com.aspose.barcode.generation/encodetypes/ +--- +**Inheritance:** +java.lang.Object +``` +public class EncodeTypes +``` + +Spécifie le type de code-barres à encoder. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [EncodeTypes()](#EncodeTypes--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [AUSTRALIAN_POSTE_PARCEL](#AUSTRALIAN-POSTE-PARCEL) | Spécifie que les données doivent être encodées selon la spécification du code‑barres **Australian Post Domestic eParcel Barcode** | +| [AUSTRALIA_POST](#AUSTRALIA-POST) | Représente le code‑barres client Australia Post | +| [AZTEC](#AZTEC) | Spécifie que les données doivent être encodées selon la spécification du code‑barres **Aztec** | +| [CODABAR](#CODABAR) | Spécifie que les données doivent être encodées selon la spécification du code‑barres **CODABAR** | +| [CODABLOCK_F](#CODABLOCK-F) | Spécifie que les données doivent être encodées selon la spécification du code‑barres **Codablock-F**. | +| [CODE_11](#CODE-11) | Spécifie que les données doivent être encodées selon la spécification du code‑barres **CODE 11** | +| [CODE_128](#CODE-128) | Spécifie que les données doivent être encodées selon la spécification du code‑barres **CODE 128** | +| [CODE_16_K](#CODE-16-K) | Représente le code‑barres Code 16K. | +| [CODE_32](#CODE-32) | Spécifie que les données doivent être encodées selon la spécification du code‑barres **Code32** | +| [CODE_39](#CODE-39) | Spécifie que les données doivent être encodées selon la spécification du jeu de caractères de base du code‑barres **Code 39** : ISO/IEC 16388 | +| [CODE_39_FULL_ASCII](#CODE-39-FULL-ASCII) | Spécifie que les données doivent être encodées selon la spécification du jeu de caractères ASCII complet du code‑barres **Code 39** : ISO/IEC 16388 | +| [CODE_93](#CODE-93) | Spécifie que les données doivent être encodées selon la spécification du code‑barres **CODE 93** | +| [DATABAR_EXPANDED](#DATABAR-EXPANDED) | Représente le code‑barres GS1 Databar étendu. | +| [DATABAR_EXPANDED_STACKED](#DATABAR-EXPANDED-STACKED) | Représente le code‑barres GS1 Databar empilé étendu. | +| [DATABAR_LIMITED](#DATABAR-LIMITED) | Représente le code‑barres GS1 DATABAR limité. | +| [DATABAR_OMNI_DIRECTIONAL](#DATABAR-OMNI-DIRECTIONAL) | Spécifie que les données doivent être encodées selon la spécification du code‑barres **GS1 Databar omni-directional**. | +| [DATABAR_STACKED](#DATABAR-STACKED) | Représente le code‑barres GS1 Databar empilé. | +| [DATABAR_STACKED_OMNI_DIRECTIONAL](#DATABAR-STACKED-OMNI-DIRECTIONAL) | Représente le code-barres GS1 Databar empilé omnidirectionnel. | +| [DATABAR_TRUNCATED](#DATABAR-TRUNCATED) | Spécifie que les données doivent être encodées avec la spécification de code-barres **GS1 Databar truncated**. | +| [DATA_LOGIC_2_OF_5](#DATA-LOGIC-2-OF-5) | Spécifie que les données doivent être encodées avec la spécification de code-barres **DataLogic 2 of 5** | +| [DATA_MATRIX](#DATA-MATRIX) | Symbologie de code-barres 2D DataMatrix | +| [DEUTSCHE_POST_IDENTCODE](#DEUTSCHE-POST-IDENTCODE) | Représente le code-barres Deutsch Post, ce type d'encodage est également connu sous les noms Identcode,CodeIdentcode,German Postal 2 of 5 Identcode, Deutsch Post AG Identcode, Deutsch Frachtpost Identcode, Deutsch Post AG (DHL) | +| [DEUTSCHE_POST_LEITCODE](#DEUTSCHE-POST-LEITCODE) | Représente le code-barres Deutsch Post Leitcode, également connu sous les noms German Postal 2 of 5 Leitcode, CodeLeitcode, Leitcode, Deutsch Post AG (DHL). | +| [DOT_CODE](#DOT-CODE) | Spécifie que les données doivent être encodées avec la spécification de code-barres DotCode | +| [DUTCH_KIX](#DUTCH-KIX) | Spécifie que les données doivent être encodées avec la spécification de code-barres **Dutch KIX** | +| [EAN_13](#EAN-13) | Spécifie que les données doivent être encodées avec la spécification de code-barres **EAN-13** | +| [EAN_14](#EAN-14) | Spécifie que les données doivent être encodées avec la spécification de code-barres **EAN14** | +| [EAN_8](#EAN-8) | Spécifie que les données doivent être encodées avec la spécification de code-barres **EAN-8** | +| [GS_1_AZTEC](#GS-1-AZTEC) | Spécifie que les données doivent être encodées avec la spécification de code-barres **GS1 Aztec**. | +| [GS_1_CODABLOCK_F](#GS-1-CODABLOCK-F) | Spécifie que les données doivent être encodées avec la spécification de code-barres **GS1 Codablock-F**. | +| [GS_1_CODE_128](#GS-1-CODE-128) | Spécifie que les données doivent être encodées avec la spécification de code-barres **GS1 Code 128**. | +| [GS_1_COMPOSITE_BAR](#GS-1-COMPOSITE-BAR) | Spécifie que les données doivent être encodées avec la spécification de code-barres **GS1 Composite Bar**. | +| [GS_1_DATA_MATRIX](#GS-1-DATA-MATRIX) | Symbologie de code-barres 2D DataMatrix avec format de chaîne GS1 | +| [GS_1_DOT_CODE](#GS-1-DOT-CODE) | Spécifie que les données doivent être encodées avec la spécification de code-barres **GS1 DotCode**. | +| [GS_1_HAN_XIN](#GS-1-HAN-XIN) | Symbologie de code-barres 2D HabXin avec format de chaîne GS1 | +| [GS_1_MICRO_PDF_417](#GS-1-MICRO-PDF-417) | Spécifie que les données doivent être encodées avec la spécification de code-barres **GS1MicroPdf417** | +| [GS_1_QR](#GS-1-QR) | Symbologie de code-barres 2D QR avec format de chaîne GS1 | +| [HAN_XIN](#HAN-XIN) | Spécifie que les données doivent être encodées avec la spécification de code-barres **Han Xin** | +| [HIBCQRLIC](#HIBCQRLIC) | Spécifie que les données doivent être encodées avec la spécification de code-barres **HIBC LIC QR**. | +| [HIBCQRPAS](#HIBCQRPAS) | Spécifie que les données doivent être encodées avec la spécification de code-barres **HIBC PAS QR**. | +| [HIBC_AZTEC_LIC](#HIBC-AZTEC-LIC) | Spécifie que les données doivent être encodées avec la spécification de code-barres **HIBC LIC Aztec**. | +| [HIBC_AZTEC_PAS](#HIBC-AZTEC-PAS) | Spécifie que les données doivent être encodées avec la spécification de code-barres **HIBC PAS Aztec**. | +| [HIBC_CODE_128_LIC](#HIBC-CODE-128-LIC) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC LIC Code128**. | +| [HIBC_CODE_128_PAS](#HIBC-CODE-128-PAS) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC PAS Code128**. | +| [HIBC_CODE_39_LIC](#HIBC-CODE-39-LIC) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC LIC Code39**. | +| [HIBC_CODE_39_PAS](#HIBC-CODE-39-PAS) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC PAS Code39**. | +| [HIBC_DATA_MATRIX_LIC](#HIBC-DATA-MATRIX-LIC) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC LIC DataMatrix**. | +| [HIBC_DATA_MATRIX_PAS](#HIBC-DATA-MATRIX-PAS) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC PAS DataMatrix**. | +| [IATA_2_OF_5](#IATA-2-OF-5) | Représente le code-barres IATA 2 de 5. IATA (International Air Transport Association) utilise ce code-barres pour la gestion du fret aérien. | +| [INTERLEAVED_2_OF_5](#INTERLEAVED-2-OF-5) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **INTERLEAVED 2 of 5**. | +| [ISBN](#ISBN) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **isBN**. | +| [ISMN](#ISMN) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **ISMN**. | +| [ISSN](#ISSN) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **ISSN**. | +| [ITALIAN_POST_25](#ITALIAN-POST-25) | Représente le code-barres Italian Post 25. | +| [ITF_14](#ITF-14) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **ITF14**. | +| [ITF_6](#ITF-6) | Représente le code-barres ITF-6. | +| [MACRO_PDF_417](#MACRO-PDF-417) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **MacroPdf417**. | +| [MAILMARK](#MAILMARK) | Représente le code-barres Royal Mail Mailmark. | +| [MATRIX_2_OF_5](#MATRIX-2-OF-5) | Représente le code-barres Matrix 2 de 5. | +| [MAXI_CODE](#MAXI-CODE) | Spécifie que les données doivent être encodées avec la spécification de code‑barres MaxiCode. | +| [MICRO_PDF_417](#MICRO-PDF-417) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **MicroPdf417**. | +| [MICRO_QR](#MICRO-QR) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **MicroQR Code**. | +| [MSI](#MSI) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **MSI Plessey**. | +| [NONE](#NONE) | Type d'encodage non spécifié. | +| [ONE_CODE](#ONE-CODE) | Spécifie que les données doivent être encodées avec la spécification de code‑barres USPS **OneCode**. | +| [OPC](#OPC) | Représente le code-barres OPC (Optical Product Code), également connu sous le nom de VCA Barcode, VCA OPC, Vision Council of America OPC Barcode. | +| [PATCH_CODE](#PATCH-CODE) | Représente le code-barres Patch code. | +| [PDF_417](#PDF-417) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **Pdf417**. | +| [PHARMACODE](#PHARMACODE) | Représente le code‑barres Pharmacode. | +| [PLANET](#PLANET) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **Planet**. | +| [POSTNET](#POSTNET) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **Postnet**. | +| [PZN](#PZN) | Représente le code‑barres PZN. Cette symbologie est également connue sous le nom de Pharmacy central number, Pharmazentralnummer. | +| [QR](#QR) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **QR Code**. | +| [RECT_MICRO_QR](#RECT-MICRO-QR) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **RectMicroQR (rMQR) Code**. | +| [RM_4_SCC](#RM-4-SCC) | Représente le code‑barres RM4SCC. | +| [SCC_14](#SCC-14) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **SCC14**. | +| [SINGAPORE_POST](#SINGAPORE-POST) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **Singapore Post Barcode**. | +| [SSCC_18](#SSCC-18) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **SSCC18**. | +| [STANDARD_2_OF_5](#STANDARD-2-OF-5) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **Standard 2 of 5**. | +| [SWISS_POST_PARCEL](#SWISS-POST-PARCEL) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **Swiss Post Parcel Barcode**. | +| [UPCA](#UPCA) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **UPC-A**. | +| [UPCA_GS_1_CODE_128_COUPON](#UPCA-GS-1-CODE-128-COUPON) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **UPC coupon with GS1-128 Extended Code**. | +| [UPCA_GS_1_DATABAR_COUPON](#UPCA-GS-1-DATABAR-COUPON) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **UPC coupon with GS1 DataBar addition**. | +| [UPCE](#UPCE) | Spécifie que les données doivent être encodées avec la spécification de code‑barres **UPC‑E**. | +| [VIN](#VIN) | Représente le code‑barres VIN (Vehicle Identification Number). | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllEncodeTypes()](#getAllEncodeTypes--) | Spécifie que les données seront vérifiées avec toutes les symbologies disponibles. | +| [getClass()](#getClass--) | | +| [getNames()](#getNames--) | Récupère un tableau des noms des types d'encodage. | +| [hashCode()](#hashCode--) | | +| [is2D(BaseEncodeType symbology)](#is2D-com.aspose.barcode.generation.BaseEncodeType-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parse(String parsingType, BaseEncodeType[] result)](#parse-java.lang.String-com.aspose.barcode.generation.BaseEncodeType---) | Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. | +| [toString()](#toString--) | | +| [tryParse(String parsingType, BaseEncodeType[] result)](#tryParse-java.lang.String-com.aspose.barcode.generation.BaseEncodeType---) | Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### EncodeTypes() {#EncodeTypes--} +``` +public EncodeTypes() +``` + + +### AUSTRALIAN_POSTE_PARCEL {#AUSTRALIAN-POSTE-PARCEL} +``` +public static final SymbologyEncodeType AUSTRALIAN_POSTE_PARCEL +``` + + +Spécifie que les données doivent être encodées selon la spécification du code‑barres **Australian Post Domestic eParcel Barcode** + +### AUSTRALIA_POST {#AUSTRALIA-POST} +``` +public static final SymbologyEncodeType AUSTRALIA_POST +``` + + +Représente le code‑barres client Australia Post + +### AZTEC {#AZTEC} +``` +public static final SymbologyEncodeType AZTEC +``` + + +Spécifie que les données doivent être encodées selon la spécification du code‑barres **Aztec** + +### CODABAR {#CODABAR} +``` +public static final SymbologyEncodeType CODABAR +``` + + +Spécifie que les données doivent être encodées selon la spécification du code‑barres **CODABAR** + +### CODABLOCK_F {#CODABLOCK-F} +``` +public static final SymbologyEncodeType CODABLOCK_F +``` + + +Spécifie que les données doivent être encodées selon la spécification du code‑barres **Codablock-F**. + +### CODE_11 {#CODE-11} +``` +public static final SymbologyEncodeType CODE_11 +``` + + +Spécifie que les données doivent être encodées selon la spécification du code‑barres **CODE 11** + +### CODE_128 {#CODE-128} +``` +public static final SymbologyEncodeType CODE_128 +``` + + +Spécifie que les données doivent être encodées selon la spécification du code‑barres **CODE 128** + +### CODE_16_K {#CODE-16-K} +``` +public static final SymbologyEncodeType CODE_16_K +``` + + +Représente le code‑barres Code 16K. + +### CODE_32 {#CODE-32} +``` +public static final SymbologyEncodeType CODE_32 +``` + + +Spécifie que les données doivent être encodées selon la spécification du code‑barres **Code32** + +### CODE_39 {#CODE-39} +``` +public static final SymbologyEncodeType CODE_39 +``` + + +Spécifie que les données doivent être encodées selon la spécification du jeu de caractères de base du code‑barres **Code 39** : ISO/IEC 16388 + +### CODE_39_FULL_ASCII {#CODE-39-FULL-ASCII} +``` +public static final SymbologyEncodeType CODE_39_FULL_ASCII +``` + + +Spécifie que les données doivent être encodées selon la spécification du jeu de caractères ASCII complet du code‑barres **Code 39** : ISO/IEC 16388 + +### CODE_93 {#CODE-93} +``` +public static final SymbologyEncodeType CODE_93 +``` + + +Spécifie que les données doivent être encodées selon la spécification du code‑barres **CODE 93** + +### DATABAR_EXPANDED {#DATABAR-EXPANDED} +``` +public static final SymbologyEncodeType DATABAR_EXPANDED +``` + + +Représente le code‑barres GS1 Databar étendu. + +### DATABAR_EXPANDED_STACKED {#DATABAR-EXPANDED-STACKED} +``` +public static final SymbologyEncodeType DATABAR_EXPANDED_STACKED +``` + + +Représente le code‑barres GS1 Databar empilé étendu. + +### DATABAR_LIMITED {#DATABAR-LIMITED} +``` +public static final SymbologyEncodeType DATABAR_LIMITED +``` + + +Représente le code‑barres GS1 DATABAR limité. + +### DATABAR_OMNI_DIRECTIONAL {#DATABAR-OMNI-DIRECTIONAL} +``` +public static final SymbologyEncodeType DATABAR_OMNI_DIRECTIONAL +``` + + +Spécifie que les données doivent être encodées selon la spécification du code‑barres **GS1 Databar omni-directional**. + +### DATABAR_STACKED {#DATABAR-STACKED} +``` +public static final SymbologyEncodeType DATABAR_STACKED +``` + + +Représente le code‑barres GS1 Databar empilé. + +### DATABAR_STACKED_OMNI_DIRECTIONAL {#DATABAR-STACKED-OMNI-DIRECTIONAL} +``` +public static final SymbologyEncodeType DATABAR_STACKED_OMNI_DIRECTIONAL +``` + + +Représente le code-barres GS1 Databar empilé omnidirectionnel. + +### DATABAR_TRUNCATED {#DATABAR-TRUNCATED} +``` +public static final SymbologyEncodeType DATABAR_TRUNCATED +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **GS1 Databar truncated**. + +### DATA_LOGIC_2_OF_5 {#DATA-LOGIC-2-OF-5} +``` +public static final SymbologyEncodeType DATA_LOGIC_2_OF_5 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **DataLogic 2 of 5** + +### DATA_MATRIX {#DATA-MATRIX} +``` +public static final SymbologyEncodeType DATA_MATRIX +``` + + +Symbologie de code-barres 2D DataMatrix + +### DEUTSCHE_POST_IDENTCODE {#DEUTSCHE-POST-IDENTCODE} +``` +public static final SymbologyEncodeType DEUTSCHE_POST_IDENTCODE +``` + + +Représente le code-barres Deutsch Post, ce type d'encodage est également connu sous les noms Identcode,CodeIdentcode,German Postal 2 of 5 Identcode, Deutsch Post AG Identcode, Deutsch Frachtpost Identcode, Deutsch Post AG (DHL) + +### DEUTSCHE_POST_LEITCODE {#DEUTSCHE-POST-LEITCODE} +``` +public static final SymbologyEncodeType DEUTSCHE_POST_LEITCODE +``` + + +Représente le code-barres Deutsch Post Leitcode, également connu sous les noms German Postal 2 of 5 Leitcode, CodeLeitcode, Leitcode, Deutsch Post AG (DHL). + +### DOT_CODE {#DOT-CODE} +``` +public static final SymbologyEncodeType DOT_CODE +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres DotCode + +### DUTCH_KIX {#DUTCH-KIX} +``` +public static final SymbologyEncodeType DUTCH_KIX +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **Dutch KIX** + +### EAN_13 {#EAN-13} +``` +public static final SymbologyEncodeType EAN_13 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **EAN-13** + +### EAN_14 {#EAN-14} +``` +public static final SymbologyEncodeType EAN_14 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **EAN14** + +### EAN_8 {#EAN-8} +``` +public static final SymbologyEncodeType EAN_8 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **EAN-8** + +### GS_1_AZTEC {#GS-1-AZTEC} +``` +public static final SymbologyEncodeType GS_1_AZTEC +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **GS1 Aztec**. Le texte du code doit contenir des parenthèses pour AI. + +### GS_1_CODABLOCK_F {#GS-1-CODABLOCK-F} +``` +public static final SymbologyEncodeType GS_1_CODABLOCK_F +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **GS1 Codablock-F**. Le texte du code doit contenir des parenthèses pour AI. + +### GS_1_CODE_128 {#GS-1-CODE-128} +``` +public static final SymbologyEncodeType GS_1_CODE_128 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **GS1 Code 128**. Le texte du code doit contenir des parenthèses pour AI. + +### GS_1_COMPOSITE_BAR {#GS-1-COMPOSITE-BAR} +``` +public static final SymbologyEncodeType GS_1_COMPOSITE_BAR +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **GS1 Composite Bar**. Le texte du code doit contenir des parenthèses pour AI. Le texte du code 1D et le texte du code 2D doivent être séparés par le symbole '/'. + +### GS_1_DATA_MATRIX {#GS-1-DATA-MATRIX} +``` +public static final SymbologyEncodeType GS_1_DATA_MATRIX +``` + + +Symbologie de code-barres 2D DataMatrix avec format de chaîne GS1 + +### GS_1_DOT_CODE {#GS-1-DOT-CODE} +``` +public static final SymbologyEncodeType GS_1_DOT_CODE +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **GS1 DotCode**. Le texte du code doit contenir des parenthèses pour AI. + +### GS_1_HAN_XIN {#GS-1-HAN-XIN} +``` +public static final SymbologyEncodeType GS_1_HAN_XIN +``` + + +Symbologie de code-barres 2D HabXin avec format de chaîne GS1 + +### GS_1_MICRO_PDF_417 {#GS-1-MICRO-PDF-417} +``` +public static final SymbologyEncodeType GS_1_MICRO_PDF_417 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **GS1MicroPdf417** + +### GS_1_QR {#GS-1-QR} +``` +public static final SymbologyEncodeType GS_1_QR +``` + + +Symbologie de code-barres 2D QR avec format de chaîne GS1 + +### HAN_XIN {#HAN-XIN} +``` +public static final SymbologyEncodeType HAN_XIN +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **Han Xin** + +### HIBCQRLIC {#HIBCQRLIC} +``` +public static final SymbologyEncodeType HIBCQRLIC +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **HIBC LIC QR**. + +### HIBCQRPAS {#HIBCQRPAS} +``` +public static final SymbologyEncodeType HIBCQRPAS +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **HIBC PAS QR**. + +### HIBC_AZTEC_LIC {#HIBC-AZTEC-LIC} +``` +public static final SymbologyEncodeType HIBC_AZTEC_LIC +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **HIBC LIC Aztec**. + +### HIBC_AZTEC_PAS {#HIBC-AZTEC-PAS} +``` +public static final SymbologyEncodeType HIBC_AZTEC_PAS +``` + + +Spécifie que les données doivent être encodées avec la spécification de code-barres **HIBC PAS Aztec**. + +### HIBC_CODE_128_LIC {#HIBC-CODE-128-LIC} +``` +public static final SymbologyEncodeType HIBC_CODE_128_LIC +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC LIC Code128**. + +### HIBC_CODE_128_PAS {#HIBC-CODE-128-PAS} +``` +public static final SymbologyEncodeType HIBC_CODE_128_PAS +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC PAS Code128**. + +### HIBC_CODE_39_LIC {#HIBC-CODE-39-LIC} +``` +public static final SymbologyEncodeType HIBC_CODE_39_LIC +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC LIC Code39**. + +### HIBC_CODE_39_PAS {#HIBC-CODE-39-PAS} +``` +public static final SymbologyEncodeType HIBC_CODE_39_PAS +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC PAS Code39**. + +### HIBC_DATA_MATRIX_LIC {#HIBC-DATA-MATRIX-LIC} +``` +public static final SymbologyEncodeType HIBC_DATA_MATRIX_LIC +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC LIC DataMatrix**. + +### HIBC_DATA_MATRIX_PAS {#HIBC-DATA-MATRIX-PAS} +``` +public static final SymbologyEncodeType HIBC_DATA_MATRIX_PAS +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **HIBC PAS DataMatrix**. + +### IATA_2_OF_5 {#IATA-2-OF-5} +``` +public static final SymbologyEncodeType IATA_2_OF_5 +``` + + +Représente le code-barres IATA 2 de 5. IATA (International Air Transport Association) utilise ce code-barres pour la gestion du fret aérien. + +### INTERLEAVED_2_OF_5 {#INTERLEAVED-2-OF-5} +``` +public static final SymbologyEncodeType INTERLEAVED_2_OF_5 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **INTERLEAVED 2 of 5**. + +### ISBN {#ISBN} +``` +public static final SymbologyEncodeType ISBN +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **isBN**. + +### ISMN {#ISMN} +``` +public static final SymbologyEncodeType ISMN +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **ISMN**. + +### ISSN {#ISSN} +``` +public static final SymbologyEncodeType ISSN +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **ISSN**. + +### ITALIAN_POST_25 {#ITALIAN-POST-25} +``` +public static final SymbologyEncodeType ITALIAN_POST_25 +``` + + +Représente le code-barres Italian Post 25. + +### ITF_14 {#ITF-14} +``` +public static final SymbologyEncodeType ITF_14 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **ITF14**. + +### ITF_6 {#ITF-6} +``` +public static final SymbologyEncodeType ITF_6 +``` + + +Représente le code-barres ITF-6. + +### MACRO_PDF_417 {#MACRO-PDF-417} +``` +public static final SymbologyEncodeType MACRO_PDF_417 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **MacroPdf417**. + +### MAILMARK {#MAILMARK} +``` +public static final SymbologyEncodeType MAILMARK +``` + + +Représente le code-barres Royal Mail Mailmark. + +### MATRIX_2_OF_5 {#MATRIX-2-OF-5} +``` +public static final SymbologyEncodeType MATRIX_2_OF_5 +``` + + +Représente le code-barres Matrix 2 de 5. + +### MAXI_CODE {#MAXI-CODE} +``` +public static final SymbologyEncodeType MAXI_CODE +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres MaxiCode. + +### MICRO_PDF_417 {#MICRO-PDF-417} +``` +public static final SymbologyEncodeType MICRO_PDF_417 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **MicroPdf417**. + +### MICRO_QR {#MICRO-QR} +``` +public static final SymbologyEncodeType MICRO_QR +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **MicroQR Code**. + +### MSI {#MSI} +``` +public static final SymbologyEncodeType MSI +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **MSI Plessey**. + +### NONE {#NONE} +``` +public static final SymbologyEncodeType NONE +``` + + +Type d'encodage non spécifié. + +### ONE_CODE {#ONE-CODE} +``` +public static final SymbologyEncodeType ONE_CODE +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres USPS **OneCode**. + +### OPC {#OPC} +``` +public static final SymbologyEncodeType OPC +``` + + +Représente le code-barres OPC (Optical Product Code), également connu sous le nom de VCA Barcode, VCA OPC, Vision Council of America OPC Barcode. + +### PATCH_CODE {#PATCH-CODE} +``` +public static final SymbologyEncodeType PATCH_CODE +``` + + +Représente le code-barres Patch code. + +### PDF_417 {#PDF-417} +``` +public static final SymbologyEncodeType PDF_417 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **Pdf417**. + +### PHARMACODE {#PHARMACODE} +``` +public static final SymbologyEncodeType PHARMACODE +``` + + +Représente le code‑barres Pharmacode. + +### PLANET {#PLANET} +``` +public static final SymbologyEncodeType PLANET +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **Planet**. + +### POSTNET {#POSTNET} +``` +public static final SymbologyEncodeType POSTNET +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **Postnet**. + +### PZN {#PZN} +``` +public static final SymbologyEncodeType PZN +``` + + +Représente le code-barres PZN. Cette symbologie est également connue sous le nom de Pharmacy central number, Pharmazentralnummer. Les PZN7 et PZN8 sont pris en charge. Le PZN7 est généré à partir de 6 chiffres ou moins, comme "123456". Le PZN8 est généré à partir de 7 chiffres ou plus, comme "1234567". Le dernier chiffre de contrôle fourni est ignoré et généré par le moteur de code-barres. + +### QR {#QR} +``` +public static final SymbologyEncodeType QR +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **QR Code**. + +### RECT_MICRO_QR {#RECT-MICRO-QR} +``` +public static final SymbologyEncodeType RECT_MICRO_QR +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **RectMicroQR (rMQR) Code**. + +### RM_4_SCC {#RM-4-SCC} +``` +public static final SymbologyEncodeType RM_4_SCC +``` + + +Représente le code-barres RM4SCC. RM4SCC (Royal Mail 4-state Customer Code) est utilisé pour le processus de tri automatisé du courrier au Royaume-Uni. + +### SCC_14 {#SCC-14} +``` +public static final SymbologyEncodeType SCC_14 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **SCC14**. + +### SINGAPORE_POST {#SINGAPORE-POST} +``` +public static final SymbologyEncodeType SINGAPORE_POST +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **Singapore Post Barcode**. + +### SSCC_18 {#SSCC-18} +``` +public static final SymbologyEncodeType SSCC_18 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **SSCC18**. + +### STANDARD_2_OF_5 {#STANDARD-2-OF-5} +``` +public static final SymbologyEncodeType STANDARD_2_OF_5 +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **Standard 2 of 5**. + +### SWISS_POST_PARCEL {#SWISS-POST-PARCEL} +``` +public static final SymbologyEncodeType SWISS_POST_PARCEL +``` + + +Spécifie que les données doivent être encodées selon la spécification du code-barres **Swiss Post Parcel Barcode**. Types pris en charge : courrier domestique, courrier international, services additionnels (nouveau). + +### UPCA {#UPCA} +``` +public static final SymbologyEncodeType UPCA +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **UPC-A**. + +### UPCA_GS_1_CODE_128_COUPON {#UPCA-GS-1-CODE-128-COUPON} +``` +public static final SymbologyEncodeType UPCA_GS_1_CODE_128_COUPON +``` + + +Spécifie que les données doivent être encodées selon la spécification du code-barres **UPC coupon with GS1-128 Extended Code**. Un exemple de chaîne d'entrée : BarcodeGenerator.Codetext = "514141100906(8102)03", où la partie UPCA est "514141100906", la partie GS1Code128 est (8102)03. + +### UPCA_GS_1_DATABAR_COUPON {#UPCA-GS-1-DATABAR-COUPON} +``` +public static final SymbologyEncodeType UPCA_GS_1_DATABAR_COUPON +``` + + +Spécifie que les données doivent être encodées selon la spécification du code-barres **UPC coupon with GS1 DataBar addition**. Un exemple de chaîne d'entrée : BarcodeGenerator.setCodeText("514141100906(8110)106141416543213500110000310123196000"), où la partie UPCA est "514141100906", la partie DATABAR est "(8110)106141416543213500110000310123196000". Pour modifier la légende, utilisez Parameters.CaptionAbove.TEXT = "company prefix + offer code"; + +### UPCE {#UPCE} +``` +public static final SymbologyEncodeType UPCE +``` + + +Spécifie que les données doivent être encodées avec la spécification de code‑barres **UPC‑E**. + +### VIN {#VIN} +``` +public static final SymbologyEncodeType VIN +``` + + +Représente le code‑barres VIN (Vehicle Identification Number). + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllEncodeTypes() {#getAllEncodeTypes--} +``` +public static BaseEncodeType[] getAllEncodeTypes() +``` + + +Spécifie que les données seront vérifiées avec toutes les symbologies disponibles. + +**Returns:** +com.aspose.barcode.generation.BaseEncodeType[] +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getNames() {#getNames--} +``` +public static String[] getNames() +``` + + +Récupère un tableau des noms des types d'encodage. + +**Returns:** +java.lang.String[] - Un tableau de chaînes contenant les noms des types d'encodage. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### is2D(BaseEncodeType symbology) {#is2D-com.aspose.barcode.generation.BaseEncodeType-} +``` +public static boolean is2D(BaseEncodeType symbology) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| symbology | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | | + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parse(String parsingType, BaseEncodeType[] result) {#parse-java.lang.String-com.aspose.barcode.generation.BaseEncodeType---} +``` +public static boolean parse(String parsingType, BaseEncodeType[] result) +``` + + +Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. La valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne contenant une représentation BaseEncodeType à convertir. | +| | result | [BaseEncodeType\[\]](../../com.aspose.barcode.generation/baseencodetype) | Un BaseEncodeType réel est renvoyé lorsque la conversion s'est terminée avec succès ; | + +sinon il renvoie null. | + +**Returns:** +boolean - Vrai si s a été converti avec succès ; sinon, faux. +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### tryParse(String parsingType, BaseEncodeType[] result) {#tryParse-java.lang.String-com.aspose.barcode.generation.BaseEncodeType---} +``` +public static boolean tryParse(String parsingType, BaseEncodeType[] result) +``` + + +Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. La valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne au format "Index:-1; Name:None" à convertir. | +| | result | [BaseEncodeType\[\]](../../com.aspose.barcode.generation/baseencodetype) | Un SingleEncodeType réel est renvoyé lorsque la conversion s'est terminée avec succès ; | + +sinon il renvoie null. | + +**Returns:** +boolean - Vrai si s a été converti avec succès ; sinon, faux. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/extcodeitem/_index.md b/french/androidjava/com.aspose.barcode.generation/extcodeitem/_index.md new file mode 100644 index 000000000..c1d15b3c2 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/extcodeitem/_index.md @@ -0,0 +1,135 @@ +--- +title: ExtCodeItem +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe de base du conteneur de texte de code étendu +type: docs +weight: 39 +url: /fr/androidjava/com.aspose.barcode.generation/extcodeitem/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract class ExtCodeItem +``` + +Classe de base du conteneur de texte de code étendu +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [ExtCodeItem()](#ExtCodeItem--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ExtCodeItem() {#ExtCodeItem--} +``` +public ExtCodeItem() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/extcodetextbuilder/_index.md b/french/androidjava/com.aspose.barcode.generation/extcodetextbuilder/_index.md new file mode 100644 index 000000000..655344613 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/extcodetextbuilder/_index.md @@ -0,0 +1,200 @@ +--- +title: ExtCodetextBuilder +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Classe d'assistance pour la génération automatique de texte de code du mode texte de code étendu +type: docs +weight: 40 +url: /fr/androidjava/com.aspose.barcode.generation/extcodetextbuilder/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract class ExtCodetextBuilder +``` + +Classe d'assistance pour la génération automatique de texte de code du mode texte de code étendu +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [ExtCodetextBuilder()](#ExtCodetextBuilder--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addECICodetext(int ECIEncoding, String codetext)](#addECICodetext-int-java.lang.String-) | Ajoute du codetext avec un identifiant de canal étendu. | +| [addPlainCodetext(String codetext)](#addPlainCodetext-java.lang.String-) | Ajoute du texte de code simple aux éléments de texte de code étendu | +| [clear()](#clear--) | Efface les éléments de texte de code étendu | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getExtendedCodetext()](#getExtendedCodetext--) | Génère le texte de code étendu à partir de la liste des éléments de génération. | +| [hashCode()](#hashCode--) | | +| [isNeedToShieldItemFromPrevECI(int Index)](#isNeedToShieldItemFromPrevECI-int-) | Vérifie la nécessité de protéger l'élément précédent par "\\000000" | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ExtCodetextBuilder() {#ExtCodetextBuilder--} +``` +public ExtCodetextBuilder() +``` + + +### addECICodetext(int ECIEncoding, String codetext) {#addECICodetext-int-java.lang.String-} +``` +public void addECICodetext(int ECIEncoding, String codetext) +``` + + +Ajoute du codetext avec un identifiant de canal étendu. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| ECIEncoding | int | Identifiant de canal étendu | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu avec l'identifiant de canal étendu | + +### addPlainCodetext(String codetext) {#addPlainCodetext-java.lang.String-} +``` +public void addPlainCodetext(String codetext) +``` + + +Ajoute du texte de code simple aux éléments de texte de code étendu + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu | + +### clear() {#clear--} +``` +public void clear() +``` + + +Efface les éléments de texte de code étendu + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getExtendedCodetext() {#getExtendedCodetext--} +``` +public abstract String getExtendedCodetext() +``` + + +Génère le texte de code étendu à partir de la liste des éléments de génération. + +**Returns:** +java.lang.String - Retourne la chaîne du texte de code étendu. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isNeedToShieldItemFromPrevECI(int Index) {#isNeedToShieldItemFromPrevECI-int-} +``` +public boolean isNeedToShieldItemFromPrevECI(int Index) +``` + + +Vérifie la nécessité de protéger l'élément précédent par "\\000000" + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| Indice | int | Indice dans m\_List | + +**Returns:** +booléen - Nécessité de protéger +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/extecicodetext/_index.md b/french/androidjava/com.aspose.barcode.generation/extecicodetext/_index.md new file mode 100644 index 000000000..e3fe5f868 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/extecicodetext/_index.md @@ -0,0 +1,165 @@ +--- +title: ExtECICodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Conteneur de texte de code de canal étendu +type: docs +weight: 41 +url: /fr/androidjava/com.aspose.barcode.generation/extecicodetext/ +--- +**Inheritance:** +java.lang.Object, com.aspose.barcode.generation.ExtCodeItem +``` +public class ExtECICodetext extends ExtCodeItem +``` + +Conteneur de texte de code de canal étendu +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [ExtECICodetext(int eciEncoding, String aCodetext)](#ExtECICodetext-int-java.lang.String-) | Constructeur du Codetext de canal étendu | +## Champs + +| Champ | Description | +| --- | --- | +| [Codetext](#Codetext) | Codetext en Unicode | +| [eciEncoding](#eciEncoding) | Identifiant de canal étendu | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ExtECICodetext(int eciEncoding, String aCodetext) {#ExtECICodetext-int-java.lang.String-} +``` +public ExtECICodetext(int eciEncoding, String aCodetext) +``` + + +Constructeur du Codetext de canal étendu + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| eciEncoding | int | Identifiant de canal étendu | +| aCodetext | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu | + +### Codetext {#Codetext} +``` +public String Codetext +``` + + +Codetext en Unicode + +### eciEncoding {#eciEncoding} +``` +public int eciEncoding +``` + + +Identifiant de canal étendu + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/extplaincodetext/_index.md b/french/androidjava/com.aspose.barcode.generation/extplaincodetext/_index.md new file mode 100644 index 000000000..f12d082a3 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/extplaincodetext/_index.md @@ -0,0 +1,155 @@ +--- +title: ExtPlainCodetext +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Conteneur de codetext simple +type: docs +weight: 42 +url: /fr/androidjava/com.aspose.barcode.generation/extplaincodetext/ +--- +**Inheritance:** +java.lang.Object, com.aspose.barcode.generation.ExtCodeItem +``` +public class ExtPlainCodetext extends ExtCodeItem +``` + +Conteneur de texte de code simple (plain) +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [ExtPlainCodetext(String aCodetext)](#ExtPlainCodetext-java.lang.String-) | Constructeur d'éléments de codetext simples | +## Champs + +| Champ | Description | +| --- | --- | +| [Codetext](#Codetext) | Valeur du codetext | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ExtPlainCodetext(String aCodetext) {#ExtPlainCodetext-java.lang.String-} +``` +public ExtPlainCodetext(String aCodetext) +``` + + +Constructeur d'éléments de codetext simples + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| aCodetext | java.lang.String | Valeur du codetext | + +### Codetext {#Codetext} +``` +public String Codetext +``` + + +Valeur du codetext + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/fontmode/_index.md b/french/androidjava/com.aspose.barcode.generation/fontmode/_index.md new file mode 100644 index 000000000..8d5ae2224 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/fontmode/_index.md @@ -0,0 +1,261 @@ +--- +title: FontMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode de taille de police. +type: docs +weight: 87 +url: /fr/androidjava/com.aspose.barcode.generation/fontmode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum FontMode extends Enum +``` + +Mode de taille de police. +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Calculer automatiquement la taille de la police en fonction de la taille du code-barres. | +| [MANUAL](#MANUAL) | Utiliser la taille de police définie par l'utilisateur. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final FontMode AUTO +``` + + +Calculer automatiquement la taille de la police en fonction de la taille du code-barres. + +### MANUAL {#MANUAL} +``` +public static final FontMode MANUAL +``` + + +Utiliser la taille de police définie par l'utilisateur. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static FontMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[FontMode](../../com.aspose.barcode.generation/fontmode) +### values() {#values--} +``` +public static FontMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.FontMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/fontstyle/_index.md b/french/androidjava/com.aspose.barcode.generation/fontstyle/_index.md new file mode 100644 index 000000000..5a4347e7e --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/fontstyle/_index.md @@ -0,0 +1,605 @@ +--- +title: FontStyle +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifie les informations de style appliquées au texte. +type: docs +weight: 43 +url: /fr/androidjava/com.aspose.barcode.generation/fontstyle/ +--- +**Inheritance:** +java.lang.Object, com.aspose.ms.System.ValueType, com.aspose.ms.System.Enum +``` +public final class FontStyle extends System.Enum +``` + +Spécifie les informations de style appliquées au texte. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontStyle()](#FontStyle--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [BOLD](#BOLD) | Texte en gras | +| [EnumSeparatorCharArray](#EnumSeparatorCharArray) | | +| [ITALIC](#ITALIC) | Texte en italique | +| [REGULAR](#REGULAR) | Texte normal | +| [STRIKEOUT](#STRIKEOUT) | Texte avec une ligne traversant le milieu | +| [UNDERLINE](#UNDERLINE) | Texte souligné | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [Clone()](#Clone--) | | +| [CloneTo(T that)](#CloneTo-T-) | | +| [CloneTo(System.Enum that)](#CloneTo-com.aspose.ms.System.Enum-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [format(System.Type enumType, Object value, String format)](#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-) | | +| [format(Class enumType, long value, String format)](#format-java.lang.Class----long-java.lang.String-) | | +| [getClass()](#getClass--) | | +| [getName(System.Type enumType, Object value)](#getName-com.aspose.ms.System.Type-java.lang.Object-) | | +| [getName(Class enumType, long value)](#getName-java.lang.Class----long-) | | +| [getNames(System.Type enumType)](#getNames-com.aspose.ms.System.Type-) | | +| [getNames(Class enumType)](#getNames-java.lang.Class----) | | +| [getUnderlyingType(System.Type enumType)](#getUnderlyingType-com.aspose.ms.System.Type-) | | +| [getUnderlyingType(Class enumType)](#getUnderlyingType-java.lang.Class----) | | +| [getValue(Class enumType, String name)](#getValue-java.lang.Class----java.lang.String-) | | +| [getValues(System.Type enumType)](#getValues-com.aspose.ms.System.Type-) | | +| [get_Caption()](#get-Caption--) | | +| [get_Value()](#get-Value--) | | +| [hashCode()](#hashCode--) | | +| [isDefined(System.Type enumType, Object value)](#isDefined-com.aspose.ms.System.Type-java.lang.Object-) | | +| [isDefined(System.Type enumType, String value)](#isDefined-com.aspose.ms.System.Type-java.lang.String-) | | +| [isDefined(System.Type enumType, long value)](#isDefined-com.aspose.ms.System.Type-long-) | | +| [isDefined(Class enumType, long value)](#isDefined-java.lang.Class----long-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parse(System.Type enumType, String value)](#parse-com.aspose.ms.System.Type-java.lang.String-) | | +| [parse(System.Type enumType, String value, Boolean ignoreCase)](#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-) | | +| [parse(Class enumType, String value)](#parse-java.lang.Class----java.lang.String-) | | +| [parse(Class enumType, String value, Boolean ignoreCase)](#parse-java.lang.Class----java.lang.String-java.lang.Boolean-) | | +| [register(System.Enum.AbstractEnum e)](#register-com.aspose.ms.System.Enum.AbstractEnum-) | | +| [toObject(System.Type enumType, Object value)](#toObject-com.aspose.ms.System.Type-java.lang.Object-) | | +| [toString()](#toString--) | | +| [toString(Class enumType, long value)](#toString-java.lang.Class----long-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontStyle() {#FontStyle--} +``` +public FontStyle() +``` + + +### BOLD {#BOLD} +``` +public static final int BOLD +``` + + +Texte en gras + +### EnumSeparatorCharArray {#EnumSeparatorCharArray} +``` +public static final char[] EnumSeparatorCharArray +``` + + +### ITALIC {#ITALIC} +``` +public static final int ITALIC +``` + + +Texte en italique + +### REGULAR {#REGULAR} +``` +public static final int REGULAR +``` + + +Texte normal + +### STRIKEOUT {#STRIKEOUT} +``` +public static final int STRIKEOUT +``` + + +Texte avec une ligne traversant le milieu + +### UNDERLINE {#UNDERLINE} +``` +public static final int UNDERLINE +``` + + +Texte souligné + +### Clone() {#Clone--} +``` +public System.Enum Clone() +``` + + + + +**Returns:** +com.aspose.ms.System.Enum +### CloneTo(T that) {#CloneTo-T-} +``` +public abstract void CloneTo(T that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | T | | + +### CloneTo(System.Enum that) {#CloneTo-com.aspose.ms.System.Enum-} +``` +public void CloneTo(System.Enum that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | com.aspose.ms.System.Enum | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### format(System.Type enumType, Object value, String format) {#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-} +``` +public static String format(System.Type enumType, Object value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### format(Class enumType, long value, String format) {#format-java.lang.Class----long-java.lang.String-} +``` +public static String format(Class enumType, long value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getName(System.Type enumType, Object value) {#getName-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static String getName(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.String +### getName(Class enumType, long value) {#getName-java.lang.Class----long-} +``` +public static String getName(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### getNames(System.Type enumType) {#getNames-com.aspose.ms.System.Type-} +``` +public static String[] getNames(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +java.lang.String[] +### getNames(Class enumType) {#getNames-java.lang.Class----} +``` +public static Collection getNames(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.util.Collection +### getUnderlyingType(System.Type enumType) {#getUnderlyingType-com.aspose.ms.System.Type-} +``` +public static System.Type getUnderlyingType(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Type +### getUnderlyingType(Class enumType) {#getUnderlyingType-java.lang.Class----} +``` +public static Class getUnderlyingType(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.lang.Class +### getValue(Class enumType, String name) {#getValue-java.lang.Class----java.lang.String-} +``` +public static long getValue(Class enumType, String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| nom | java.lang.String | | + +**Returns:** +long +### getValues(System.Type enumType) {#getValues-com.aspose.ms.System.Type-} +``` +public static System.Array getValues(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Array +### get_Caption() {#get-Caption--} +``` +public String get_Caption() +``` + + + + +**Returns:** +java.lang.String +### get_Value() {#get-Value--} +``` +public long get_Value() +``` + + + + +**Returns:** +long +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isDefined(System.Type enumType, Object value) {#isDefined-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static boolean isDefined(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +boolean +### isDefined(System.Type enumType, String value) {#isDefined-com.aspose.ms.System.Type-java.lang.String-} +``` +public static boolean isDefined(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +boolean +### isDefined(System.Type enumType, long value) {#isDefined-com.aspose.ms.System.Type-long-} +``` +public static boolean isDefined(System.Type enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | long | | + +**Returns:** +boolean +### isDefined(Class enumType, long value) {#isDefined-java.lang.Class----long-} +``` +public static boolean isDefined(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parse(System.Type enumType, String value) {#parse-com.aspose.ms.System.Type-java.lang.String-} +``` +public static long parse(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(System.Type enumType, String value, Boolean ignoreCase) {#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-} +``` +public static long parse(System.Type enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### parse(Class enumType, String value) {#parse-java.lang.Class----java.lang.String-} +``` +public static long parse(Class enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(Class enumType, String value, Boolean ignoreCase) {#parse-java.lang.Class----java.lang.String-java.lang.Boolean-} +``` +public static long parse(Class enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### register(System.Enum.AbstractEnum e) {#register-com.aspose.ms.System.Enum.AbstractEnum-} +``` +public static void register(System.Enum.AbstractEnum e) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| e | com.aspose.ms.System.Enum.AbstractEnum | | + +### toObject(System.Type enumType, Object value) {#toObject-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static Object toObject(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.Object +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### toString(Class enumType, long value) {#toString-java.lang.Class----long-} +``` +public static String toString(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/fontunit/_index.md b/french/androidjava/com.aspose.barcode.generation/fontunit/_index.md new file mode 100644 index 000000000..d4bd7cddb --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/fontunit/_index.md @@ -0,0 +1,254 @@ +--- +title: FontUnit +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Définit un format particulier pour le texte incluant la taille de la police et les attributs de style où la taille se trouve dans la propriété Unit value. +type: docs +weight: 44 +url: /fr/androidjava/com.aspose.barcode.generation/fontunit/ +--- +**Inheritance:** +java.lang.Object +``` +public final class FontUnit +``` + +Définit un format particulier pour le texte, incluant la police, la taille et les attributs de style où la taille se trouve dans la propriété Unit value. + +-------------------- + +> ``` +> This sample shows how to create and save a BarCode image. +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.CODE_128); +> generator.getCodeTextStyle().getFont().setStyle(FontStyle.ITALIC); +> generator.getCodeTextStyle().getFont().getSize().setPoint(18); +> generator.save("test.png"); +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontUnit(FontUnit source)](#FontUnit-com.aspose.barcode.generation.FontUnit-) | | +| [FontUnit(Typeface familyName, float sizeValue, GraphicsUnit graphicsUnit, float dpi)](#FontUnit-android.graphics.Typeface-float-com.aspose.barcode.generation.GraphicsUnit-float-) | | +| [FontUnit(Typeface familyName, float sizeValue, GraphicsUnit graphicsUnit, float dpi, int style)](#FontUnit-android.graphics.Typeface-float-com.aspose.barcode.generation.GraphicsUnit-float-int-) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFamilyName()](#getFamilyName--) | Obtient le nom de la police de ce Font. | +| [getSize()](#getSize--) | Obtient la taille de ce FontUnit en Unit value. | +| [getStateHash()](#getStateHash--) | | +| [getStyle()](#getStyle--) | Obtient les informations de style pour ce FontUnit. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setFamilyName(Typeface value)](#setFamilyName-android.graphics.Typeface-) | Définit le nom de la police de ce Font. | +| [setStyle(int value)](#setStyle-int-) | Définit les informations de style pour ce FontUnit. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontUnit(FontUnit source) {#FontUnit-com.aspose.barcode.generation.FontUnit-} +``` +public FontUnit(FontUnit source) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| source | [FontUnit](../../com.aspose.barcode.generation/fontunit) | | + +### FontUnit(Typeface familyName, float sizeValue, GraphicsUnit graphicsUnit, float dpi) {#FontUnit-android.graphics.Typeface-float-com.aspose.barcode.generation.GraphicsUnit-float-} +``` +public FontUnit(Typeface familyName, float sizeValue, GraphicsUnit graphicsUnit, float dpi) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| familyName | android.graphics.Typeface | | +| sizeValue | float | | +| graphicsUnit | [GraphicsUnit](../../com.aspose.barcode.generation/graphicsunit) | | +| dpi | float | | + +### FontUnit(Typeface familyName, float sizeValue, GraphicsUnit graphicsUnit, float dpi, int style) {#FontUnit-android.graphics.Typeface-float-com.aspose.barcode.generation.GraphicsUnit-float-int-} +``` +public FontUnit(Typeface familyName, float sizeValue, GraphicsUnit graphicsUnit, float dpi, int style) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| familyName | android.graphics.Typeface | | +| sizeValue | float | | +| graphicsUnit | [GraphicsUnit](../../com.aspose.barcode.generation/graphicsunit) | | +| dpi | float | | +| style | int | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFamilyName() {#getFamilyName--} +``` +public Typeface getFamilyName() +``` + + +Obtient le nom de la police de ce Font. + +**Returns:** +android.graphics.Typeface +### getSize() {#getSize--} +``` +public Unit getSize() +``` + + +Obtient la taille de ce FontUnit en Unit value. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getStateHash() {#getStateHash--} +``` +public int getStateHash() +``` + + + + +**Returns:** +int +### getStyle() {#getStyle--} +``` +public int getStyle() +``` + + +Obtient les informations de style pour ce FontUnit. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setFamilyName(Typeface value) {#setFamilyName-android.graphics.Typeface-} +``` +public void setFamilyName(Typeface value) +``` + + +Définit le nom de la police de ce Font. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | android.graphics.Typeface | | + +### setStyle(int value) {#setStyle-int-} +``` +public void setStyle(int value) +``` + + +Définit les informations de style pour ce FontUnit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/fontunitinternal/_index.md b/french/androidjava/com.aspose.barcode.generation/fontunitinternal/_index.md new file mode 100644 index 000000000..067ad3110 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/fontunitinternal/_index.md @@ -0,0 +1,165 @@ +--- +title: FontUnitInternal +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 45 +url: /fr/androidjava/com.aspose.barcode.generation/fontunitinternal/ +--- +**Inheritance:** +java.lang.Object +``` +public class FontUnitInternal +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontUnitInternal()](#FontUnitInternal--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [ctor(FontUnit source)](#ctor-com.aspose.barcode.generation.FontUnit-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFont(FontUnit fontUnit)](#getFont-com.aspose.barcode.generation.FontUnit-) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontUnitInternal() {#FontUnitInternal--} +``` +public FontUnitInternal() +``` + + +### ctor(FontUnit source) {#ctor-com.aspose.barcode.generation.FontUnit-} +``` +public static FontUnit ctor(FontUnit source) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| source | [FontUnit](../../com.aspose.barcode.generation/fontunit) | | + +**Returns:** +[FontUnit](../../com.aspose.barcode.generation/fontunit) +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFont(FontUnit fontUnit) {#getFont-com.aspose.barcode.generation.FontUnit-} +``` +public static TextPaint getFont(FontUnit fontUnit) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontUnit | [FontUnit](../../com.aspose.barcode.generation/fontunit) | | + +**Returns:** +android.text.TextPaint +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/graphicsunit/_index.md b/french/androidjava/com.aspose.barcode.generation/graphicsunit/_index.md new file mode 100644 index 000000000..81a764f3e --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/graphicsunit/_index.md @@ -0,0 +1,322 @@ +--- +title: GraphicsUnit +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifie l'unité de mesure pour les données fournies. +type: docs +weight: 88 +url: /fr/androidjava/com.aspose.barcode.generation/graphicsunit/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum GraphicsUnit extends Enum +``` + +Spécifie l'unité de mesure pour les données fournies. +## Champs + +| Champ | Description | +| --- | --- | +| [DISPLAY](#DISPLAY) | Spécifie l'unité de mesure du dispositif d'affichage. | +| [DOCUMENT](#DOCUMENT) | Spécifie l'unité du document (1/300 pouce) comme unité de mesure. | +| [INCH](#INCH) | Spécifie le pouce comme unité de mesure. | +| [MILLIMETER](#MILLIMETER) | Spécifie le millimètre comme unité de mesure. | +| [PIXEL](#PIXEL) | Spécifie un pixel d'appareil comme unité de mesure. | +| [POINT](#POINT) | Spécifie le point d'une imprimante (1/72 pouce) comme unité de mesure. | +| [WORLD](#WORLD) | Spécifie l'unité du système de coordonnées mondial comme unité de mesure. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getGraphicsUnitName(int graphicsUnit)](#getGraphicsUnitName-int-) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### DISPLAY {#DISPLAY} +``` +public static final GraphicsUnit DISPLAY +``` + + +Spécifie l'unité de mesure du dispositif d'affichage. Typiquement des pixels pour les écrans vidéo, et 1/100 pouce pour les imprimantes. + +### DOCUMENT {#DOCUMENT} +``` +public static final GraphicsUnit DOCUMENT +``` + + +Spécifie l'unité du document (1/300 pouce) comme unité de mesure. + +### INCH {#INCH} +``` +public static final GraphicsUnit INCH +``` + + +Spécifie le pouce comme unité de mesure. + +### MILLIMETER {#MILLIMETER} +``` +public static final GraphicsUnit MILLIMETER +``` + + +Spécifie le millimètre comme unité de mesure. + +### PIXEL {#PIXEL} +``` +public static final GraphicsUnit PIXEL +``` + + +Spécifie un pixel d'appareil comme unité de mesure. + +### POINT {#POINT} +``` +public static final GraphicsUnit POINT +``` + + +Spécifie le point d'une imprimante (1/72 pouce) comme unité de mesure. + +### WORLD {#WORLD} +``` +public static final GraphicsUnit WORLD +``` + + +Spécifie l'unité du système de coordonnées mondial comme unité de mesure. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getGraphicsUnitName(int graphicsUnit) {#getGraphicsUnitName-int-} +``` +public static String getGraphicsUnitName(int graphicsUnit) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| graphicsUnit | int | | + +**Returns:** +java.lang.String +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static GraphicsUnit valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[GraphicsUnit](../../com.aspose.barcode.generation/graphicsunit) +### values() {#values--} +``` +public static GraphicsUnit[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.GraphicsUnit[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/gs1compositebarparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/gs1compositebarparameters/_index.md new file mode 100644 index 000000000..f7136b493 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/gs1compositebarparameters/_index.md @@ -0,0 +1,197 @@ +--- +title: GS1CompositeBarParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 46 +url: /fr/androidjava/com.aspose.barcode.generation/gs1compositebarparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class GS1CompositeBarParameters +``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getLinearComponentType()](#getLinearComponentType--) | Type de composant linéaire : GS1Code128, UPCE, EAN8, UPCA, EAN13, DatabarStacked, DatabarStackedOmniDirectional, DatabarLimited, DatabarOmniDirectional, DatabarExpanded, DatabarExpandedStacked | +| [getTwoDComponentType()](#getTwoDComponentType--) | Type de composant 2D | +| [hashCode()](#hashCode--) | | +| [isAllowOnlyGS1Encoding()](#isAllowOnlyGS1Encoding--) | Si ce drapeau est activé, il n'autorise que la norme d'encodage GS1 pour le composant 2D GS1CompositeBar | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAllowOnlyGS1Encoding(boolean value)](#setAllowOnlyGS1Encoding-boolean-) | Si ce drapeau est activé, il n'autorise que la norme d'encodage GS1 pour le composant 2D GS1CompositeBar | +| [setLinearComponentType(BaseEncodeType value)](#setLinearComponentType-com.aspose.barcode.generation.BaseEncodeType-) | Type de composant linéaire : GS1Code128, UPCE, EAN8, UPCA, EAN13, DatabarStacked, DatabarStackedOmniDirectional, DatabarLimited, DatabarOmniDirectional, DatabarExpanded, DatabarExpandedStacked | +| [setTwoDComponentType(TwoDComponentType value)](#setTwoDComponentType-com.aspose.barcode.generation.TwoDComponentType-) | Type de composant 2D | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible de cet objet DataBarParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLinearComponentType() {#getLinearComponentType--} +``` +public BaseEncodeType getLinearComponentType() +``` + + +Type de composant linéaire : GS1Code128, UPCE, EAN8, UPCA, EAN13, DatabarStacked, DatabarStackedOmniDirectional, DatabarLimited, DatabarOmniDirectional, DatabarExpanded, DatabarExpandedStacked + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) +### getTwoDComponentType() {#getTwoDComponentType--} +``` +public TwoDComponentType getTwoDComponentType() +``` + + +Type de composant 2D + +**Returns:** +[TwoDComponentType](../../com.aspose.barcode.generation/twodcomponenttype) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isAllowOnlyGS1Encoding() {#isAllowOnlyGS1Encoding--} +``` +public boolean isAllowOnlyGS1Encoding() +``` + + +Si ce drapeau est activé, il n'autorise que la norme d'encodage GS1 pour le composant 2D GS1CompositeBar + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAllowOnlyGS1Encoding(boolean value) {#setAllowOnlyGS1Encoding-boolean-} +``` +public void setAllowOnlyGS1Encoding(boolean value) +``` + + +Si ce drapeau est activé, il n'autorise que la norme d'encodage GS1 pour le composant 2D GS1CompositeBar + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setLinearComponentType(BaseEncodeType value) {#setLinearComponentType-com.aspose.barcode.generation.BaseEncodeType-} +``` +public void setLinearComponentType(BaseEncodeType value) +``` + + +Type de composant linéaire : GS1Code128, UPCE, EAN8, UPCA, EAN13, DatabarStacked, DatabarStackedOmniDirectional, DatabarLimited, DatabarOmniDirectional, DatabarExpanded, DatabarExpandedStacked + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | | + +### setTwoDComponentType(TwoDComponentType value) {#setTwoDComponentType-com.aspose.barcode.generation.TwoDComponentType-} +``` +public void setTwoDComponentType(TwoDComponentType value) +``` + + +Type de composant 2D + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [TwoDComponentType](../../com.aspose.barcode.generation/twodcomponenttype) | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible de cet objet DataBarParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente cet objet DataBarParameters +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/gs1hanxinencoder/_index.md b/french/androidjava/com.aspose.barcode.generation/gs1hanxinencoder/_index.md new file mode 100644 index 000000000..5cc11d006 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/gs1hanxinencoder/_index.md @@ -0,0 +1,224 @@ +--- +title: GS1HanXinEncoder +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Contient des fonctions pour l'encodage GS1HanXin +type: docs +weight: 47 +url: /fr/androidjava/com.aspose.barcode.generation/gs1hanxinencoder/ +--- +**Inheritance:** +java.lang.Object, com.aspose.barcode.generation.renderers.barcoderenderers.encoders.BarCodeEncoder, com.aspose.barcode.generation.HanXinEncoder +``` +public class GS1HanXinEncoder extends HanXinEncoder +``` + +Contient des fonctions pour l'encodage GS1HanXin +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [GS1HanXinEncoder(HanXinEncoderParameters parameters)](#GS1HanXinEncoder-com.aspose.barcode.generation.renderers.barcoderenderers.encoders.parameters.HanXinEncoderParameters-) | Les données d'entrée doivent contenir des parenthèses () uniquement comme séparateur de modes, par ex. : (01)12345678901231(21)ASPOSE(30)9876 Selon les spécifications GS1, toutes les chaînes de données GS1 de longueur prédéfinie doivent être suivies de toutes les chaînes de données GS1 de longueur non prédéfinie. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [encode(String str)](#encode-java.lang.String-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAlwaysShowChecksum()](#getAlwaysShowChecksum--) | | +| [getChecksum()](#getChecksum--) | | +| [getClass()](#getClass--) | | +| [getEnableChecksum()](#getEnableChecksum--) | | +| [getEncodeType()](#getEncodeType--) | | +| [getHumanReadableCodeText()](#getHumanReadableCodeText--) | | +| [getParameters()](#getParameters--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### GS1HanXinEncoder(HanXinEncoderParameters parameters) {#GS1HanXinEncoder-com.aspose.barcode.generation.renderers.barcoderenderers.encoders.parameters.HanXinEncoderParameters-} +``` +public GS1HanXinEncoder(HanXinEncoderParameters parameters) +``` + + +Les données d'entrée doivent contenir des parenthèses () uniquement comme séparateur de modes, par ex. : (01)12345678901231(21)ASPOSE(30)9876 Selon les spécifications GS1, toutes les chaînes de données GS1 de longueur prédéfinie doivent être suivies de toutes les chaînes de données GS1 de longueur non prédéfinie. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| paramètres | com.aspose.barcode.generation.renderers.barcoderenderers.encoders.parameters.HanXinEncoderParameters | | + +### encode(String str) {#encode-java.lang.String-} +``` +public String encode(String str) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| str | java.lang.String | | + +**Returns:** +java.lang.String +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAlwaysShowChecksum() {#getAlwaysShowChecksum--} +``` +public boolean getAlwaysShowChecksum() +``` + + + + +**Returns:** +boolean +### getChecksum() {#getChecksum--} +``` +public String getChecksum() +``` + + + + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getEnableChecksum() {#getEnableChecksum--} +``` +public EnableChecksum getEnableChecksum() +``` + + + + +**Returns:** +[EnableChecksum](../../com.aspose.barcode.generation/enablechecksum) +### getEncodeType() {#getEncodeType--} +``` +public BaseEncodeType getEncodeType() +``` + + + + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) +### getHumanReadableCodeText() {#getHumanReadableCodeText--} +``` +public String getHumanReadableCodeText() +``` + + + + +**Returns:** +java.lang.String +### getParameters() {#getParameters--} +``` +public EncoderParameters getParameters() +``` + + + + +**Returns:** +com.aspose.barcode.generation.renderers.barcoderenderers.encoders.parameters.EncoderParameters +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/hanxinencodemode/_index.md b/french/androidjava/com.aspose.barcode.generation/hanxinencodemode/_index.md new file mode 100644 index 000000000..4405859f1 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/hanxinencodemode/_index.md @@ -0,0 +1,363 @@ +--- +title: HanXinEncodeMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode d'encodage Han Xin Code. +type: docs +weight: 89 +url: /fr/androidjava/com.aspose.barcode.generation/hanxinencodemode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum HanXinEncodeMode extends Enum +``` + +Mode d'encodage Han Xin Code. Il est recommandé d'utiliser Auto avec des caractères ASCII / chinois ou Unicode pour les caractères Unicode. + +-------------------- + +> ``` +> // Auto mode +> String codetext = "1234567890ABCDEFGabcdefg,Han Xin Code"; +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.HAN_XIN, codetext); +> generator.save("test.bmp"); +> +> +> // Binary mode +> byte[] encodedArr = { 0xFF, 0xFE, 0xFD, 0xFC, 0xFB, 0xFA, 0xF9 }; +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.HAN_XIN) +> generator.setCodeText(encodedArr); +> generator.getParameters().getBarcode().getHanXin().setHanXinEncodeMode(HanXinEncodeMode.BINARY); +> generator.save("test.bmp"); +> +> // ECI mode +> String codetext = "\u0391\u0392\u0393\u0394\u0395"; +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.HAN_XIN, codetext); +> generator.getParameters().getBarcode().getHanXin().setHanXinEncodeMode(HanXinEncodeMode.ECI); +> generator.getParameters().getBarcode().getHanXin().setHanXinECIEncoding(ECIEncodings.ISO_8859_7); +> generator.save("test.bmp"); +> +> // URI mode +> String codetext = "https://www.test.com/%BC%DE%%%ab/search=test"; +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.HAN_XIN, codetext); +> generator.getParameters().getBarcode().getHanXin().setEncodeMode(EncodeMode.URI); +> generator.save("test.bmp"); +> +> +> // Extended mode +> String str = "\\gb180302b:\u6f04\\gb180304b:\u3401\\region1:\u5168\\region2:\u8785\\numeric:123\\text:qwe\\\\unicode:\u0131nt\u0259\u02c8næ\u0283\u0259n\u0259l" + +> "\\000009:\u0391\u0392\u0393\u0394\u0395\\auto:abc\\binary:abc\\\\uri:backslashes_should_be_doubled\\\\000555:test"; +> +> String expectedStr = "\u6f04\u3401\u5168\u8785123qwe\u0131nt\u0259\u02c8næ\u0283\u0259n\u0259l\u0391\u0392\u0393\u0394\u0395abcabcbackslashes_should_be_doubled\\000555:test"; +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.HanXin, str); +> generator.getParameters().getBarcode().getHanXin().setEncodeMode(EncodeMode.EXTENDED); +> generator.save("test.bmp"); +> +> // Using HanXinExtCodetextBuilder for Extended mode (same codetext as in previous example) +> //create codetext +> HanXinExtCodetextBuilder codeTextBuilder = new HanXinExtCodetextBuilder(); +> codeTextBuilder.addGB18030TwoByte("\u6f04"); +> codeTextBuilder.addGB18030FourByte("\u3401"); +> codeTextBuilder.addCommonChineseRegionOne("\u5168"); +> codeTextBuilder.addCommonChineseRegionTwo("\u8785"); +> codeTextBuilder.addNumeric("123"); +> codeTextBuilder.addText("qwe"); +> codeTextBuilder.addUnicode("\u0131nt\u0259\u02c8næ\u0283\u0259n\u0259l"); +> codeTextBuilder.addECI("\u0391\u0392\u0393\u0394\u0395", 9); +> codeTextBuilder.addAuto("abc"); +> codeTextBuilder.addBinary("abc"); +> codeTextBuilder.addURI("backslashes_should_be_doubled\\000555:test"); +> +> String expectedStr = "\u6f04\u3401\u5168\u8785123qwe\u0131nt\u0259\u02c8næ\u0283\u0259n\u0259l\u0391\u0392\u0393\u0394\u0395abcabcbackslashes_should_be_doubled\\000555:test"; +> +> //generate codetext +> String str = codeTextBuilder.getExtendedCodetext(); +> +> //generate +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.HanXin, str); +> generator.getParameters().getBarcode().getHanXin().setEncodeMode(EncodeMode.EXTENDED); +> generator.save("test.bmp"); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | En mode Auto, le CodeText est encodé avec une compacité maximale des données. | +| [BINARY](#BINARY) | En mode Binaire, le CodeText est encodé avec une compacité maximale des données. | +| [ECI](#ECI) | En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. | +| [EXTENDED](#EXTENDED) | Le mode étendu autorise les combinaisons de modes internes : Auto, Binary, Text, Numeric, URI, Unicode, ECI, Common Chinese Region One, Common Chinese Region Two, GB18030 Two Byte, GB18030 Four Byte. | +| [UNICODE](#UNICODE) | Le mode Unicode conçoit une méthode pour représenter toute donnée textuelle référencée à l'encodage/jeu de caractères UTF8 dans Han Xin Code. | +| [URI](#URI) | Le mode URI indique que les données représentées dans Han Xin Code sont une référence Uniform Resource Identifier (URI) à la RFC 3986. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final HanXinEncodeMode AUTO +``` + + +En mode Auto, le CodeText est encodé avec une compacité maximale des données. Les caractères Unicode sont encodés en utilisant l’encodage GB18030 selon la spécification du code-barres HanXin. + +### BINARY {#BINARY} +``` +public static final HanXinEncodeMode BINARY +``` + + +En mode Binaire, le CodeText est encodé avec une compacité maximale des données. Si un caractère Unicode est trouvé, une exception est levée. + +### ECI {#ECI} +``` +public static final HanXinEncodeMode ECI +``` + + +En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. Si un caractère est trouvé qui n’est pas pris en charge par l’encodage ECI sélectionné, une exception est levée. Veuillez noter que certains scanners anciens (pré‑2006) peuvent ne pas prendre en charge ce mode. + +### EXTENDED {#EXTENDED} +``` +public static final HanXinEncodeMode EXTENDED +``` + + +Le mode étendu autorise les combinaisons de modes internes : Auto, Binary, Text, Numeric, URI, Unicode, ECI, Common Chinese Region One, Common Chinese Region Two, GB18030 Two Byte, GB18030 Four Byte. Le Codetext peut être construit manuellement avec des préfixes et des barres obliques inversées doublées, par ex. : @\"\\auto:abc\\000009:\\u0391\\u0392\\u0393\\u0394\\u0395\\auto:ab\\\\c\" ou en utilisant le HanXinExtCodetextBuilder. Si le codetext contient un fragment ECI, alors seuls les modes suivants peuvent être présents dans ce codetext après le fragment ECI : Auto, Binary, Text, Numeric, URI, ECI. + +### UNICODE {#UNICODE} +``` +public static final HanXinEncodeMode UNICODE +``` + + +Le mode Unicode conçoit une méthode pour représenter toute donnée textuelle référencée à l'encodage/jeu de caractères UTF8 dans Han Xin Code. + +### URI {#URI} +``` +public static final HanXinEncodeMode URI +``` + + +Le mode URI indique que les données représentées dans Han Xin Code sont une référence Uniform Resource Identifier (URI) à la RFC 3986. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static HanXinEncodeMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[HanXinEncodeMode](../../com.aspose.barcode.generation/hanxinencodemode) +### values() {#values--} +``` +public static HanXinEncodeMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.HanXinEncodeMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/hanxinencoder/_index.md b/french/androidjava/com.aspose.barcode.generation/hanxinencoder/_index.md new file mode 100644 index 000000000..c212bd481 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/hanxinencoder/_index.md @@ -0,0 +1,220 @@ +--- +title: HanXinEncoder +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 48 +url: /fr/androidjava/com.aspose.barcode.generation/hanxinencoder/ +--- +**Inheritance:** +java.lang.Object, com.aspose.barcode.generation.renderers.barcoderenderers.encoders.BarCodeEncoder +``` +public class HanXinEncoder extends BarCodeEncoder +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [HanXinEncoder(HanXinEncoderParameters parameters)](#HanXinEncoder-com.aspose.barcode.generation.renderers.barcoderenderers.encoders.parameters.HanXinEncoderParameters-) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [encode(String str)](#encode-java.lang.String-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAlwaysShowChecksum()](#getAlwaysShowChecksum--) | | +| [getChecksum()](#getChecksum--) | | +| [getClass()](#getClass--) | | +| [getEnableChecksum()](#getEnableChecksum--) | | +| [getEncodeType()](#getEncodeType--) | | +| [getHumanReadableCodeText()](#getHumanReadableCodeText--) | | +| [getParameters()](#getParameters--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### HanXinEncoder(HanXinEncoderParameters parameters) {#HanXinEncoder-com.aspose.barcode.generation.renderers.barcoderenderers.encoders.parameters.HanXinEncoderParameters-} +``` +public HanXinEncoder(HanXinEncoderParameters parameters) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| paramètres | com.aspose.barcode.generation.renderers.barcoderenderers.encoders.parameters.HanXinEncoderParameters | | + +### encode(String str) {#encode-java.lang.String-} +``` +public String encode(String str) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| str | java.lang.String | | + +**Returns:** +java.lang.String +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAlwaysShowChecksum() {#getAlwaysShowChecksum--} +``` +public boolean getAlwaysShowChecksum() +``` + + + + +**Returns:** +boolean +### getChecksum() {#getChecksum--} +``` +public String getChecksum() +``` + + + + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getEnableChecksum() {#getEnableChecksum--} +``` +public EnableChecksum getEnableChecksum() +``` + + + + +**Returns:** +[EnableChecksum](../../com.aspose.barcode.generation/enablechecksum) +### getEncodeType() {#getEncodeType--} +``` +public BaseEncodeType getEncodeType() +``` + + + + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) +### getHumanReadableCodeText() {#getHumanReadableCodeText--} +``` +public String getHumanReadableCodeText() +``` + + + + +**Returns:** +java.lang.String +### getParameters() {#getParameters--} +``` +public EncoderParameters getParameters() +``` + + + + +**Returns:** +com.aspose.barcode.generation.renderers.barcoderenderers.encoders.parameters.EncoderParameters +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/hanxinerrorlevel/_index.md b/french/androidjava/com.aspose.barcode.generation/hanxinerrorlevel/_index.md new file mode 100644 index 000000000..67fe7c32d --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/hanxinerrorlevel/_index.md @@ -0,0 +1,279 @@ +--- +title: HanXinErrorLevel +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Niveau de correction d'erreurs Reed-Solomon. +type: docs +weight: 90 +url: /fr/androidjava/com.aspose.barcode.generation/hanxinerrorlevel/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum HanXinErrorLevel extends Enum +``` + +Niveau de correction d'erreurs Reed‑Solomon. Du plus bas au plus haut : L1, L2, L3, L4. +## Champs + +| Champ | Description | +| --- | --- | +| [L1](#L1) | Permet la récupération de 8 % du texte du code | +| [L2](#L2) | Permet la récupération de 15 % du texte du code | +| [L3](#L3) | Permet la récupération de 23 % du texte du code | +| [L4](#L4) | Permet la récupération de 30 % du texte du code | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### L1 {#L1} +``` +public static final HanXinErrorLevel L1 +``` + + +Permet la récupération de 8 % du texte du code + +### L2 {#L2} +``` +public static final HanXinErrorLevel L2 +``` + + +Permet la récupération de 15 % du texte du code + +### L3 {#L3} +``` +public static final HanXinErrorLevel L3 +``` + + +Permet la récupération de 23 % du texte du code + +### L4 {#L4} +``` +public static final HanXinErrorLevel L4 +``` + + +Permet la récupération de 30 % du texte du code + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static HanXinErrorLevel valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[HanXinErrorLevel](../../com.aspose.barcode.generation/hanxinerrorlevel) +### values() {#values--} +``` +public static HanXinErrorLevel[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.HanXinErrorLevel[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/hanxinextcodetextbuilder/_index.md b/french/androidjava/com.aspose.barcode.generation/hanxinextcodetextbuilder/_index.md new file mode 100644 index 000000000..88e3ac8bc --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/hanxinextcodetextbuilder/_index.md @@ -0,0 +1,346 @@ +--- +title: HanXinExtCodetextBuilder +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 49 +url: /fr/androidjava/com.aspose.barcode.generation/hanxinextcodetextbuilder/ +--- +**Inheritance:** +java.lang.Object +``` +public class HanXinExtCodetextBuilder +``` + +Générateur de texte de code étendu pour le code Han Xin en mode étendu de HanXinEncodeMode + +-------------------- + +> ``` +> //Extended codetext mode +> //create codetext +> HanXinExtCodetextBuilder codeTextBuilder = new HanXinExtCodetextBuilder(); +> codeTextBuilder.addGB18030TwoByte("\u6f04"); +> codeTextBuilder.addGB18030FourByte("\u3401"); +> codeTextBuilder.addCommonChineseRegionOne("\u5168"); +> codeTextBuilder.addCommonChineseRegionTwo("\u8785"); +> codeTextBuilder.addNumeric("123"); +> codeTextBuilder.addText("qwe"); +> codeTextBuilder.addUnicode("\u0131nt\u0259\u02c8næ\u0283\u0259n\u0259l"); +> codeTextBuilder.addECI("\u0391\u0392\u0393\u0394\u0395", 9); +> codeTextBuilder.addAuto("abc"); +> codeTextBuilder.addBinary("abc"); +> codeTextBuilder.addURI("backslashes_should_be_doubled\\000555:test"); +> codeTextBuilder.addGS1("(01)03453120000011(17)191125(10)ABCD1234(21)10"); +> String expectedStr = "\u6f04\u3401\u5168\u8785123qwe\u0131nt\u0259\u02c8næ\u0283\u0259n\u0259l\u0391\u0392\u0393\u0394\u0395abcabcbackslashes_should_be_doubled\\000555:test(01)03453120000011(17)191125(10)ABCD1234(21)10"; +> //generate codetext +> String str = codeTextBuilder.getExtendedCodetext(); +> //generate +> BarcodeGenerator bg = new BarcodeGenerator(EncodeTypes.HAN_XIN, str); +> bg.getParameters().getBarcode().getHanXin().setEncodeMode(EncodeMode.EXTENDED); +> BufferedImage img = bg.generateBarCodeImage(); +> BarCodeReader r = new BarCodeReader(img, DecodeType.HAN_XIN)) +> BarcodeResult[] found = r.readBarCodes(); +> Assert.assertEquals(1, found.length); +> Assert.assertEquals(expectedStr, found[0].getCodeText()); +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [HanXinExtCodetextBuilder()](#HanXinExtCodetextBuilder--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addAuto(String text)](#addAuto-java.lang.String-) | Ajoute un fragment de texte de code en mode Auto | +| [addBinary(String text)](#addBinary-java.lang.String-) | Ajoute un fragment de texte de code en mode Binaire | +| [addCommonChineseRegionOne(String text)](#addCommonChineseRegionOne-java.lang.String-) | Ajoute un fragment de texte de code en mode Région chinoise commune Un | +| [addCommonChineseRegionTwo(String text)](#addCommonChineseRegionTwo-java.lang.String-) | Ajoute un fragment de texte de code en mode Région chinoise commune Deux | +| [addECI(String text, int encoding)](#addECI-java.lang.String-int-) | Ajoute un fragment de texte de code en mode ECI | +| [addGB18030FourByte(String text)](#addGB18030FourByte-java.lang.String-) | Ajoute un fragment de texte de code en mode GB18030 quatre octets | +| [addGB18030TwoByte(String text)](#addGB18030TwoByte-java.lang.String-) | Ajoute un fragment de texte de code en mode GB18030 deux octets | +| [addGS1(String text)](#addGS1-java.lang.String-) | Ajoute un fragment de texte de code en mode GS1 | +| [addNumeric(String text)](#addNumeric-java.lang.String-) | Ajoute un fragment de texte de code en mode Numérique | +| [addText(String text)](#addText-java.lang.String-) | Ajoute un fragment de texte de code en mode Texte | +| [addURI(String text)](#addURI-java.lang.String-) | Ajoute un fragment de texte de code en mode URI | +| [addUnicode(String text)](#addUnicode-java.lang.String-) | Ajoute un fragment de texte de code en mode Unicode | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getExtendedCodetext()](#getExtendedCodetext--) | Renvoie le texte de code depuis le générateur de texte de code en mode Étendu | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### HanXinExtCodetextBuilder() {#HanXinExtCodetextBuilder--} +``` +public HanXinExtCodetextBuilder() +``` + + +### addAuto(String text) {#addAuto-java.lang.String-} +``` +public void addAuto(String text) +``` + + +Ajoute un fragment de texte de code en mode Auto + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | + +### addBinary(String text) {#addBinary-java.lang.String-} +``` +public void addBinary(String text) +``` + + +Ajoute un fragment de texte de code en mode Binaire + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | + +### addCommonChineseRegionOne(String text) {#addCommonChineseRegionOne-java.lang.String-} +``` +public void addCommonChineseRegionOne(String text) +``` + + +Ajoute un fragment de texte de code en mode Région chinoise commune Un + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | + +### addCommonChineseRegionTwo(String text) {#addCommonChineseRegionTwo-java.lang.String-} +``` +public void addCommonChineseRegionTwo(String text) +``` + + +Ajoute un fragment de texte de code en mode Région chinoise commune Deux + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | + +### addECI(String text, int encoding) {#addECI-java.lang.String-int-} +``` +public void addECI(String text, int encoding) +``` + + +Ajoute un fragment de texte de code en mode ECI + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | +| encodage | int | Encodage ECI au format entier | + +### addGB18030FourByte(String text) {#addGB18030FourByte-java.lang.String-} +``` +public void addGB18030FourByte(String text) +``` + + +Ajoute un fragment de texte de code en mode GB18030 quatre octets + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | + +### addGB18030TwoByte(String text) {#addGB18030TwoByte-java.lang.String-} +``` +public void addGB18030TwoByte(String text) +``` + + +Ajoute un fragment de texte de code en mode GB18030 deux octets + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | + +### addGS1(String text) {#addGS1-java.lang.String-} +``` +public void addGS1(String text) +``` + + +Ajoute un fragment de texte de code en mode GS1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | + +### addNumeric(String text) {#addNumeric-java.lang.String-} +``` +public void addNumeric(String text) +``` + + +Ajoute un fragment de texte de code en mode Numérique + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | + +### addText(String text) {#addText-java.lang.String-} +``` +public void addText(String text) +``` + + +Ajoute un fragment de texte de code en mode Texte + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | + +### addURI(String text) {#addURI-java.lang.String-} +``` +public void addURI(String text) +``` + + +Ajoute un fragment de texte de code en mode URI + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | + +### addUnicode(String text) {#addUnicode-java.lang.String-} +``` +public void addUnicode(String text) +``` + + +Ajoute un fragment de texte de code en mode Unicode + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | Chaîne de texte de code | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getExtendedCodetext() {#getExtendedCodetext--} +``` +public String getExtendedCodetext() +``` + + +Renvoie le texte de code depuis le générateur de texte de code en mode Étendu + +**Returns:** +java.lang.String - Texte de code en mode Étendu +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/hanxinmodes/_index.md b/french/androidjava/com.aspose.barcode.generation/hanxinmodes/_index.md new file mode 100644 index 000000000..cb2b743cc --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/hanxinmodes/_index.md @@ -0,0 +1,351 @@ +--- +title: HanXinModes +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode d'encodage Han Xin Code. +type: docs +weight: 91 +url: /fr/androidjava/com.aspose.barcode.generation/hanxinmodes/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum HanXinModes extends Enum +``` + +Mode d'encodage Han Xin Code. Il est recommandé d'utiliser Auto avec des caractères ASCII / chinois ou Unicode pour les caractères Unicode. +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Séquence des modes Numérique, Texte, ECI, Octets binaires et 4 GB18030 changeant automatiquement. | +| [BINARY](#BINARY) | Le mode octet binaire encode les données binaires sous n'importe quelle forme et les encode dans leur octet binaire. | +| [COMMON_CHINESE_REGION_ONE](#COMMON-CHINESE-REGION-ONE) | Chaque caractère chinois commun de la région un est représenté par 12 bits. | +| [COMMON_CHINESE_REGION_TWO](#COMMON-CHINESE-REGION-TWO) | Chaque caractère chinois commun de la région deux est représenté par 12 bits. | +| [ECI](#ECI) | Mode d'interprétation de canal étendu (ECI) | +| [GB_18030_FOUR_BYTE](#GB-18030-FOUR-BYTE) | Chaque caractère de la région 4 octets GB18030 est représenté par 21 bits. | +| [GB_18030_TWO_BYTE](#GB-18030-TWO-BYTE) | Chaque caractère de la région 2 octets GB18030 est représenté par 15 bits. | +| [GS_1](#GS-1) | Le mode GS1 indique que les données représentées dans Han Xin Code sont des données GS1 du système GS1 définies par la spécification générale GS1. | +| [NUMERIC](#NUMERIC) | Le mode numérique encode les données à partir de l'ensemble de chiffres décimaux (chiffres 0-9, valeurs d'octet 30HEX à 39HEX). | +| [TEXT](#TEXT) | Le mode texte encode les données à partir des symboles courants définis dans ISO/IEC 646, c’est‑à‑dire. | +| [UNICODE](#UNICODE) | Le mode Unicode conçoit une méthode pour représenter toute donnée textuelle référencée à l'encodage/jeu de caractères UTF8 dans Han Xin Code. | +| [URI](#URI) | Le mode URI indique que les données représentées dans Han Xin Code sont une référence Uniform Resource Identifier (URI) à la RFC 3986. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final HanXinModes AUTO +``` + + +Séquence des modes Numérique, Texte, ECI, Octets binaires et 4 GB18030 changeant automatiquement. + +### BINARY {#BINARY} +``` +public static final HanXinModes BINARY +``` + + +Le mode octet binaire encode les données binaires sous n'importe quelle forme et les encode dans leur octet binaire. Chaque octet en mode Octet Binaire est représenté par 8 bits. + +### COMMON_CHINESE_REGION_ONE {#COMMON-CHINESE-REGION-ONE} +``` +public static final HanXinModes COMMON_CHINESE_REGION_ONE +``` + + +Chaque caractère chinois commun de la région un est représenté par 12 bits. Les caractères chinois communs de la région un comprennent les caractères dont la première valeur d'octet est comprise entre B0HEX et D7HEX et la deuxième valeur d'octet entre A1HEX et FEHEX (3760 caractères), ainsi que les caractères dont la première valeur d'octet est comprise entre A1HEX et A3HEX et la deuxième valeur d'octet entre A1HEX et FEHEX (282 caractères), et les caractères dont les valeurs d'octet sont comprises entre A8A1HEX et A8C0HEX (32 caractères). + +### COMMON_CHINESE_REGION_TWO {#COMMON-CHINESE-REGION-TWO} +``` +public static final HanXinModes COMMON_CHINESE_REGION_TWO +``` + + +Chaque caractère chinois commun de la région deux est représenté par 12 bits. Les caractères chinois communs de la région deux comprennent les caractères dont la première valeur d'octet est comprise entre D8HEX et F7HEX et la deuxième valeur d'octet entre A1HEX et FEHEX. + +### ECI {#ECI} +``` +public static final HanXinModes ECI +``` + + +Mode d'interprétation de canal étendu (ECI) + +### GB_18030_FOUR_BYTE {#GB-18030-FOUR-BYTE} +``` +public static final HanXinModes GB_18030_FOUR_BYTE +``` + + +Chaque caractère de la région 4 octets GB18030 est représenté par 21 bits. La région 4 octets GB18030 encode les données de tous les caractères de la région à quatre octets GB18030 (c’est‑à‑dire les caractères dont la première valeur d'octet est comprise entre 81HEX et FEHEX, la deuxième valeur d'octet entre 30HEX et 39HEX, la troisième valeur d'octet entre 81HEX et FEHEX, et la quatrième valeur d'octet entre 30HEX et 39HEX). + +### GB_18030_TWO_BYTE {#GB-18030-TWO-BYTE} +``` +public static final HanXinModes GB_18030_TWO_BYTE +``` + + +Chaque caractère de la région 2 octets GB18030 est représenté par 15 bits. La région 2 octets GB18030 encode les données de tous les caractères (y compris les caractères chinois communs des régions un et deux) de la région à deux octets GB18030, (c’est‑à‑dire les caractères chinois dont la première valeur d'octet est comprise entre 81HEX et FEHEX et la deuxième valeur d'octet entre 40HEX et 7EHEX ou 80HEX et FEHEX). + +### GS_1 {#GS-1} +``` +public static final HanXinModes GS_1 +``` + + +Le mode GS1 indique que les données représentées dans Han Xin Code sont des données GS1 du système GS1 définies par la spécification générale GS1. Exemple de chaîne d'entrée : "(01)03453120000011(17)191125(10)ABCD1234(21)10". + +### NUMERIC {#NUMERIC} +``` +public static final HanXinModes NUMERIC +``` + + +Le mode numérique encode les données à partir de l'ensemble de chiffres décimaux (chiffres 0-9, valeurs d'octet 30HEX à 39HEX). Normalement, 3 caractères de données sont représentés par 10 bits. + +### TEXT {#TEXT} +``` +public static final HanXinModes TEXT +``` + + +Le mode texte encode les données à partir des symboles courants définis dans ISO/IEC 646, c’est‑à‑dire les valeurs d'octet 00 HEX à 1B HEX et 20 HEX à 7F HEX. + +### UNICODE {#UNICODE} +``` +public static final HanXinModes UNICODE +``` + + +Le mode Unicode conçoit une méthode pour représenter toute donnée textuelle référencée à l'encodage/jeu de caractères UTF8 dans Han Xin Code. + +### URI {#URI} +``` +public static final HanXinModes URI +``` + + +Le mode URI indique que les données représentées dans Han Xin Code sont une référence Uniform Resource Identifier (URI) à la RFC 3986. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static HanXinModes valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +com.aspose.barcode.generation.HanXinModes +### values() {#values--} +``` +public static HanXinModes[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.HanXinModes[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/hanxinparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/hanxinparameters/_index.md new file mode 100644 index 000000000..eeebce552 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/hanxinparameters/_index.md @@ -0,0 +1,268 @@ +--- +title: HanXinParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres Han Xin. +type: docs +weight: 50 +url: /fr/androidjava/com.aspose.barcode.generation/hanxinparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class HanXinParameters +``` + +Paramètres Han Xin. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getECIEncoding()](#getECIEncoding--) | Identifiants d'interprétation de canal étendu. | +| [getEncodeMode()](#getEncodeMode--) | Mode d'encodage HanXin. | +| [getErrorLevel()](#getErrorLevel--) | Niveau de correction d'erreurs Reed-Solomon pour le code-barres Han Xin. | +| [getHanXinECIEncoding()](#getHanXinECIEncoding--) | Identifiants d'interprétation de canal étendu. | +| [getHanXinEncodeMode()](#getHanXinEncodeMode--) | Mode d'encodage HanXin. | +| [getHanXinErrorLevel()](#getHanXinErrorLevel--) | Niveau de correction d'erreurs Reed-Solomon pour le code-barres Han Xin. | +| [getHanXinVersion()](#getHanXinVersion--) | Version du code HanXin. | +| [getVersion()](#getVersion--) | Version du code HanXin. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Identifiants d'interprétation de canal étendu. | +| [setEncodeMode(HanXinEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.HanXinEncodeMode-) | Mode d'encodage HanXin. | +| [setErrorLevel(HanXinErrorLevel value)](#setErrorLevel-com.aspose.barcode.generation.HanXinErrorLevel-) | Niveau de correction d'erreurs Reed-Solomon pour le code-barres Han Xin. | +| [setVersion(HanXinVersion value)](#setVersion-com.aspose.barcode.generation.HanXinVersion-) | Version du code HanXin. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible de cet [HanXinParameters](../../com.aspose.barcode.generation/hanxinparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Identifiants d'interprétation de canal étendu. Ils sont utilisés pour indiquer au lecteur de code-barres des détails sur les références utilisées pour l'encodage des données dans le symbole. L'implémentation actuelle contient tous les encodages de jeux de caractères bien connus. + +**Returns:** +int +### getEncodeMode() {#getEncodeMode--} +``` +public final HanXinEncodeMode getEncodeMode() +``` + + +Mode d'encodage HanXin. Valeur par défaut : EncodeMode.Mixed. + +**Returns:** +[HanXinEncodeMode](../../com.aspose.barcode.generation/hanxinencodemode) +### getErrorLevel() {#getErrorLevel--} +``` +public final HanXinErrorLevel getErrorLevel() +``` + + +Niveau de correction d'erreurs Reed-Solomon pour le code-barres Han Xin. Du plus bas au plus haut : L1, L2, L3, L4. voir ErrorLevel. + +**Returns:** +[HanXinErrorLevel](../../com.aspose.barcode.generation/hanxinerrorlevel) +### getHanXinECIEncoding() {#getHanXinECIEncoding--} +``` +public final int getHanXinECIEncoding() +``` + + +Identifiants d'interprétation de canal étendu. Ils sont utilisés pour indiquer au lecteur de code-barres des détails sur les références utilisées pour l'encodage des données dans le symbole. L'implémentation actuelle contient tous les encodages de jeux de caractères bien connus. + +**Returns:** +int +### getHanXinEncodeMode() {#getHanXinEncodeMode--} +``` +public final HanXinEncodeMode getHanXinEncodeMode() +``` + + +Mode d'encodage HanXin. Valeur par défaut : EncodeMode.Mixed. + +**Returns:** +[HanXinEncodeMode](../../com.aspose.barcode.generation/hanxinencodemode) +### getHanXinErrorLevel() {#getHanXinErrorLevel--} +``` +public final HanXinErrorLevel getHanXinErrorLevel() +``` + + +Niveau de correction d'erreurs Reed-Solomon pour le code-barres Han Xin. Du plus bas au plus haut : L1, L2, L3, L4. voir ErrorLevel. + +**Returns:** +[HanXinErrorLevel](../../com.aspose.barcode.generation/hanxinerrorlevel) +### getHanXinVersion() {#getHanXinVersion--} +``` +public final HanXinVersion getHanXinVersion() +``` + + +Version du code HanXin. De Version01 à Version84 pour le code Han Xin. La valeur par défaut est Version.Auto. + +**Returns:** +[HanXinVersion](../../com.aspose.barcode.generation/hanxinversion) +### getVersion() {#getVersion--} +``` +public final HanXinVersion getVersion() +``` + + +Version du code HanXin. De Version01 à Version84 pour le code Han Xin. La valeur par défaut est Version.Auto. + +**Returns:** +[HanXinVersion](../../com.aspose.barcode.generation/hanxinversion) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Identifiants d'interprétation de canal étendu. Ils sont utilisés pour indiquer au lecteur de code-barres des détails sur les références utilisées pour l'encodage des données dans le symbole. L'implémentation actuelle contient tous les encodages de jeux de caractères bien connus. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setEncodeMode(HanXinEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.HanXinEncodeMode-} +``` +public final void setEncodeMode(HanXinEncodeMode value) +``` + + +Mode d'encodage HanXin. Valeur par défaut : EncodeMode.Mixed. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [HanXinEncodeMode](../../com.aspose.barcode.generation/hanxinencodemode) | | + +### setErrorLevel(HanXinErrorLevel value) {#setErrorLevel-com.aspose.barcode.generation.HanXinErrorLevel-} +``` +public final void setErrorLevel(HanXinErrorLevel value) +``` + + +Niveau de correction d'erreurs Reed-Solomon pour le code-barres Han Xin. Du plus bas au plus haut : L1, L2, L3, L4. voir ErrorLevel. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [HanXinErrorLevel](../../com.aspose.barcode.generation/hanxinerrorlevel) | | + +### setVersion(HanXinVersion value) {#setVersion-com.aspose.barcode.generation.HanXinVersion-} +``` +public final void setVersion(HanXinVersion value) +``` + + +Version du code HanXin. De Version01 à Version84 pour le code Han Xin. La valeur par défaut est Version.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [HanXinVersion](../../com.aspose.barcode.generation/hanxinversion) | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible de cet [HanXinParameters](../../com.aspose.barcode.generation/hanxinparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente cet [HanXinParameters](../../com.aspose.barcode.generation/hanxinparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/hanxinversion/_index.md b/french/androidjava/com.aspose.barcode.generation/hanxinversion/_index.md new file mode 100644 index 000000000..700d6d298 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/hanxinversion/_index.md @@ -0,0 +1,1008 @@ +--- +title: HanXinVersion +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Version du Han Xin Code. +type: docs +weight: 92 +url: /fr/androidjava/com.aspose.barcode.generation/hanxinversion/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum HanXinVersion extends Enum +``` + +Version du code Han Xin. De Version01 - 23 x 23 modules à Version84 - 189 x 189 modules, augmentant par pas de 2 modules par côté. +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Spécifie de sélectionner automatiquement la meilleure version. | +| [VERSION_01](#VERSION-01) | Spécifie la version 1 avec 23 x 23 modules. | +| [VERSION_02](#VERSION-02) | Spécifie la version 2 avec 25 x 25 modules. | +| [VERSION_03](#VERSION-03) | Spécifie la version 3 avec 27 x 27 modules. | +| [VERSION_04](#VERSION-04) | Spécifie la version 4 avec 29 x 29 modules. | +| [VERSION_05](#VERSION-05) | Spécifie la version 5 avec 31 x 31 modules. | +| [VERSION_06](#VERSION-06) | Spécifie la version 6 avec 33 x 33 modules. | +| [VERSION_07](#VERSION-07) | Spécifie la version 7 avec 35 x 35 modules. | +| [VERSION_08](#VERSION-08) | Spécifie la version 8 avec 37 x 37 modules. | +| [VERSION_09](#VERSION-09) | Spécifie la version 9 avec 39 x 39 modules. | +| [VERSION_10](#VERSION-10) | Spécifie la version 10 avec 41 x 41 modules. | +| [VERSION_11](#VERSION-11) | Spécifie la version 11 avec 43 x 43 modules. | +| [VERSION_12](#VERSION-12) | Spécifie la version 12 avec 45 x 45 modules. | +| [VERSION_13](#VERSION-13) | Spécifie la version 13 avec 47 x 47 modules. | +| [VERSION_14](#VERSION-14) | Spécifie la version 14 avec 49 x 49 modules. | +| [VERSION_15](#VERSION-15) | Spécifie la version 15 avec 51 x 51 modules. | +| [VERSION_16](#VERSION-16) | Spécifie la version 16 avec 53 x 53 modules. | +| [VERSION_17](#VERSION-17) | Spécifie la version 17 avec 55 x 55 modules. | +| [VERSION_18](#VERSION-18) | Spécifie la version 18 avec 57 x 57 modules. | +| [VERSION_19](#VERSION-19) | Spécifie la version 19 avec 59 x 59 modules. | +| [VERSION_20](#VERSION-20) | Spécifie la version 20 avec 61 x 61 modules. | +| [VERSION_21](#VERSION-21) | Spécifie la version 21 avec 63 x 63 modules. | +| [VERSION_22](#VERSION-22) | Spécifie la version 22 avec 65 x 65 modules. | +| [VERSION_23](#VERSION-23) | Spécifie la version 23 avec 67 x 67 modules. | +| [VERSION_24](#VERSION-24) | Spécifie la version 24 avec 69 x 69 modules. | +| [VERSION_25](#VERSION-25) | Spécifie la version 25 avec 71 x 71 modules. | +| [VERSION_26](#VERSION-26) | Spécifie la version 26 avec 73 x 73 modules. | +| [VERSION_27](#VERSION-27) | Spécifie la version 27 avec 75 x 75 modules. | +| [VERSION_28](#VERSION-28) | Spécifie la version 28 avec 77 x 77 modules. | +| [VERSION_29](#VERSION-29) | Spécifie la version 29 avec 79 x 79 modules. | +| [VERSION_30](#VERSION-30) | Spécifie la version 30 avec 81 x 81 modules. | +| [VERSION_31](#VERSION-31) | Spécifie la version 31 avec 83 x 83 modules. | +| [VERSION_32](#VERSION-32) | Spécifie la version 32 avec 85 x 85 modules. | +| [VERSION_33](#VERSION-33) | Spécifie la version 33 avec 87 x 87 modules. | +| [VERSION_34](#VERSION-34) | Spécifie la version 34 avec 89 x 89 modules. | +| [VERSION_35](#VERSION-35) | Spécifie la version 35 avec 91 x 91 modules. | +| [VERSION_36](#VERSION-36) | Spécifie la version 36 avec 93 x 93 modules. | +| [VERSION_37](#VERSION-37) | Spécifie la version 37 avec 95 x 95 modules. | +| [VERSION_38](#VERSION-38) | Spécifie la version 38 avec 97 x 97 modules. | +| [VERSION_39](#VERSION-39) | Spécifie la version 39 avec 99 x 99 modules. | +| [VERSION_40](#VERSION-40) | Spécifie la version 40 avec 101 x 101 modules. | +| [VERSION_41](#VERSION-41) | Spécifie la version 41 avec 103 x 103 modules. | +| [VERSION_42](#VERSION-42) | Spécifie la version 42 avec 105 x 105 modules. | +| [VERSION_43](#VERSION-43) | Spécifie la version 43 avec 107 x 107 modules. | +| [VERSION_44](#VERSION-44) | Spécifie la version 44 avec 109 x 109 modules. | +| [VERSION_45](#VERSION-45) | Spécifie la version 45 avec 111 x 111 modules. | +| [VERSION_46](#VERSION-46) | Spécifie la version 46 avec 113 x 113 modules. | +| [VERSION_47](#VERSION-47) | Spécifie la version 47 avec 115 x 115 modules. | +| [VERSION_48](#VERSION-48) | Spécifie la version 48 avec 117 x 117 modules. | +| [VERSION_49](#VERSION-49) | Spécifie la version 49 avec 119 x 119 modules. | +| [VERSION_50](#VERSION-50) | Spécifie la version 50 avec 121 x 121 modules. | +| [VERSION_51](#VERSION-51) | Spécifie la version 51 avec 123 x 123 modules. | +| [VERSION_52](#VERSION-52) | Spécifie la version 52 avec 125 x 125 modules. | +| [VERSION_53](#VERSION-53) | Spécifie la version 53 avec 127 x 127 modules. | +| [VERSION_54](#VERSION-54) | Spécifie la version 54 avec 129 x 129 modules. | +| [VERSION_55](#VERSION-55) | Spécifie la version 55 avec 131 x 131 modules. | +| [VERSION_56](#VERSION-56) | Spécifie la version 56 avec 133 x 133 modules. | +| [VERSION_57](#VERSION-57) | Spécifie la version 57 avec 135 x 135 modules. | +| [VERSION_58](#VERSION-58) | Spécifie la version 58 avec 137 x 137 modules. | +| [VERSION_59](#VERSION-59) | Spécifie la version 59 avec 139 x 139 modules. | +| [VERSION_60](#VERSION-60) | Spécifie la version 60 avec 141 x 141 modules. | +| [VERSION_61](#VERSION-61) | Spécifie la version 61 avec 143 x 143 modules. | +| [VERSION_62](#VERSION-62) | Spécifie la version 62 avec 145 x 145 modules. | +| [VERSION_63](#VERSION-63) | Spécifie la version 63 avec 147 x 147 modules. | +| [VERSION_64](#VERSION-64) | Spécifie la version 64 avec 149 x 149 modules. | +| [VERSION_65](#VERSION-65) | Spécifie la version 65 avec 151 x 151 modules. | +| [VERSION_66](#VERSION-66) | Spécifie la version 66 avec 153 x 153 modules. | +| [VERSION_67](#VERSION-67) | Spécifie la version 67 avec 155 x 155 modules. | +| [VERSION_68](#VERSION-68) | Spécifie la version 68 avec 157 x 157 modules. | +| [VERSION_69](#VERSION-69) | Spécifie la version 69 avec 159 x 159 modules. | +| [VERSION_70](#VERSION-70) | Spécifie la version 70 avec 161 x 161 modules. | +| [VERSION_71](#VERSION-71) | Spécifie la version 71 avec 163 x 163 modules. | +| [VERSION_72](#VERSION-72) | Spécifie la version 72 avec 165 x 165 modules. | +| [VERSION_73](#VERSION-73) | Spécifie la version 73 avec 167 x 167 modules. | +| [VERSION_74](#VERSION-74) | Spécifie la version 74 avec 169 x 169 modules. | +| [VERSION_75](#VERSION-75) | Spécifie la version 75 avec 171 x 171 modules. | +| [VERSION_76](#VERSION-76) | Spécifie la version 76 avec 173 x 173 modules. | +| [VERSION_77](#VERSION-77) | Spécifie la version 77 avec 175 x 175 modules. | +| [VERSION_78](#VERSION-78) | Spécifie la version 78 avec 177 x 177 modules. | +| [VERSION_79](#VERSION-79) | Spécifie la version 79 avec 179 x 179 modules. | +| [VERSION_80](#VERSION-80) | Spécifie la version 80 avec 181 x 181 modules. | +| [VERSION_81](#VERSION-81) | Spécifie la version 81 avec 183 x 183 modules. | +| [VERSION_82](#VERSION-82) | Spécifie la version 82 avec 185 x 185 modules. | +| [VERSION_83](#VERSION-83) | Spécifie la version 83 avec 187 x 187 modules. | +| [VERSION_84](#VERSION-84) | Spécifie la version 84 avec 189 x 189 modules. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final HanXinVersion AUTO +``` + + +Spécifie de sélectionner automatiquement la meilleure version. C’est la valeur par défaut. + +### VERSION_01 {#VERSION-01} +``` +public static final HanXinVersion VERSION_01 +``` + + +Spécifie la version 1 avec 23 x 23 modules. + +### VERSION_02 {#VERSION-02} +``` +public static final HanXinVersion VERSION_02 +``` + + +Spécifie la version 2 avec 25 x 25 modules. + +### VERSION_03 {#VERSION-03} +``` +public static final HanXinVersion VERSION_03 +``` + + +Spécifie la version 3 avec 27 x 27 modules. + +### VERSION_04 {#VERSION-04} +``` +public static final HanXinVersion VERSION_04 +``` + + +Spécifie la version 4 avec 29 x 29 modules. + +### VERSION_05 {#VERSION-05} +``` +public static final HanXinVersion VERSION_05 +``` + + +Spécifie la version 5 avec 31 x 31 modules. + +### VERSION_06 {#VERSION-06} +``` +public static final HanXinVersion VERSION_06 +``` + + +Spécifie la version 6 avec 33 x 33 modules. + +### VERSION_07 {#VERSION-07} +``` +public static final HanXinVersion VERSION_07 +``` + + +Spécifie la version 7 avec 35 x 35 modules. + +### VERSION_08 {#VERSION-08} +``` +public static final HanXinVersion VERSION_08 +``` + + +Spécifie la version 8 avec 37 x 37 modules. + +### VERSION_09 {#VERSION-09} +``` +public static final HanXinVersion VERSION_09 +``` + + +Spécifie la version 9 avec 39 x 39 modules. + +### VERSION_10 {#VERSION-10} +``` +public static final HanXinVersion VERSION_10 +``` + + +Spécifie la version 10 avec 41 x 41 modules. + +### VERSION_11 {#VERSION-11} +``` +public static final HanXinVersion VERSION_11 +``` + + +Spécifie la version 11 avec 43 x 43 modules. + +### VERSION_12 {#VERSION-12} +``` +public static final HanXinVersion VERSION_12 +``` + + +Spécifie la version 12 avec 45 x 45 modules. + +### VERSION_13 {#VERSION-13} +``` +public static final HanXinVersion VERSION_13 +``` + + +Spécifie la version 13 avec 47 x 47 modules. + +### VERSION_14 {#VERSION-14} +``` +public static final HanXinVersion VERSION_14 +``` + + +Spécifie la version 14 avec 49 x 49 modules. + +### VERSION_15 {#VERSION-15} +``` +public static final HanXinVersion VERSION_15 +``` + + +Spécifie la version 15 avec 51 x 51 modules. + +### VERSION_16 {#VERSION-16} +``` +public static final HanXinVersion VERSION_16 +``` + + +Spécifie la version 16 avec 53 x 53 modules. + +### VERSION_17 {#VERSION-17} +``` +public static final HanXinVersion VERSION_17 +``` + + +Spécifie la version 17 avec 55 x 55 modules. + +### VERSION_18 {#VERSION-18} +``` +public static final HanXinVersion VERSION_18 +``` + + +Spécifie la version 18 avec 57 x 57 modules. + +### VERSION_19 {#VERSION-19} +``` +public static final HanXinVersion VERSION_19 +``` + + +Spécifie la version 19 avec 59 x 59 modules. + +### VERSION_20 {#VERSION-20} +``` +public static final HanXinVersion VERSION_20 +``` + + +Spécifie la version 20 avec 61 x 61 modules. + +### VERSION_21 {#VERSION-21} +``` +public static final HanXinVersion VERSION_21 +``` + + +Spécifie la version 21 avec 63 x 63 modules. + +### VERSION_22 {#VERSION-22} +``` +public static final HanXinVersion VERSION_22 +``` + + +Spécifie la version 22 avec 65 x 65 modules. + +### VERSION_23 {#VERSION-23} +``` +public static final HanXinVersion VERSION_23 +``` + + +Spécifie la version 23 avec 67 x 67 modules. + +### VERSION_24 {#VERSION-24} +``` +public static final HanXinVersion VERSION_24 +``` + + +Spécifie la version 24 avec 69 x 69 modules. + +### VERSION_25 {#VERSION-25} +``` +public static final HanXinVersion VERSION_25 +``` + + +Spécifie la version 25 avec 71 x 71 modules. + +### VERSION_26 {#VERSION-26} +``` +public static final HanXinVersion VERSION_26 +``` + + +Spécifie la version 26 avec 73 x 73 modules. + +### VERSION_27 {#VERSION-27} +``` +public static final HanXinVersion VERSION_27 +``` + + +Spécifie la version 27 avec 75 x 75 modules. + +### VERSION_28 {#VERSION-28} +``` +public static final HanXinVersion VERSION_28 +``` + + +Spécifie la version 28 avec 77 x 77 modules. + +### VERSION_29 {#VERSION-29} +``` +public static final HanXinVersion VERSION_29 +``` + + +Spécifie la version 29 avec 79 x 79 modules. + +### VERSION_30 {#VERSION-30} +``` +public static final HanXinVersion VERSION_30 +``` + + +Spécifie la version 30 avec 81 x 81 modules. + +### VERSION_31 {#VERSION-31} +``` +public static final HanXinVersion VERSION_31 +``` + + +Spécifie la version 31 avec 83 x 83 modules. + +### VERSION_32 {#VERSION-32} +``` +public static final HanXinVersion VERSION_32 +``` + + +Spécifie la version 32 avec 85 x 85 modules. + +### VERSION_33 {#VERSION-33} +``` +public static final HanXinVersion VERSION_33 +``` + + +Spécifie la version 33 avec 87 x 87 modules. + +### VERSION_34 {#VERSION-34} +``` +public static final HanXinVersion VERSION_34 +``` + + +Spécifie la version 34 avec 89 x 89 modules. + +### VERSION_35 {#VERSION-35} +``` +public static final HanXinVersion VERSION_35 +``` + + +Spécifie la version 35 avec 91 x 91 modules. + +### VERSION_36 {#VERSION-36} +``` +public static final HanXinVersion VERSION_36 +``` + + +Spécifie la version 36 avec 93 x 93 modules. + +### VERSION_37 {#VERSION-37} +``` +public static final HanXinVersion VERSION_37 +``` + + +Spécifie la version 37 avec 95 x 95 modules. + +### VERSION_38 {#VERSION-38} +``` +public static final HanXinVersion VERSION_38 +``` + + +Spécifie la version 38 avec 97 x 97 modules. + +### VERSION_39 {#VERSION-39} +``` +public static final HanXinVersion VERSION_39 +``` + + +Spécifie la version 39 avec 99 x 99 modules. + +### VERSION_40 {#VERSION-40} +``` +public static final HanXinVersion VERSION_40 +``` + + +Spécifie la version 40 avec 101 x 101 modules. + +### VERSION_41 {#VERSION-41} +``` +public static final HanXinVersion VERSION_41 +``` + + +Spécifie la version 41 avec 103 x 103 modules. + +### VERSION_42 {#VERSION-42} +``` +public static final HanXinVersion VERSION_42 +``` + + +Spécifie la version 42 avec 105 x 105 modules. + +### VERSION_43 {#VERSION-43} +``` +public static final HanXinVersion VERSION_43 +``` + + +Spécifie la version 43 avec 107 x 107 modules. + +### VERSION_44 {#VERSION-44} +``` +public static final HanXinVersion VERSION_44 +``` + + +Spécifie la version 44 avec 109 x 109 modules. + +### VERSION_45 {#VERSION-45} +``` +public static final HanXinVersion VERSION_45 +``` + + +Spécifie la version 45 avec 111 x 111 modules. + +### VERSION_46 {#VERSION-46} +``` +public static final HanXinVersion VERSION_46 +``` + + +Spécifie la version 46 avec 113 x 113 modules. + +### VERSION_47 {#VERSION-47} +``` +public static final HanXinVersion VERSION_47 +``` + + +Spécifie la version 47 avec 115 x 115 modules. + +### VERSION_48 {#VERSION-48} +``` +public static final HanXinVersion VERSION_48 +``` + + +Spécifie la version 48 avec 117 x 117 modules. + +### VERSION_49 {#VERSION-49} +``` +public static final HanXinVersion VERSION_49 +``` + + +Spécifie la version 49 avec 119 x 119 modules. + +### VERSION_50 {#VERSION-50} +``` +public static final HanXinVersion VERSION_50 +``` + + +Spécifie la version 50 avec 121 x 121 modules. + +### VERSION_51 {#VERSION-51} +``` +public static final HanXinVersion VERSION_51 +``` + + +Spécifie la version 51 avec 123 x 123 modules. + +### VERSION_52 {#VERSION-52} +``` +public static final HanXinVersion VERSION_52 +``` + + +Spécifie la version 52 avec 125 x 125 modules. + +### VERSION_53 {#VERSION-53} +``` +public static final HanXinVersion VERSION_53 +``` + + +Spécifie la version 53 avec 127 x 127 modules. + +### VERSION_54 {#VERSION-54} +``` +public static final HanXinVersion VERSION_54 +``` + + +Spécifie la version 54 avec 129 x 129 modules. + +### VERSION_55 {#VERSION-55} +``` +public static final HanXinVersion VERSION_55 +``` + + +Spécifie la version 55 avec 131 x 131 modules. + +### VERSION_56 {#VERSION-56} +``` +public static final HanXinVersion VERSION_56 +``` + + +Spécifie la version 56 avec 133 x 133 modules. + +### VERSION_57 {#VERSION-57} +``` +public static final HanXinVersion VERSION_57 +``` + + +Spécifie la version 57 avec 135 x 135 modules. + +### VERSION_58 {#VERSION-58} +``` +public static final HanXinVersion VERSION_58 +``` + + +Spécifie la version 58 avec 137 x 137 modules. + +### VERSION_59 {#VERSION-59} +``` +public static final HanXinVersion VERSION_59 +``` + + +Spécifie la version 59 avec 139 x 139 modules. + +### VERSION_60 {#VERSION-60} +``` +public static final HanXinVersion VERSION_60 +``` + + +Spécifie la version 60 avec 141 x 141 modules. + +### VERSION_61 {#VERSION-61} +``` +public static final HanXinVersion VERSION_61 +``` + + +Spécifie la version 61 avec 143 x 143 modules. + +### VERSION_62 {#VERSION-62} +``` +public static final HanXinVersion VERSION_62 +``` + + +Spécifie la version 62 avec 145 x 145 modules. + +### VERSION_63 {#VERSION-63} +``` +public static final HanXinVersion VERSION_63 +``` + + +Spécifie la version 63 avec 147 x 147 modules. + +### VERSION_64 {#VERSION-64} +``` +public static final HanXinVersion VERSION_64 +``` + + +Spécifie la version 64 avec 149 x 149 modules. + +### VERSION_65 {#VERSION-65} +``` +public static final HanXinVersion VERSION_65 +``` + + +Spécifie la version 65 avec 151 x 151 modules. + +### VERSION_66 {#VERSION-66} +``` +public static final HanXinVersion VERSION_66 +``` + + +Spécifie la version 66 avec 153 x 153 modules. + +### VERSION_67 {#VERSION-67} +``` +public static final HanXinVersion VERSION_67 +``` + + +Spécifie la version 67 avec 155 x 155 modules. + +### VERSION_68 {#VERSION-68} +``` +public static final HanXinVersion VERSION_68 +``` + + +Spécifie la version 68 avec 157 x 157 modules. + +### VERSION_69 {#VERSION-69} +``` +public static final HanXinVersion VERSION_69 +``` + + +Spécifie la version 69 avec 159 x 159 modules. + +### VERSION_70 {#VERSION-70} +``` +public static final HanXinVersion VERSION_70 +``` + + +Spécifie la version 70 avec 161 x 161 modules. + +### VERSION_71 {#VERSION-71} +``` +public static final HanXinVersion VERSION_71 +``` + + +Spécifie la version 71 avec 163 x 163 modules. + +### VERSION_72 {#VERSION-72} +``` +public static final HanXinVersion VERSION_72 +``` + + +Spécifie la version 72 avec 165 x 165 modules. + +### VERSION_73 {#VERSION-73} +``` +public static final HanXinVersion VERSION_73 +``` + + +Spécifie la version 73 avec 167 x 167 modules. + +### VERSION_74 {#VERSION-74} +``` +public static final HanXinVersion VERSION_74 +``` + + +Spécifie la version 74 avec 169 x 169 modules. + +### VERSION_75 {#VERSION-75} +``` +public static final HanXinVersion VERSION_75 +``` + + +Spécifie la version 75 avec 171 x 171 modules. + +### VERSION_76 {#VERSION-76} +``` +public static final HanXinVersion VERSION_76 +``` + + +Spécifie la version 76 avec 173 x 173 modules. + +### VERSION_77 {#VERSION-77} +``` +public static final HanXinVersion VERSION_77 +``` + + +Spécifie la version 77 avec 175 x 175 modules. + +### VERSION_78 {#VERSION-78} +``` +public static final HanXinVersion VERSION_78 +``` + + +Spécifie la version 78 avec 177 x 177 modules. + +### VERSION_79 {#VERSION-79} +``` +public static final HanXinVersion VERSION_79 +``` + + +Spécifie la version 79 avec 179 x 179 modules. + +### VERSION_80 {#VERSION-80} +``` +public static final HanXinVersion VERSION_80 +``` + + +Spécifie la version 80 avec 181 x 181 modules. + +### VERSION_81 {#VERSION-81} +``` +public static final HanXinVersion VERSION_81 +``` + + +Spécifie la version 81 avec 183 x 183 modules. + +### VERSION_82 {#VERSION-82} +``` +public static final HanXinVersion VERSION_82 +``` + + +Spécifie la version 82 avec 185 x 185 modules. + +### VERSION_83 {#VERSION-83} +``` +public static final HanXinVersion VERSION_83 +``` + + +Spécifie la version 83 avec 187 x 187 modules. + +### VERSION_84 {#VERSION-84} +``` +public static final HanXinVersion VERSION_84 +``` + + +Spécifie la version 84 avec 189 x 189 modules. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static HanXinVersion valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[HanXinVersion](../../com.aspose.barcode.generation/hanxinversion) +### values() {#values--} +``` +public static HanXinVersion[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.HanXinVersion[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/ibarcodeencoder/_index.md b/french/androidjava/com.aspose.barcode.generation/ibarcodeencoder/_index.md new file mode 100644 index 000000000..468de9e7c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/ibarcodeencoder/_index.md @@ -0,0 +1,52 @@ +--- +title: IBarCodeEncoder +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 71 +url: /fr/androidjava/com.aspose.barcode.generation/ibarcodeencoder/ +---``` +public interface IBarCodeEncoder +``` +## Methods + +| Method | Description | +| --- | --- | +| [encode(String givenCodeText)](#encode-java.lang.String-) | | +| [getChecksum()](#getChecksum--) | | +| [getHumanReadableCodeText()](#getHumanReadableCodeText--) | | +### encode(String givenCodeText) {#encode-java.lang.String-} +``` +public abstract String encode(String givenCodeText) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| givenCodeText | java.lang.String | | + +**Returns:** +java.lang.String +### getChecksum() {#getChecksum--} +``` +public abstract String getChecksum() +``` + + + + +**Returns:** +java.lang.String +### getHumanReadableCodeText() {#getHumanReadableCodeText--} +``` +public abstract String getHumanReadableCodeText() +``` + + + + +**Returns:** +java.lang.String diff --git a/french/androidjava/com.aspose.barcode.generation/imageparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/imageparameters/_index.md new file mode 100644 index 000000000..1dae0490d --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/imageparameters/_index.md @@ -0,0 +1,149 @@ +--- +title: ImageParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres d'image. +type: docs +weight: 52 +url: /fr/androidjava/com.aspose.barcode.generation/imageparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class ImageParameters +``` + +Paramètres d'image. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getPdf()](#getPdf--) | Paramètres PDF | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setPdf(PdfParameters value)](#setPdf-com.aspose.barcode.generation.PdfParameters-) | Paramètres PDF | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getPdf() {#getPdf--} +``` +public PdfParameters getPdf() +``` + + +Paramètres PDF + +**Returns:** +[PdfParameters](../../com.aspose.barcode.generation/pdfparameters) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setPdf(PdfParameters value) {#setPdf-com.aspose.barcode.generation.PdfParameters-} +``` +public void setPdf(PdfParameters value) +``` + + +Paramètres PDF + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [PdfParameters](../../com.aspose.barcode.generation/pdfparameters) | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/imageunitconverter/_index.md b/french/androidjava/com.aspose.barcode.generation/imageunitconverter/_index.md new file mode 100644 index 000000000..1045f3089 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/imageunitconverter/_index.md @@ -0,0 +1,241 @@ +--- +title: ImageUnitConverter +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 53 +url: /fr/androidjava/com.aspose.barcode.generation/imageunitconverter/ +--- +**Inheritance:** +java.lang.Object +``` +public class ImageUnitConverter +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [ImageUnitConverter()](#ImageUnitConverter--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromInch(GraphicsUnit unit, double Dpi, double target)](#fromInch-com.aspose.barcode.generation.GraphicsUnit-double-double-) | | +| [fromMilimeter(GraphicsUnit unit, double Dpi, double target)](#fromMilimeter-com.aspose.barcode.generation.GraphicsUnit-double-double-) | | +| [fromPixel(GraphicsUnit unit, double Dpi, double target)](#fromPixel-com.aspose.barcode.generation.GraphicsUnit-double-double-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toInch(GraphicsUnit unit, double Dpi, double target)](#toInch-com.aspose.barcode.generation.GraphicsUnit-double-double-) | | +| [toMilimeter(GraphicsUnit unit, double Dpi, double target)](#toMilimeter-com.aspose.barcode.generation.GraphicsUnit-double-double-) | | +| [toPixel(GraphicsUnit unit, double Dpi, double target)](#toPixel-com.aspose.barcode.generation.GraphicsUnit-double-double-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ImageUnitConverter() {#ImageUnitConverter--} +``` +public ImageUnitConverter() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromInch(GraphicsUnit unit, double Dpi, double target) {#fromInch-com.aspose.barcode.generation.GraphicsUnit-double-double-} +``` +public static float fromInch(GraphicsUnit unit, double Dpi, double target) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unit | [GraphicsUnit](../../com.aspose.barcode.generation/graphicsunit) | | +| Dpi | double | | +| cible | double | | + +**Returns:** +float +### fromMilimeter(GraphicsUnit unit, double Dpi, double target) {#fromMilimeter-com.aspose.barcode.generation.GraphicsUnit-double-double-} +``` +public static float fromMilimeter(GraphicsUnit unit, double Dpi, double target) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unit | [GraphicsUnit](../../com.aspose.barcode.generation/graphicsunit) | | +| Dpi | double | | +| cible | double | | + +**Returns:** +float +### fromPixel(GraphicsUnit unit, double Dpi, double target) {#fromPixel-com.aspose.barcode.generation.GraphicsUnit-double-double-} +``` +public static float fromPixel(GraphicsUnit unit, double Dpi, double target) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unit | [GraphicsUnit](../../com.aspose.barcode.generation/graphicsunit) | | +| Dpi | double | | +| cible | double | | + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toInch(GraphicsUnit unit, double Dpi, double target) {#toInch-com.aspose.barcode.generation.GraphicsUnit-double-double-} +``` +public static float toInch(GraphicsUnit unit, double Dpi, double target) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unit | [GraphicsUnit](../../com.aspose.barcode.generation/graphicsunit) | | +| Dpi | double | | +| cible | double | | + +**Returns:** +float +### toMilimeter(GraphicsUnit unit, double Dpi, double target) {#toMilimeter-com.aspose.barcode.generation.GraphicsUnit-double-double-} +``` +public static float toMilimeter(GraphicsUnit unit, double Dpi, double target) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unit | [GraphicsUnit](../../com.aspose.barcode.generation/graphicsunit) | | +| Dpi | double | | +| cible | double | | + +**Returns:** +float +### toPixel(GraphicsUnit unit, double Dpi, double target) {#toPixel-com.aspose.barcode.generation.GraphicsUnit-double-double-} +``` +public static float toPixel(GraphicsUnit unit, double Dpi, double target) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unit | [GraphicsUnit](../../com.aspose.barcode.generation/graphicsunit) | | +| Dpi | double | | +| cible | double | | + +**Returns:** +float +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/itf14bordertype/_index.md b/french/androidjava/com.aspose.barcode.generation/itf14bordertype/_index.md new file mode 100644 index 000000000..540b10697 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/itf14bordertype/_index.md @@ -0,0 +1,288 @@ +--- +title: ITF14BorderType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: ITF14 barcodes border type +type: docs +weight: 93 +url: /fr/androidjava/com.aspose.barcode.generation/itf14bordertype/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum ITF14BorderType extends Enum +``` + +Type de bordure du code-barres ITF14 +## Champs + +| Champ | Description | +| --- | --- | +| [BAR](#BAR) | Tow horizontal bars enclosing the barcode | +| [BAR_OUT](#BAR-OUT) | Tow horizontal bars enclosing the barcode | +| [FRAME](#FRAME) | FRAME enclosing the barcode | +| [FRAME_OUT](#FRAME-OUT) | FRAME enclosing the barcode | +| [NONE](#NONE) | NO border enclosing the barcode | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BAR {#BAR} +``` +public static final ITF14BorderType BAR +``` + + +Tow horizontal bars enclosing the barcode + +### BAR_OUT {#BAR-OUT} +``` +public static final ITF14BorderType BAR_OUT +``` + + +Tow horizontal bars enclosing the barcode + +### FRAME {#FRAME} +``` +public static final ITF14BorderType FRAME +``` + + +FRAME enclosing the barcode + +### FRAME_OUT {#FRAME-OUT} +``` +public static final ITF14BorderType FRAME_OUT +``` + + +FRAME enclosing the barcode + +### NONE {#NONE} +``` +public static final ITF14BorderType NONE +``` + + +NO border enclosing the barcode + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static ITF14BorderType valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[ITF14BorderType](../../com.aspose.barcode.generation/itf14bordertype) +### values() {#values--} +``` +public static ITF14BorderType[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.ITF14BorderType[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/itfparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/itfparameters/_index.md new file mode 100644 index 000000000..f3624cbc9 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/itfparameters/_index.md @@ -0,0 +1,249 @@ +--- +title: ITFParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres ITF. +type: docs +weight: 51 +url: /fr/androidjava/com.aspose.barcode.generation/itfparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class ITFParameters +``` + +Paramètres ITF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBorderThickness()](#getBorderThickness--) | Obtient une épaisseur de bordure ITF (barre porteuse) en valeur d'unité. | +| [getBorderType()](#getBorderType--) | Type de bordure du code-barres ITF. | +| [getClass()](#getClass--) | | +| [getItfBorderThickness()](#getItfBorderThickness--) | Obtient une épaisseur de bordure ITF (barre porteuse) en valeur d'unité. | +| [getItfBorderType()](#getItfBorderType--) | Type de bordure du code-barres ITF. | +| [getQuietZoneCoef()](#getQuietZoneCoef--) | Taille des zones calmes en xDimension. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBorderThickness(Unit value)](#setBorderThickness-com.aspose.barcode.generation.Unit-) | Définit une épaisseur de bordure ITF (barre porteuse) en valeur d'unité. | +| [setBorderType(ITF14BorderType value)](#setBorderType-com.aspose.barcode.generation.ITF14BorderType-) | Type de bordure du code-barres ITF. | +| [setItfBorderThickness(Unit value)](#setItfBorderThickness-com.aspose.barcode.generation.Unit-) | Définit une épaisseur de bordure ITF (barre porteuse) en valeur d'unité. | +| [setItfBorderType(ITF14BorderType value)](#setItfBorderType-com.aspose.barcode.generation.ITF14BorderType-) | Type de bordure du code-barres ITF. | +| [setQuietZoneCoef(int value)](#setQuietZoneCoef-int-) | Taille des zones calmes en xDimension. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible de cet [ITFParameters](../../com.aspose.barcode.generation/itfparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBorderThickness() {#getBorderThickness--} +``` +public final Unit getBorderThickness() +``` + + +Obtient une épaisseur de bordure ITF (barre porteuse) en valeur d'unité. Valeur par défaut : 12pt. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) - an ITF border (bearer bar) thickness in Unit value. +### getBorderType() {#getBorderType--} +``` +public final ITF14BorderType getBorderType() +``` + + +Type de bordure du code-barres ITF. Valeur par défaut : ITF14BorderType.Bar. + +**Returns:** +[ITF14BorderType](../../com.aspose.barcode.generation/itf14bordertype) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getItfBorderThickness() {#getItfBorderThickness--} +``` +public final Unit getItfBorderThickness() +``` + + +Obtient une épaisseur de bordure ITF (barre porteuse) en valeur d'unité. Valeur par défaut : 12pt. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) - an ITF border (bearer bar) thickness in Unit value. +### getItfBorderType() {#getItfBorderType--} +``` +public final ITF14BorderType getItfBorderType() +``` + + +Type de bordure du code-barres ITF. Valeur par défaut : ITF14BorderType.Bar. + +**Returns:** +[ITF14BorderType](../../com.aspose.barcode.generation/itf14bordertype) +### getQuietZoneCoef() {#getQuietZoneCoef--} +``` +public final int getQuietZoneCoef() +``` + + +Taille des zones calmes en xDimension. Valeur par défaut : 10, ce qui signifie que si xDimension = 2px alors les zones calmes seront de 20px. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBorderThickness(Unit value) {#setBorderThickness-com.aspose.barcode.generation.Unit-} +``` +public final void setBorderThickness(Unit value) +``` + + +Définit une épaisseur de bordure ITF (barre porteuse) en valeur d'unité. Valeur par défaut : 12pt. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | une épaisseur de bordure ITF (barre porteuse) en valeur d'unité. | + +### setBorderType(ITF14BorderType value) {#setBorderType-com.aspose.barcode.generation.ITF14BorderType-} +``` +public final void setBorderType(ITF14BorderType value) +``` + + +Type de bordure du code-barres ITF. Valeur par défaut : ITF14BorderType.Bar. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [ITF14BorderType](../../com.aspose.barcode.generation/itf14bordertype) | | + +### setItfBorderThickness(Unit value) {#setItfBorderThickness-com.aspose.barcode.generation.Unit-} +``` +public final void setItfBorderThickness(Unit value) +``` + + +Définit une épaisseur de bordure ITF (barre porteuse) en valeur d'unité. Valeur par défaut : 12pt. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | une épaisseur de bordure ITF (barre porteuse) en valeur d'unité. | + +### setItfBorderType(ITF14BorderType value) {#setItfBorderType-com.aspose.barcode.generation.ITF14BorderType-} +``` +public final void setItfBorderType(ITF14BorderType value) +``` + + +Type de bordure du code-barres ITF. Valeur par défaut : ITF14BorderType.Bar. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [ITF14BorderType](../../com.aspose.barcode.generation/itf14bordertype) | | + +### setQuietZoneCoef(int value) {#setQuietZoneCoef-int-} +``` +public final void setQuietZoneCoef(int value) +``` + + +Taille des zones calmes en xDimension. Valeur par défaut : 10, ce qui signifie que si xDimension = 2px alors les zones calmes seront de 20px. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible de cet [ITFParameters](../../com.aspose.barcode.generation/itfparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente cet [ITFParameters](../../com.aspose.barcode.generation/itfparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/macrocharacter/_index.md b/french/androidjava/com.aspose.barcode.generation/macrocharacter/_index.md new file mode 100644 index 000000000..a2c3ee6be --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/macrocharacter/_index.md @@ -0,0 +1,312 @@ +--- +title: MacroCharacter +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Les valeurs des caractères macro 05 et 06 sont utilisées pour obtenir un encodage plus compact dans les modes spéciaux. +type: docs +weight: 94 +url: /fr/androidjava/com.aspose.barcode.generation/macrocharacter/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum MacroCharacter extends Enum +``` + +Les valeurs des caractères macro 05 et 06 sont utilisées pour obtenir un encodage plus compact dans les modes spéciaux. Le caractère macro 05 est traduit en "[)>05" comme en-tête de données décodées et "" comme pied de données décodées. Le caractère macro 06 est traduit en "[)>06" comme en-tête de données décodées et "" comme pied de données décodées. + +``` +hese samples show how to encode Macro Characters in MicroPdf417 and DataMatrix + + + //to generate autoidentified GS1 message like this "(10)123ABC(10)123ABC" in ISO 15434 format you need: + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX, "10123ABC10123ABC"); + generator.getParameters().getBarcode().getDataMatrix().setMacroCharacters(MacroCharacter.MACRO_05); + BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS1DataMatrix); + for (BarCodeResult result : reader.readBarCodes()) + System.out.println("BarCode CodeText: " + result.getCodeText()); + + //Encodes MicroPdf417 with 05 Macro the string: "[)>05abcde1234" + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); + generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_05); + BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); + for(BarCodeResult result : reader.readBarCodes()) + System.out.println(result.getCodeText()); + + //Encodes MicroPdf417 with 06 Macro the string: "[)>06abcde1234" + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); + generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_06); + BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); + for(BarCodeResult result : reader.readBarCodes()) + System.out.println(result.getCodeText()); +``` +## Champs + +| Champ | Description | +| --- | --- | +| [MACRO_05](#MACRO-05) | Le caractère macro 05 est ajouté aux données du code-barres en première position. | +| [MACRO_06](#MACRO-06) | Le caractère macro 06 est ajouté aux données du code‑barres en première position. | +| [NONE](#NONE) | Aucun caractère macro n'est ajouté aux données du code‑barres. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromValue(int value)](#fromValue-int-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MACRO_05 {#MACRO-05} +``` +public static final MacroCharacter MACRO_05 +``` + + +Le caractère macro 05 est ajouté aux données du code‑barres en première position. Le caractère Identifiant de données GS1 ISO 15434 est traduit en "[)>05" comme en‑tête de données décodées et "" comme pied de données décodées. + +### MACRO_06 {#MACRO-06} +``` +public static final MacroCharacter MACRO_06 +``` + + +Le caractère macro 06 est ajouté aux données du code‑barres en première position. Le caractère Identifiant de données ASC MH10 ISO 15434 est traduit en "[)>06" comme en‑tête de données décodées et "" comme pied de données décodées. + +### NONE {#NONE} +``` +public static final MacroCharacter NONE +``` + + +Aucun caractère macro n'est ajouté aux données du code‑barres. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromValue(int value) {#fromValue-int-} +``` +public static MacroCharacter fromValue(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[MacroCharacter](../../com.aspose.barcode.generation/macrocharacter) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static MacroCharacter valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[MacroCharacter](../../com.aspose.barcode.generation/macrocharacter) +### values() {#values--} +``` +public static MacroCharacter[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.MacroCharacter[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/macrocharactervalues/_index.md b/french/androidjava/com.aspose.barcode.generation/macrocharactervalues/_index.md new file mode 100644 index 000000000..60751d7a3 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/macrocharactervalues/_index.md @@ -0,0 +1,158 @@ +--- +title: MacroCharacterValues +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 54 +url: /fr/androidjava/com.aspose.barcode.generation/macrocharactervalues/ +--- +**Inheritance:** +java.lang.Object +``` +public class MacroCharacterValues +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MacroCharacterValues()](#MacroCharacterValues--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [Macro05Header](#Macro05Header) | | +| [Macro06Header](#Macro06Header) | | +| [MacroTrailer](#MacroTrailer) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MacroCharacterValues() {#MacroCharacterValues--} +``` +public MacroCharacterValues() +``` + + +### Macro05Header {#Macro05Header} +``` +public static final String Macro05Header +``` + + +### Macro06Header {#Macro06Header} +``` +public static final String Macro06Header +``` + + +### MacroTrailer {#MacroTrailer} +``` +public static final String MacroTrailer +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/maxicodeencodemode/_index.md b/french/androidjava/com.aspose.barcode.generation/maxicodeencodemode/_index.md new file mode 100644 index 000000000..7e8c818dd --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/maxicodeencodemode/_index.md @@ -0,0 +1,347 @@ +--- +title: MaxiCodeEncodeMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode d'encodage pour les codes-barres MaxiCode. +type: docs +weight: 95 +url: /fr/androidjava/com.aspose.barcode.generation/maxicodeencodemode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum MaxiCodeEncodeMode extends Enum +``` + +Mode d'encodage pour les codes-barres MaxiCode. + +``` +//Auto mode + String codetext = "\u72acRight\u72d7"; + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MAXI_CODE, codetext); + { + generator.getParameters().getBarcode().getMaxiCode().setECIEncoding(ECIEncodings.UTF8); + generator.save("test.bmp"); + } + + //Bytes mode + byte[] encodedArr = { 0xFF, 0xFE, 0xFD, 0xFC, 0xFB, 0xFA, 0xF9 }; + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MAXI_CODE); + generator.setCodetext(encodedArr); + generator.getParameters().getBarcode().getMaxiCode().setMaxiCodeEncodeMode(MaxiCodeEncodeMode.BINARY); + generator.save("test.bmp"); + + //Extended codetext mode + //create codetext + MaxiCodeExtCodetextBuilder textBuilder = new MaxiCodeExtCodetextBuilder(); + textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); + textBuilder.addECICodetext(ECIEncodings.UTF8, "\u72acRight\u72d7"); + textBuilder.addECICodetext(ECIEncodings.UTF16BE, "\u72acPower\u72d7"); + textBuilder.addPlainCodetext("Plain text"); + + // generate codetext + String codetext = textBuilder.getExtendedCodetext(); + + //generate + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MaxiCode, codetext); + generator.getParameters().getBarcode().getMaxiCode().setMaxiCodeEncodeMode(MaxiCodeEncodeMode.EXTENDED_CODETEXT); + generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); + generator.save("test.bmp"); +``` +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | En mode Auto, le CodeText est encodé avec une compacité maximale des données. | +| [BINARY](#BINARY) | En mode Binaire, le CodeText est encodé avec une compacité maximale des données. | +| [BYTES](#BYTES) | Encoder le texte de code en octets simples. | +| [ECI](#ECI) | En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. | +| [EXTENDED](#EXTENDED) | | +| [EXTENDED_CODETEXT](#EXTENDED-CODETEXT) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final MaxiCodeEncodeMode AUTO +``` + + +En mode Auto, le CodeText est encodé avec une compacité maximale des données. Les caractères Unicode sont ré‑encodés dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. Si un caractère est trouvé qui n’est pas pris en charge par l’encodage ECI sélectionné, une exception est levée. + +### BINARY {#BINARY} +``` +public static final MaxiCodeEncodeMode BINARY +``` + + +En mode Binaire, le CodeText est encodé avec une compacité maximale des données. Si un caractère Unicode est trouvé, une exception est levée. + +### BYTES {#BYTES} +``` +public static final MaxiCodeEncodeMode BYTES +``` + + +Encoder le texte de code en octets simples. Si un caractère Unicode est détecté, le caractère sera encodé en deux octets, l’octet de poids faible en premier. + +### ECI {#ECI} +``` +public static final MaxiCodeEncodeMode ECI +``` + + +En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. Si un caractère est trouvé qui n’est pas pris en charge par l’encodage ECI sélectionné, une exception est levée. Veuillez noter que certains scanners anciens (pré‑2006) peuvent ne pas prendre en charge ce mode. + +### EXTENDED {#EXTENDED} +``` +public static final MaxiCodeEncodeMode EXTENDED +``` + + +Mode étendu qui prend en charge plusieurs modes ECI. + +Il est préférable d’utiliser MaxiCodeExtCodetextBuilder pour la génération de texte de code étendu. + +Utilisez la propriété Display2DText pour définir le texte visible en supprimant les caractères de gestion. + +Les identifiants ECI sont définis comme une barre oblique unique et un identifiant à six chiffres "\\000026" - identifiant ECI UTF‑8. + +Tous les caractères Unicode après l’identifiant ECI sont automatiquement encodés dans le jeu de caractères correct. + +### EXTENDED_CODETEXT {#EXTENDED-CODETEXT} +``` +public static final MaxiCodeEncodeMode EXTENDED_CODETEXT +``` + + +Mode étendu qui prend en charge plusieurs modes ECI. + +Il est préférable d’utiliser MaxiCodeExtCodetextBuilder pour la génération de texte de code étendu. + +Utilisez la propriété Display2DText pour définir le texte visible en supprimant les caractères de gestion. + +Les identifiants ECI sont définis comme une barre oblique unique et un identifiant à six chiffres "\\000026" - identifiant ECI UTF‑8. + +Tous les caractères Unicode après l’identifiant ECI sont automatiquement encodés dans le jeu de caractères correct. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static MaxiCodeEncodeMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) +### values() {#values--} +``` +public static MaxiCodeEncodeMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.MaxiCodeEncodeMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/maxicodeextcodetextbuilder/_index.md b/french/androidjava/com.aspose.barcode.generation/maxicodeextcodetextbuilder/_index.md new file mode 100644 index 000000000..02707ee90 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/maxicodeextcodetextbuilder/_index.md @@ -0,0 +1,217 @@ +--- +title: MaxiCodeExtCodetextBuilder +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Générateur de texte codé étendu pour les codes-barres MaxiCode en mode ExtendedCodetext du MaxiCodeEncodeMode. Utilisez la propriété TwoDDisplayText de BarcodeGenerator pour définir le texte visible en supprimant les caractères de gestion. +type: docs +weight: 55 +url: /fr/androidjava/com.aspose.barcode.generation/maxicodeextcodetextbuilder/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.generation.ExtCodetextBuilder](../../com.aspose.barcode.generation/extcodetextbuilder) +``` +public class MaxiCodeExtCodetextBuilder extends ExtCodetextBuilder +``` + +Générateur de texte étendu pour les codes-barres MaxiCode en mode ExtendedCodetext de MaxiCodeEncodeMode. Utilisez la propriété TwoDDisplayText de BarcodeGenerator pour définir le texte visible en supprimant les caractères de gestion. Cet exemple montre comment utiliser MaxiCodeExtCodetextBuilder en mode étendu. + +``` +//create codetext + MaxiCodeExtCodetextBuilder textBuilder = new MaxiCodeExtCodetextBuilder(); + textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); + textBuilder.addECICodetext(ECIEncodings.UTF8, "\u72acRight\u72d7"); + textBuilder.addECICodetext(ECIEncodings.UTF16BE, "\u72acPower\u72d7"); + textBuilder.addPlainCodetext("Plain text"); + + //generate codetext + String codetext = textBuilder.getExtendedCodetext(); + + //generate + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MAXI_CODE, codetext); + generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); + generator.save("test.bmp"); +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MaxiCodeExtCodetextBuilder()](#MaxiCodeExtCodetextBuilder--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addECICodetext(int ECIEncoding, String codetext)](#addECICodetext-int-java.lang.String-) | Ajoute du codetext avec un identifiant de canal étendu. | +| [addPlainCodetext(String codetext)](#addPlainCodetext-java.lang.String-) | Ajoute du texte de code simple aux éléments de texte de code étendu | +| [clear()](#clear--) | Efface les éléments de texte de code étendu | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getExtendedCodetext()](#getExtendedCodetext--) | Génère du texte de code étendu à partir de la liste de texte de code étendu. | +| [hashCode()](#hashCode--) | | +| [isNeedToShieldItemFromPrevECI(int Index)](#isNeedToShieldItemFromPrevECI-int-) | Vérifie la nécessité de protéger l'élément précédent par "\\000000" | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MaxiCodeExtCodetextBuilder() {#MaxiCodeExtCodetextBuilder--} +``` +public MaxiCodeExtCodetextBuilder() +``` + + +### addECICodetext(int ECIEncoding, String codetext) {#addECICodetext-int-java.lang.String-} +``` +public void addECICodetext(int ECIEncoding, String codetext) +``` + + +Ajoute du codetext avec un identifiant de canal étendu. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| ECIEncoding | int | Identifiant de canal étendu | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu avec l'identifiant de canal étendu | + +### addPlainCodetext(String codetext) {#addPlainCodetext-java.lang.String-} +``` +public void addPlainCodetext(String codetext) +``` + + +Ajoute du texte de code simple aux éléments de texte de code étendu + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu | + +### clear() {#clear--} +``` +public void clear() +``` + + +Efface les éléments de texte de code étendu + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getExtendedCodetext() {#getExtendedCodetext--} +``` +public String getExtendedCodetext() +``` + + +Génère du texte de code étendu à partir de la liste de texte de code étendu. + +**Returns:** +java.lang.String - Texte de code étendu en tant que chaîne +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isNeedToShieldItemFromPrevECI(int Index) {#isNeedToShieldItemFromPrevECI-int-} +``` +public boolean isNeedToShieldItemFromPrevECI(int Index) +``` + + +Vérifie la nécessité de protéger l'élément précédent par "\\000000" + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| Indice | int | Indice dans m\_List | + +**Returns:** +booléen - Nécessité de protéger +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/maxicodemode/_index.md b/french/androidjava/com.aspose.barcode.generation/maxicodemode/_index.md new file mode 100644 index 000000000..7f925dc6f --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/maxicodemode/_index.md @@ -0,0 +1,667 @@ +--- +title: MaxiCodeMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode d'encodage pour les codes-barres MaxiCode. +type: docs +weight: 56 +url: /fr/androidjava/com.aspose.barcode.generation/maxicodemode/ +--- +**Inheritance:** +java.lang.Object, com.aspose.ms.System.ValueType, com.aspose.ms.System.Enum +``` +public final class MaxiCodeMode extends System.Enum +``` + +Mode d'encodage pour les codes-barres MaxiCode. Cet exemple montre comment générer des codes-barres MaxiCode en utilisant ComplexBarcodeGenerator + +``` +//Mode 2 with standart second message + MaxiCodeCodetextMode2 maxiCodeCodetext = new MaxiCodeCodetextMode2(); + maxiCodeCodetext.setPostalCode("524032140"); + maxiCodeCodetext.setCountryCode(056); + maxiCodeCodetext.setServiceCategory(999); + MaxiCodeStandardSecondMessage maxiCodeStandardSecondMessage = new MaxiCodeStandardSecondMessage(); + maxiCodeStandardSecondMessage.setMessage("Test message"); + maxiCodeCodetext.setSecondMessage(maxiCodeStandardSecondMessage); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); + complexGenerator.generateBarCodeImage(); + + //Mode 2 with structured second message + MaxiCodeCodetextMode2 maxiCodeCodetext = new MaxiCodeCodetextMode2(); + maxiCodeCodetext.setPostalCode("524032140"); + maxiCodeCodetext.setCountryCode(056); + maxiCodeCodetext.setServiceCategory(999); + MaxiCodeStructuredSecondMessage maxiCodeStructuredSecondMessage = new MaxiCodeStructuredSecondMessage(); + maxiCodeStructuredSecondMessage.add("634 ALPHA DRIVE"); + maxiCodeStructuredSecondMessage.add("PITTSBURGH"); + maxiCodeStructuredSecondMessage.add("PA"); + maxiCodeStructuredSecondMessage.setYear(99); + maxiCodeCodetext.setSecondMessage(maxiCodeStructuredSecondMessage); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); + complexGenerator.generateBarCodeImage(); + + //Mode 3 with standart second message + MaxiCodeCodetextMode3 maxiCodeCodetext = new MaxiCodeCodetextMode3(); + maxiCodeCodetext.setPostalCode("B1050"); + maxiCodeCodetext.setCountryCode(056); + maxiCodeCodetext.setServiceCategory(999); + MaxiCodeStandardSecondMessage maxiCodeStandardSecondMessage = new MaxiCodeStandardSecondMessage(); + maxiCodeStandardSecondMessage.setMessage("Test message"); + maxiCodeCodetext.setSecondMessage(maxiCodeStandardSecondMessage); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); + complexGenerator.generateBarCodeImage(); + + //Mode 3 with structured second message + MaxiCodeCodetextMode3 maxiCodeCodetext = new MaxiCodeCodetextMode3(); + maxiCodeCodetext.setPostalCode("B1050"); + maxiCodeCodetext.setCountryCode(056); + maxiCodeCodetext.setServiceCategory(999); + MaxiCodeStructuredSecondMessage maxiCodeStructuredSecondMessage = new MaxiCodeStructuredSecondMessage(); + maxiCodeStructuredSecondMessage.add("634 ALPHA DRIVE"); + maxiCodeStructuredSecondMessage.add("PITTSBURGH"); + maxiCodeStructuredSecondMessage.add("PA"); + maxiCodeStructuredSecondMessage.setYear(99); + maxiCodeCodetext.setSecondMessage(maxiCodeStructuredSecondMessage); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext(); + complexGenerator.generateBarCodeImage(); + + //Mode 4 + MaxiCodeStandardCodetext maxiCodeCodetext = new MaxiCodeStandardCodetext(); + maxiCodeCodetext.setMode(MaxiCodeMode.MODE_4); + maxiCodeCodetext.setMessage("Test message"); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext(); + complexGenerator.generateBarCodeImage(); + + //Mode 5 + MaxiCodeStandardCodetext maxiCodeCodetext = new MaxiCodeStandardCodetext(); + maxiCodeCodetext.setMode(MaxiCodeMode.MODE_5); + maxiCodeCodetext.setMessage("Test message"); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext()) + complexGenerator.generateBarCodeImage(); + + //Mode 6 + MaxiCodeStandardCodetext maxiCodeCodetext = new MaxiCodeStandardCodetext(); + maxiCodeCodetext.setMode(MaxiCodeMode.MODE_6); + maxiCodeCodetext.setMessage("Test message"); + ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext(); + complexGenerator.generateBarCodeImage(); +``` +## Champs + +| Champ | Description | +| --- | --- | +| [EnumSeparatorCharArray](#EnumSeparatorCharArray) | | +| [MODE_2](#MODE-2) | Le mode 2 encode les informations postales dans le premier message et les données dans le deuxième message. | +| [MODE_3](#MODE-3) | Le mode 3 encode les informations postales dans le premier message et les données dans le deuxième message. | +| [MODE_4](#MODE-4) | Le mode 4 encode les données dans le premier et le deuxième message, avec une correction ECC courte. | +| [MODE_5](#MODE-5) | Le mode 5 encode les données dans le premier et le deuxième message, avec une correction ECC longue. | +| [MODE_6](#MODE-6) | Le mode 6 encode les données dans le premier et le deuxième message, avec une correction ECC courte. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [Clone()](#Clone--) | | +| [CloneTo(T that)](#CloneTo-T-) | | +| [CloneTo(System.Enum that)](#CloneTo-com.aspose.ms.System.Enum-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [format(System.Type enumType, Object value, String format)](#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-) | | +| [format(Class enumType, long value, String format)](#format-java.lang.Class----long-java.lang.String-) | | +| [getClass()](#getClass--) | | +| [getName(System.Type enumType, Object value)](#getName-com.aspose.ms.System.Type-java.lang.Object-) | | +| [getName(Class enumType, long value)](#getName-java.lang.Class----long-) | | +| [getNames(System.Type enumType)](#getNames-com.aspose.ms.System.Type-) | | +| [getNames(Class enumType)](#getNames-java.lang.Class----) | | +| [getUnderlyingType(System.Type enumType)](#getUnderlyingType-com.aspose.ms.System.Type-) | | +| [getUnderlyingType(Class enumType)](#getUnderlyingType-java.lang.Class----) | | +| [getValue(Class enumType, String name)](#getValue-java.lang.Class----java.lang.String-) | | +| [getValues(System.Type enumType)](#getValues-com.aspose.ms.System.Type-) | | +| [get_Caption()](#get-Caption--) | | +| [get_Value()](#get-Value--) | | +| [hashCode()](#hashCode--) | | +| [isDefined(System.Type enumType, Object value)](#isDefined-com.aspose.ms.System.Type-java.lang.Object-) | | +| [isDefined(System.Type enumType, String value)](#isDefined-com.aspose.ms.System.Type-java.lang.String-) | | +| [isDefined(System.Type enumType, long value)](#isDefined-com.aspose.ms.System.Type-long-) | | +| [isDefined(Class enumType, long value)](#isDefined-java.lang.Class----long-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parse(System.Type enumType, String value)](#parse-com.aspose.ms.System.Type-java.lang.String-) | | +| [parse(System.Type enumType, String value, Boolean ignoreCase)](#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-) | | +| [parse(Class enumType, String value)](#parse-java.lang.Class----java.lang.String-) | | +| [parse(Class enumType, String value, Boolean ignoreCase)](#parse-java.lang.Class----java.lang.String-java.lang.Boolean-) | | +| [register(System.Enum.AbstractEnum e)](#register-com.aspose.ms.System.Enum.AbstractEnum-) | | +| [toObject(System.Type enumType, Object value)](#toObject-com.aspose.ms.System.Type-java.lang.Object-) | | +| [toString()](#toString--) | | +| [toString(Class enumType, long value)](#toString-java.lang.Class----long-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### EnumSeparatorCharArray {#EnumSeparatorCharArray} +``` +public static final char[] EnumSeparatorCharArray +``` + + +### MODE_2 {#MODE-2} +``` +public static final int MODE_2 +``` + + +Le mode 2 encode les informations postales dans le premier message et les données dans le deuxième message. Possède un code postal à 9 chiffres (utilisé uniquement aux États‑Unis). + +### MODE_3 {#MODE-3} +``` +public static final int MODE_3 +``` + + +Le mode 3 encode les informations postales dans le premier message et les données dans le deuxième message. Possède un code postal alphanumérique à 6 caractères, utilisé dans le monde. + +### MODE_4 {#MODE-4} +``` +public static final int MODE_4 +``` + + +Le mode 4 encode les données dans le premier et le deuxième message, avec une correction ECC courte. + +### MODE_5 {#MODE-5} +``` +public static final int MODE_5 +``` + + +Le mode 5 encode les données dans le premier et le deuxième message, avec une correction ECC longue. + +### MODE_6 {#MODE-6} +``` +public static final int MODE_6 +``` + + +Le mode 6 encode les données dans le premier et le deuxième message, avec une correction ECC courte. Utilisé pour encoder un dispositif. + +### Clone() {#Clone--} +``` +public System.Enum Clone() +``` + + + + +**Returns:** +com.aspose.ms.System.Enum +### CloneTo(T that) {#CloneTo-T-} +``` +public abstract void CloneTo(T that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | T | | + +### CloneTo(System.Enum that) {#CloneTo-com.aspose.ms.System.Enum-} +``` +public void CloneTo(System.Enum that) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| cela | com.aspose.ms.System.Enum | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### format(System.Type enumType, Object value, String format) {#format-com.aspose.ms.System.Type-java.lang.Object-java.lang.String-} +``` +public static String format(System.Type enumType, Object value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### format(Class enumType, long value, String format) {#format-java.lang.Class----long-java.lang.String-} +``` +public static String format(Class enumType, long value, String format) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | +| format | java.lang.String | | + +**Returns:** +java.lang.String +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getName(System.Type enumType, Object value) {#getName-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static String getName(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.String +### getName(Class enumType, long value) {#getName-java.lang.Class----long-} +``` +public static String getName(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### getNames(System.Type enumType) {#getNames-com.aspose.ms.System.Type-} +``` +public static String[] getNames(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +java.lang.String[] +### getNames(Class enumType) {#getNames-java.lang.Class----} +``` +public static Collection getNames(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.util.Collection +### getUnderlyingType(System.Type enumType) {#getUnderlyingType-com.aspose.ms.System.Type-} +``` +public static System.Type getUnderlyingType(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Type +### getUnderlyingType(Class enumType) {#getUnderlyingType-java.lang.Class----} +``` +public static Class getUnderlyingType(Class enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | + +**Returns:** +java.lang.Class +### getValue(Class enumType, String name) {#getValue-java.lang.Class----java.lang.String-} +``` +public static long getValue(Class enumType, String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| nom | java.lang.String | | + +**Returns:** +long +### getValues(System.Type enumType) {#getValues-com.aspose.ms.System.Type-} +``` +public static System.Array getValues(System.Type enumType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | + +**Returns:** +com.aspose.ms.System.Array +### get_Caption() {#get-Caption--} +``` +public String get_Caption() +``` + + + + +**Returns:** +java.lang.String +### get_Value() {#get-Value--} +``` +public long get_Value() +``` + + + + +**Returns:** +long +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isDefined(System.Type enumType, Object value) {#isDefined-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static boolean isDefined(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +boolean +### isDefined(System.Type enumType, String value) {#isDefined-com.aspose.ms.System.Type-java.lang.String-} +``` +public static boolean isDefined(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +boolean +### isDefined(System.Type enumType, long value) {#isDefined-com.aspose.ms.System.Type-long-} +``` +public static boolean isDefined(System.Type enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | long | | + +**Returns:** +boolean +### isDefined(Class enumType, long value) {#isDefined-java.lang.Class----long-} +``` +public static boolean isDefined(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parse(System.Type enumType, String value) {#parse-com.aspose.ms.System.Type-java.lang.String-} +``` +public static long parse(System.Type enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(System.Type enumType, String value, Boolean ignoreCase) {#parse-com.aspose.ms.System.Type-java.lang.String-java.lang.Boolean-} +``` +public static long parse(System.Type enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### parse(Class enumType, String value) {#parse-java.lang.Class----java.lang.String-} +``` +public static long parse(Class enumType, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | + +**Returns:** +long +### parse(Class enumType, String value, Boolean ignoreCase) {#parse-java.lang.Class----java.lang.String-java.lang.Boolean-} +``` +public static long parse(Class enumType, String value, Boolean ignoreCase) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | java.lang.String | | +| ignoreCase | java.lang.Boolean | | + +**Returns:** +long +### register(System.Enum.AbstractEnum e) {#register-com.aspose.ms.System.Enum.AbstractEnum-} +``` +public static void register(System.Enum.AbstractEnum e) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| e | com.aspose.ms.System.Enum.AbstractEnum | | + +### toObject(System.Type enumType, Object value) {#toObject-com.aspose.ms.System.Type-java.lang.Object-} +``` +public static Object toObject(System.Type enumType, Object value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | com.aspose.ms.System.Type | | +| valeur | java.lang.Object | | + +**Returns:** +java.lang.Object +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### toString(Class enumType, long value) {#toString-java.lang.Class----long-} +``` +public static String toString(Class enumType, long value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| enumType | java.lang.Class | | +| valeur | long | | + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/maxicodeparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/maxicodeparameters/_index.md new file mode 100644 index 000000000..eb0fc2995 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/maxicodeparameters/_index.md @@ -0,0 +1,374 @@ +--- +title: MaxiCodeParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres MaxiCode. +type: docs +weight: 57 +url: /fr/androidjava/com.aspose.barcode.generation/maxicodeparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class MaxiCodeParameters +``` + +Paramètres MaxiCode. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio()](#getAspectRatio--) | Ratio hauteur/largeur du module du code-barres 2D. | +| [getClass()](#getClass--) | | +| [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMaxiCodeMode()](#getMaxiCodeMode--) | Obtient un mode d'encodage MaxiCode. | +| [getMaxiCodeStructuredAppendModeBarcodeId()](#getMaxiCodeStructuredAppendModeBarcodeId--) | Obtient un identifiant de code-barres MaxiCode en mode d'ajout structuré. | +| [getMaxiCodeStructuredAppendModeBarcodesCount()](#getMaxiCodeStructuredAppendModeBarcodesCount--) | Obtient le nombre de codes-barres MaxiCode en mode d'ajout structuré. | +| [getMode()](#getMode--) | Obtient un mode d'encodage MaxiCode. | +| [getStructuredAppendModeBarcodeId()](#getStructuredAppendModeBarcodeId--) | Obtient un identifiant de code-barres MaxiCode en mode d'ajout structuré. | +| [getStructuredAppendModeBarcodesCount()](#getStructuredAppendModeBarcodesCount--) | Obtient le nombre de codes-barres MaxiCode en mode d'ajout structuré. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAspectRatio(float value)](#setAspectRatio-float-) | Ratio hauteur/largeur du module du code-barres 2D. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Définit l'encodage ECI. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Définit un mode d'encodage MaxiCode. | +| [setMaxiCodeMode(int value)](#setMaxiCodeMode-int-) | Définit un mode d'encodage MaxiCode. | +| [setMaxiCodeStructuredAppendModeBarcodeId(int value)](#setMaxiCodeStructuredAppendModeBarcodeId-int-) | Définit un identifiant de code-barres MaxiCode en mode d’ajout structuré. | +| [setMaxiCodeStructuredAppendModeBarcodesCount(int value)](#setMaxiCodeStructuredAppendModeBarcodesCount-int-) | Définit le nombre de codes-barres MaxiCode en mode d’ajout structuré. | +| [setMode(int value)](#setMode-int-) | Définit un mode d'encodage MaxiCode. | +| [setStructuredAppendModeBarcodeId(int value)](#setStructuredAppendModeBarcodeId-int-) | Définit un identifiant de code-barres MaxiCode en mode d’ajout structuré. | +| [setStructuredAppendModeBarcodesCount(int value)](#setStructuredAppendModeBarcodesCount-int-) | Définit le nombre de codes-barres MaxiCode en mode d’ajout structuré. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible de cet [MaxiCodeParameters](../../com.aspose.barcode.generation/maxicodeparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAspectRatio() {#getAspectRatio--} +``` +public final float getAspectRatio() +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Obtient l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Returns:** +int - encodage ECI. +### getEncodeMode() {#getEncodeMode--} +``` +public final MaxiCodeEncodeMode getEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} +``` +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. +### getMaxiCodeMode() {#getMaxiCodeMode--} +``` +public final int getMaxiCodeMode() +``` + + +Obtient un mode d'encodage MaxiCode. + +**Returns:** +int - un mode d'encodage MaxiCode. +### getMaxiCodeStructuredAppendModeBarcodeId() {#getMaxiCodeStructuredAppendModeBarcodeId--} +``` +public final int getMaxiCodeStructuredAppendModeBarcodeId() +``` + + +Obtient un identifiant de code-barres MaxiCode en mode d’ajout structuré. L’ID doit être une valeur comprise entre 1 et 8. Valeur par défaut : 0 + +**Returns:** +int - un identifiant de code-barres MaxiCode en mode d'ajout structuré. +### getMaxiCodeStructuredAppendModeBarcodesCount() {#getMaxiCodeStructuredAppendModeBarcodesCount--} +``` +public final int getMaxiCodeStructuredAppendModeBarcodesCount() +``` + + +Obtient le nombre de codes-barres MaxiCode en mode d’ajout structuré. Le nombre doit être une valeur comprise entre 2 et 8 (nombre maximal de codes-barres). Valeur par défaut : -1 + +**Returns:** +int - un nombre de codes-barres MaxiCode en mode d'ajout structuré. +### getMode() {#getMode--} +``` +public final int getMode() +``` + + +Obtient un mode d'encodage MaxiCode. + +**Returns:** +int - un mode d'encodage MaxiCode. +### getStructuredAppendModeBarcodeId() {#getStructuredAppendModeBarcodeId--} +``` +public final int getStructuredAppendModeBarcodeId() +``` + + +Obtient un identifiant de code-barres MaxiCode en mode d’ajout structuré. L’ID doit être une valeur comprise entre 1 et 8. Valeur par défaut : 0 + +**Returns:** +int - un identifiant de code-barres MaxiCode en mode d'ajout structuré. +### getStructuredAppendModeBarcodesCount() {#getStructuredAppendModeBarcodesCount--} +``` +public final int getStructuredAppendModeBarcodesCount() +``` + + +Obtient le nombre de codes-barres MaxiCode en mode d’ajout structuré. Le nombre doit être une valeur comprise entre 2 et 8 (nombre maximal de codes-barres). Valeur par défaut : -1 + +**Returns:** +int - un nombre de codes-barres MaxiCode en mode d'ajout structuré. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAspectRatio(float value) {#setAspectRatio-float-} +``` +public final void setAspectRatio(float value) +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Définit l'encodage ECI. Utilisé lorsque MaxiCodeEncodeMode est Auto. Valeur par défaut : ISO-8859-1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Encodage ECI. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) +``` + + +Définit un mode d'encodage MaxiCode. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | un mode d'encodage MaxiCode. | + +### setMaxiCodeMode(int value) {#setMaxiCodeMode-int-} +``` +public final void setMaxiCodeMode(int value) +``` + + +Définit un mode d'encodage MaxiCode. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | un mode d'encodage MaxiCode. | + +### setMaxiCodeStructuredAppendModeBarcodeId(int value) {#setMaxiCodeStructuredAppendModeBarcodeId-int-} +``` +public final void setMaxiCodeStructuredAppendModeBarcodeId(int value) +``` + + +Définit un identifiant de code-barres MaxiCode en mode d’ajout structuré. L’ID doit être une valeur comprise entre 1 et 8. Valeur par défaut : 0 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | un identifiant de code-barres MaxiCode en mode d’ajout structuré. | + +### setMaxiCodeStructuredAppendModeBarcodesCount(int value) {#setMaxiCodeStructuredAppendModeBarcodesCount-int-} +``` +public final void setMaxiCodeStructuredAppendModeBarcodesCount(int value) +``` + + +Définit le nombre de codes-barres MaxiCode en mode d’ajout structuré. Le nombre doit être une valeur comprise entre 2 et 8 (nombre maximal de codes-barres). Valeur par défaut : -1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | un nombre de codes-barres MaxiCode en mode d'ajout structuré. | + +### setMode(int value) {#setMode-int-} +``` +public final void setMode(int value) +``` + + +Définit un mode d'encodage MaxiCode. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | un mode d'encodage MaxiCode. | + +### setStructuredAppendModeBarcodeId(int value) {#setStructuredAppendModeBarcodeId-int-} +``` +public final void setStructuredAppendModeBarcodeId(int value) +``` + + +Définit un identifiant de code-barres MaxiCode en mode d’ajout structuré. L’ID doit être une valeur comprise entre 1 et 8. Valeur par défaut : 0 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | un identifiant de code-barres MaxiCode en mode d’ajout structuré. | + +### setStructuredAppendModeBarcodesCount(int value) {#setStructuredAppendModeBarcodesCount-int-} +``` +public final void setStructuredAppendModeBarcodesCount(int value) +``` + + +Définit le nombre de codes-barres MaxiCode en mode d’ajout structuré. Le nombre doit être une valeur comprise entre 2 et 8 (nombre maximal de codes-barres). Valeur par défaut : -1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | un nombre de codes-barres MaxiCode en mode d'ajout structuré. | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible de cet [MaxiCodeParameters](../../com.aspose.barcode.generation/maxicodeparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente ce [MaxiCodeParameters](../../com.aspose.barcode.generation/maxicodeparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/microqrversion/_index.md b/french/androidjava/com.aspose.barcode.generation/microqrversion/_index.md new file mode 100644 index 000000000..3e21d8503 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/microqrversion/_index.md @@ -0,0 +1,304 @@ +--- +title: MicroQRVersion +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Version du MicroQR Code. +type: docs +weight: 96 +url: /fr/androidjava/com.aspose.barcode.generation/microqrversion/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum MicroQRVersion extends Enum +``` + +Version du code MicroQR. De M1 à M4. +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Spécifie de sélectionner automatiquement la meilleure version pour MicroQR. | +| [M1](#M1) | Spécifie la version M1 pour Micro QR avec des modules 11 x 11. | +| [M2](#M2) | Spécifie la version M2 pour Micro QR avec des modules 13 x 13. | +| [M3](#M3) | Spécifie la version M3 pour Micro QR avec des modules 15 x 15. | +| [M4](#M4) | Spécifie la version M4 pour Micro QR avec des modules 17 x 17. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromValue(int value)](#fromValue-int-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final MicroQRVersion AUTO +``` + + +Spécifie de sélectionner automatiquement la meilleure version pour MicroQR. C'est la valeur par défaut. + +### M1 {#M1} +``` +public static final MicroQRVersion M1 +``` + + +Spécifie la version M1 pour Micro QR avec des modules 11 x 11. + +### M2 {#M2} +``` +public static final MicroQRVersion M2 +``` + + +Spécifie la version M2 pour Micro QR avec des modules 13 x 13. + +### M3 {#M3} +``` +public static final MicroQRVersion M3 +``` + + +Spécifie la version M3 pour Micro QR avec des modules 15 x 15. + +### M4 {#M4} +``` +public static final MicroQRVersion M4 +``` + + +Spécifie la version M4 pour Micro QR avec des modules 17 x 17. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromValue(int value) {#fromValue-int-} +``` +public static MicroQRVersion fromValue(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[MicroQRVersion](../../com.aspose.barcode.generation/microqrversion) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static MicroQRVersion valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[MicroQRVersion](../../com.aspose.barcode.generation/microqrversion) +### values() {#values--} +``` +public static MicroQRVersion[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.MicroQRVersion[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/padding/_index.md b/french/androidjava/com.aspose.barcode.generation/padding/_index.md new file mode 100644 index 000000000..129acfda0 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/padding/_index.md @@ -0,0 +1,246 @@ +--- +title: Rembourrage +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres de remplissage. +type: docs +weight: 58 +url: /fr/androidjava/com.aspose.barcode.generation/padding/ +--- +**Inheritance:** +java.lang.Object +``` +public class Padding +``` + +Paramètres de remplissage. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [Padding()](#Padding--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBottom()](#getBottom--) | Rembourrage inférieur. | +| [getClass()](#getClass--) | | +| [getLeft()](#getLeft--) | Rembourrage gauche. | +| [getRight()](#getRight--) | Rembourrage droit. | +| [getStateHash()](#getStateHash--) | | +| [getTop()](#getTop--) | Rembourrage supérieur. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBottom(Unit value)](#setBottom-com.aspose.barcode.generation.Unit-) | Rembourrage inférieur. | +| [setLeft(Unit value)](#setLeft-com.aspose.barcode.generation.Unit-) | Rembourrage gauche. | +| [setRight(Unit value)](#setRight-com.aspose.barcode.generation.Unit-) | Rembourrage droit. | +| [setTop(Unit value)](#setTop-com.aspose.barcode.generation.Unit-) | Rembourrage supérieur. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce Padding. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Padding() {#Padding--} +``` +public Padding() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBottom() {#getBottom--} +``` +public Unit getBottom() +``` + + +Rembourrage inférieur. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLeft() {#getLeft--} +``` +public Unit getLeft() +``` + + +Rembourrage gauche. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getRight() {#getRight--} +``` +public Unit getRight() +``` + + +Rembourrage droit. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getStateHash() {#getStateHash--} +``` +public int getStateHash() +``` + + + + +**Returns:** +int +### getTop() {#getTop--} +``` +public Unit getTop() +``` + + +Rembourrage supérieur. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBottom(Unit value) {#setBottom-com.aspose.barcode.generation.Unit-} +``` +public void setBottom(Unit value) +``` + + +Rembourrage inférieur. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### setLeft(Unit value) {#setLeft-com.aspose.barcode.generation.Unit-} +``` +public void setLeft(Unit value) +``` + + +Rembourrage gauche. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### setRight(Unit value) {#setRight-com.aspose.barcode.generation.Unit-} +``` +public void setRight(Unit value) +``` + + +Rembourrage droit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### setTop(Unit value) {#setTop-com.aspose.barcode.generation.Unit-} +``` +public void setTop(Unit value) +``` + + +Rembourrage supérieur. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce Padding. + +**Returns:** +java.lang.String - Une chaîne qui représente ce Padding. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/patchcodeparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/patchcodeparameters/_index.md new file mode 100644 index 000000000..681d4f33d --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/patchcodeparameters/_index.md @@ -0,0 +1,199 @@ +--- +title: PatchCodeParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres PatchCode. +type: docs +weight: 59 +url: /fr/androidjava/com.aspose.barcode.generation/patchcodeparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class PatchCodeParameters +``` + +Paramètres PatchCode. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getExtraBarcodeText()](#getExtraBarcodeText--) | Spécifie le texte de code pour un QR supplémentaire, lorsque le PatchCode est généré en mode page. | +| [getFormat()](#getFormat--) | Format PatchCode. | +| [getPatchFormat()](#getPatchFormat--) | Format PatchCode. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setExtraBarcodeText(String value)](#setExtraBarcodeText-java.lang.String-) | Spécifie le texte de code pour un QR supplémentaire, lorsque le PatchCode est généré en mode page. | +| [setFormat(PatchFormat value)](#setFormat-com.aspose.barcode.generation.PatchFormat-) | Format PatchCode. | +| [setPatchFormat(PatchFormat value)](#setPatchFormat-com.aspose.barcode.generation.PatchFormat-) | Format PatchCode. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [PatchCodeParameters](../../com.aspose.barcode.generation/patchcodeparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getExtraBarcodeText() {#getExtraBarcodeText--} +``` +public final String getExtraBarcodeText() +``` + + +Spécifie le texte de code pour un QR supplémentaire, lorsque le PatchCode est généré en mode page. + +**Returns:** +java.lang.String +### getFormat() {#getFormat--} +``` +public final PatchFormat getFormat() +``` + + +Format PatchCode. Choisissez PatchOnly pour générer un seul PatchCode. Utilisez le format page pour générer une page Patch avec des PatchCodes en bordure. Valeur par défaut : PatchFormat.PatchOnly + +**Returns:** +[PatchFormat](../../com.aspose.barcode.generation/patchformat) +### getPatchFormat() {#getPatchFormat--} +``` +public final PatchFormat getPatchFormat() +``` + + +Format PatchCode. Choisissez PatchOnly pour générer un seul PatchCode. Utilisez le format page pour générer une page Patch avec des PatchCodes en bordure. Valeur par défaut : PatchFormat.PatchOnly + +**Returns:** +[PatchFormat](../../com.aspose.barcode.generation/patchformat) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setExtraBarcodeText(String value) {#setExtraBarcodeText-java.lang.String-} +``` +public final void setExtraBarcodeText(String value) +``` + + +Spécifie le texte de code pour un QR supplémentaire, lorsque le PatchCode est généré en mode page. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setFormat(PatchFormat value) {#setFormat-com.aspose.barcode.generation.PatchFormat-} +``` +public final void setFormat(PatchFormat value) +``` + + +Format PatchCode. Choisissez PatchOnly pour générer un seul PatchCode. Utilisez le format page pour générer une page Patch avec des PatchCodes en bordure. Valeur par défaut : PatchFormat.PatchOnly + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [PatchFormat](../../com.aspose.barcode.generation/patchformat) | | + +### setPatchFormat(PatchFormat value) {#setPatchFormat-com.aspose.barcode.generation.PatchFormat-} +``` +public final void setPatchFormat(PatchFormat value) +``` + + +Format PatchCode. Choisissez PatchOnly pour générer un seul PatchCode. Utilisez le format page pour générer une page Patch avec des PatchCodes en bordure. Valeur par défaut : PatchFormat.PatchOnly + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [PatchFormat](../../com.aspose.barcode.generation/patchformat) | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de ce [PatchCodeParameters](../../com.aspose.barcode.generation/patchcodeparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente ce [PatchCodeParameters](../../com.aspose.barcode.generation/patchcodeparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/patchformat/_index.md b/french/androidjava/com.aspose.barcode.generation/patchformat/_index.md new file mode 100644 index 000000000..929009c7f --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/patchformat/_index.md @@ -0,0 +1,277 @@ +--- +title: PatchFormat +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Format PatchCode. +type: docs +weight: 97 +url: /fr/androidjava/com.aspose.barcode.generation/patchformat/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum PatchFormat extends Enum +``` + +Format PatchCode. Choisissez PatchOnly pour générer un seul PatchCode. Utilisez le format page pour générer une page Patch avec des PatchCodes en bordure. +## Champs + +| Champ | Description | +| --- | --- | +| [A4](#A4) | Génère une page au format A4 avec des PatchCodes en bordure et un QR optionnel au centre. | +| [A4_LANDSCAPE](#A4-LANDSCAPE) | Génère une page au format A4 paysage avec des PatchCodes en bordure et un QR optionnel au centre. | +| [PATCH_ONLY](#PATCH-ONLY) | Génère uniquement le PatchCode. | +| [US_LETTER](#US-LETTER) | Génère une page au format lettre US avec des PatchCodes en bordure et un QR optionnel au centre. | +| [US_LETTER_LANDSCAPE](#US-LETTER-LANDSCAPE) | Génère une page au format lettre US paysage avec des PatchCodes en bordure et un QR optionnel au centre. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### A4 {#A4} +``` +public static final PatchFormat A4 +``` + + +Génère une page au format A4 avec des PatchCodes en bordure et un QR optionnel au centre. + +### A4_LANDSCAPE {#A4-LANDSCAPE} +``` +public static final PatchFormat A4_LANDSCAPE +``` + + +Génère une page au format A4 paysage avec des PatchCodes en bordure et un QR optionnel au centre. + +### PATCH_ONLY {#PATCH-ONLY} +``` +public static final PatchFormat PATCH_ONLY +``` + + +Génère uniquement le PatchCode. + +### US_LETTER {#US-LETTER} +``` +public static final PatchFormat US_LETTER +``` + + +Génère une page au format lettre US avec des PatchCodes en bordure et un QR optionnel au centre. + +### US_LETTER_LANDSCAPE {#US-LETTER-LANDSCAPE} +``` +public static final PatchFormat US_LETTER_LANDSCAPE +``` + + +Génère une page au format lettre US paysage avec des PatchCodes en bordure et un QR optionnel au centre. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static PatchFormat valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[PatchFormat](../../com.aspose.barcode.generation/patchformat) +### values() {#values--} +``` +public static PatchFormat[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.PatchFormat[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/pdf417compactionmode/_index.md b/french/androidjava/com.aspose.barcode.generation/pdf417compactionmode/_index.md new file mode 100644 index 000000000..a529b907d --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/pdf417compactionmode/_index.md @@ -0,0 +1,295 @@ +--- +title: Pdf417CompactionMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode de compaction des codes-barres Pdf417 +type: docs +weight: 98 +url: /fr/androidjava/com.aspose.barcode.generation/pdf417compactionmode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum Pdf417CompactionMode extends Enum +``` + +Mode de compaction du code-barres Pdf417 +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | mode de détection automatique de la compaction | +| [BINARY](#BINARY) | mode de compaction binaire | +| [NUMERIC](#NUMERIC) | mode de compaction numérique | +| [TEXT](#TEXT) | compaction de texte | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(int value)](#valueOf-int-) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final Pdf417CompactionMode AUTO +``` + + +mode de détection automatique de la compaction + +### BINARY {#BINARY} +``` +public static final Pdf417CompactionMode BINARY +``` + + +mode de compaction binaire + +### NUMERIC {#NUMERIC} +``` +public static final Pdf417CompactionMode NUMERIC +``` + + +mode de compaction numérique + +### TEXT {#TEXT} +``` +public static final Pdf417CompactionMode TEXT +``` + + +compaction de texte + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(int value) {#valueOf-int-} +``` +public static Pdf417CompactionMode valueOf(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[Pdf417CompactionMode](../../com.aspose.barcode.generation/pdf417compactionmode) +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static Pdf417CompactionMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[Pdf417CompactionMode](../../com.aspose.barcode.generation/pdf417compactionmode) +### values() {#values--} +``` +public static Pdf417CompactionMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.Pdf417CompactionMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/pdf417encodemode/_index.md b/french/androidjava/com.aspose.barcode.generation/pdf417encodemode/_index.md new file mode 100644 index 000000000..bee6e9d5b --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/pdf417encodemode/_index.md @@ -0,0 +1,303 @@ +--- +title: Pdf417EncodeMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode d'encodage du code-barres Pdf417 +type: docs +weight: 99 +url: /fr/androidjava/com.aspose.barcode.generation/pdf417encodemode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum Pdf417EncodeMode extends Enum +``` + +Mode d'encodage du code-barres Pdf417 +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | En mode Auto, le CodeText est encodé avec une compacité maximale des données. | +| [BINARY](#BINARY) | En mode Binaire, le CodeText est encodé avec une compacité maximale des données. | +| [ECI](#ECI) | En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. | +| [EXTENDED](#EXTENDED) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromValue(int value)](#fromValue-int-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final Pdf417EncodeMode AUTO +``` + + +En mode Auto, le CodeText est encodé avec une compacité maximale des données. Les caractères Unicode sont ré‑encodés dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. Si un caractère est trouvé qui n’est pas pris en charge par l’encodage ECI sélectionné, une exception est levée. + +### BINARY {#BINARY} +``` +public static final Pdf417EncodeMode BINARY +``` + + +En mode Binaire, le CodeText est encodé avec une compacité maximale des données. Si un caractère Unicode est trouvé, une exception est levée. + +### ECI {#ECI} +``` +public static final Pdf417EncodeMode ECI +``` + + +En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. Si un caractère est trouvé qui n’est pas pris en charge par l’encodage ECI sélectionné, une exception est levée. Veuillez noter que certains scanners anciens (pré‑2006) peuvent ne pas prendre en charge ce mode. + +### EXTENDED {#EXTENDED} +``` +public static final Pdf417EncodeMode EXTENDED +``` + + +Mode étendu qui prend en charge plusieurs modes ECI. + +Il est préférable d'utiliser Pdf417ExtCodetextBuilder pour la génération de texte de code étendu. + +Utilisez la propriété Display2DText pour définir le texte visible en supprimant les caractères de gestion. + +Les identifiants ECI sont définis comme une barre oblique unique et un identifiant à six chiffres "\\000026" - identifiant ECI UTF‑8. + +Tous les caractères Unicode après l’identifiant ECI sont automatiquement encodés dans le jeu de caractères correct. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromValue(int value) {#fromValue-int-} +``` +public static Pdf417EncodeMode fromValue(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[Pdf417EncodeMode](../../com.aspose.barcode.generation/pdf417encodemode) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static Pdf417EncodeMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[Pdf417EncodeMode](../../com.aspose.barcode.generation/pdf417encodemode) +### values() {#values--} +``` +public static Pdf417EncodeMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.Pdf417EncodeMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/pdf417errorlevel/_index.md b/french/androidjava/com.aspose.barcode.generation/pdf417errorlevel/_index.md new file mode 100644 index 000000000..b8a5f9412 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/pdf417errorlevel/_index.md @@ -0,0 +1,324 @@ +--- +title: Pdf417ErrorLevel +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Niveau de correction d'erreurs des codes-barres pdf417 de 0 à 9 ; le niveau 0 signifie aucune correction d'erreurs, le niveau 9 signifie la meilleure correction d'erreurs +type: docs +weight: 100 +url: /fr/androidjava/com.aspose.barcode.generation/pdf417errorlevel/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum Pdf417ErrorLevel extends Enum +``` + +Niveau de correction d'erreurs du code-barres pdf417, de 0 à 9, le niveau 0 signifie aucune correction d'erreurs, le niveau 9 signifie la meilleure correction d'erreurs +## Champs + +| Champ | Description | +| --- | --- | +| [LEVEL_0](#LEVEL-0) | Niveau de correction d'erreurs - 0. | +| [LEVEL_1](#LEVEL-1) | Niveau de correction d'erreurs - 1. | +| [LEVEL_2](#LEVEL-2) | Niveau de correction d'erreurs - 2. | +| [LEVEL_3](#LEVEL-3) | Niveau de correction d'erreurs - 3. | +| [LEVEL_4](#LEVEL-4) | Niveau de correction d'erreurs - 4. | +| [LEVEL_5](#LEVEL-5) | Niveau de correction d'erreurs - 5. | +| [LEVEL_6](#LEVEL-6) | Niveau de correction d'erreurs - 6. | +| [LEVEL_7](#LEVEL-7) | Niveau de correction d'erreurs - 7. | +| [LEVEL_8](#LEVEL-8) | Niveau de correction d'erreurs - 8. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### LEVEL_0 {#LEVEL-0} +``` +public static final Pdf417ErrorLevel LEVEL_0 +``` + + +Niveau de correction d'erreurs - 0. Codewords de correction d'erreurs - 2. + +### LEVEL_1 {#LEVEL-1} +``` +public static final Pdf417ErrorLevel LEVEL_1 +``` + + +Niveau de correction d'erreurs - 1. Codewords de correction d'erreurs - 4. + +### LEVEL_2 {#LEVEL-2} +``` +public static final Pdf417ErrorLevel LEVEL_2 +``` + + +Niveau de correction d'erreurs - 2. Codewords de correction d'erreurs - 8. + +### LEVEL_3 {#LEVEL-3} +``` +public static final Pdf417ErrorLevel LEVEL_3 +``` + + +Niveau de correction d'erreur - 3. Codewords de correction d'erreur - 16. + +### LEVEL_4 {#LEVEL-4} +``` +public static final Pdf417ErrorLevel LEVEL_4 +``` + + +Niveau de correction d'erreur - 4. Codewords de correction d'erreur - 32. + +### LEVEL_5 {#LEVEL-5} +``` +public static final Pdf417ErrorLevel LEVEL_5 +``` + + +Niveau de correction d'erreur - 5. Codewords de correction d'erreur - 64. + +### LEVEL_6 {#LEVEL-6} +``` +public static final Pdf417ErrorLevel LEVEL_6 +``` + + +Niveau de correction d'erreur - 6. Codewords de correction d'erreur - 128. + +### LEVEL_7 {#LEVEL-7} +``` +public static final Pdf417ErrorLevel LEVEL_7 +``` + + +Niveau de correction d'erreur - 7. Codewords de correction d'erreur - 256. + +### LEVEL_8 {#LEVEL-8} +``` +public static final Pdf417ErrorLevel LEVEL_8 +``` + + +Niveau de correction d'erreur - 8. Codewords de correction d'erreur - 512. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static Pdf417ErrorLevel valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[Pdf417ErrorLevel](../../com.aspose.barcode.generation/pdf417errorlevel) +### values() {#values--} +``` +public static Pdf417ErrorLevel[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.Pdf417ErrorLevel[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/pdf417macroterminator/_index.md b/french/androidjava/com.aspose.barcode.generation/pdf417macroterminator/_index.md new file mode 100644 index 000000000..75dd965b9 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/pdf417macroterminator/_index.md @@ -0,0 +1,270 @@ +--- +title: Pdf417MacroTerminator +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Utilisé pour indiquer à l'encodeur s'il faut ajouter le code mot Macro PDF417 Terminator 922 au segment. +type: docs +weight: 101 +url: /fr/androidjava/com.aspose.barcode.generation/pdf417macroterminator/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum Pdf417MacroTerminator extends Enum +``` + +Utilisé pour indiquer à l'encodeur s'il faut ajouter le Macro PDF417 Terminator (codeword 922) au segment. Appliqué uniquement pour Macro PDF417. +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Le terminator sera ajouté automatiquement si le nombre de segments est fourni et que le segment actuel est le dernier. | +| [NONE](#NONE) | Le terminator ne sera pas ajouté. | +| [SET](#SET) | Le terminator sera ajouté. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final Pdf417MacroTerminator AUTO +``` + + +Le terminator sera ajouté automatiquement si le nombre de segments est fourni et que le segment actuel est le dernier. Dans les autres cas, le terminator ne sera pas ajouté. + +### NONE {#NONE} +``` +public static final Pdf417MacroTerminator NONE +``` + + +Le terminator ne sera pas ajouté. + +### SET {#SET} +``` +public static final Pdf417MacroTerminator SET +``` + + +Le terminator sera ajouté. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static Pdf417MacroTerminator valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[Pdf417MacroTerminator](../../com.aspose.barcode.generation/pdf417macroterminator) +### values() {#values--} +``` +public static Pdf417MacroTerminator[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.Pdf417MacroTerminator[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/pdf417parameters/_index.md b/french/androidjava/com.aspose.barcode.generation/pdf417parameters/_index.md new file mode 100644 index 000000000..0507958f6 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/pdf417parameters/_index.md @@ -0,0 +1,1308 @@ +--- +title: Pdf417Parameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres PDF417. +type: docs +weight: 60 +url: /fr/androidjava/com.aspose.barcode.generation/pdf417parameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class Pdf417Parameters +``` + +Paramètres PDF417. Contient les paramètres PDF417, MacroPDF417, MicroPDF417 et GS1MicroPdf417. MacroPDF417 nécessite deux champs : Pdf417MacroFileID et Pdf417MacroSegmentID. Tous les autres champs sont facultatifs. MicroPDF417 en mode Structured Append (identique au mode MacroPDF417) nécessite deux champs : Pdf417MacroFileID et Pdf417MacroSegmentID. Tous les autres champs sont facultatifs. + +Ces exemples montrent comment encoder les modes non liés UCC/EAN-128 dans GS1MicroPdf417. + +``` + + [C#] + //Encodes GS1 UCC/EAN-128 non Linked mode 905 with AI 01 (GTIN) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(01)12345678901231"); + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); + //Encodes GS1 UCC/EAN-128 non Linked modes 903, 904 with any AI + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(241)123456789012345(241)ABCD123456789012345"); + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); + +``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio()](#getAspectRatio--) | Ratio hauteur/largeur du module du code-barres 2D. | +| [getClass()](#getClass--) | | +| [getColumns()](#getColumns--) | Nombre de colonnes. | +| [getECIEncoding()](#getECIEncoding--) | Identifiants d'interprétation de canal étendu. | +| [getEncodeMode()](#getEncodeMode--) | Identifie le mode d’encodage Pdf417. | +| [getErrorLevel()](#getErrorLevel--) | Obtient le type de symbologie Pdf417 du niveau de correction d’erreurs du code-barres, allant de level0 à level8, level0 signifie aucune information de correction d’erreurs, level8 signifie la meilleure correction d’erreurs, ce qui entraîne une image plus grande. | +| [getMacroCharacters()](#getMacroCharacters--) | Les valeurs des caractères macro 05 et 06 sont utilisées pour obtenir un encodage plus compact dans les modes spéciaux. | +| [getMacroPdf417Addressee()](#getMacroPdf417Addressee--) | Nom du destinataire du code-barres MacroPdf417 (champ facultatif). | +| [getMacroPdf417Checksum()](#getMacroPdf417Checksum--) | Somme de contrôle du code-barres MacroPdf417 (champ facultatif). | +| [getMacroPdf417ECIEncoding()](#getMacroPdf417ECIEncoding--) | Identifiants d'interprétation de canal étendu. | +| [getMacroPdf417FileID()](#getMacroPdf417FileID--) | Identifiant de fichier du code-barres MacroPdf417 (champ obligatoire). | +| [getMacroPdf417FileName()](#getMacroPdf417FileName--) | Nom de fichier du code-barres MacroPdf417 (champ facultatif). | +| [getMacroPdf417FileSize()](#getMacroPdf417FileSize--) | Taille du fichier MacroPdf417 (champ facultatif). | +| [getMacroPdf417SegmentID()](#getMacroPdf417SegmentID--) | ID de segment du code-barres MacroPdf417 (champ requis), qui commence à 0, jusqu'à MacroSegmentsCount - 1. | +| [getMacroPdf417SegmentsCount()](#getMacroPdf417SegmentsCount--) | Nombre de segments du code-barres MacroPdf417 (champ facultatif). | +| [getMacroPdf417Sender()](#getMacroPdf417Sender--) | Nom de l'expéditeur du code-barres MacroPdf417 (champ facultatif). | +| [getMacroPdf417Terminator()](#getMacroPdf417Terminator--) | Utilisé pour indiquer à l'encodeur s'il faut ajouter le Terminator Macro PDF417 (code mot 922) au segment. | +| [getMacroPdf417TimeStamp()](#getMacroPdf417TimeStamp--) | Horodatage du code-barres MacroPdf417 (champ facultatif). | +| [getPdf417CompactionMode()](#getPdf417CompactionMode--) | Type de symbologie Pdf417 du mode de compaction du BarCode. | +| [getPdf417ECIEncoding()](#getPdf417ECIEncoding--) | Identifiants d'interprétation de canal étendu. | +| [getPdf417EncodeMode()](#getPdf417EncodeMode--) | Identifie le mode d’encodage Pdf417. | +| [getPdf417ErrorLevel()](#getPdf417ErrorLevel--) | Obtient le type de symbologie Pdf417 du niveau de correction d’erreurs du code-barres, allant de level0 à level8, level0 signifie aucune information de correction d’erreurs, level8 signifie la meilleure correction d’erreurs, ce qui entraîne une image plus grande. | +| [getPdf417MacroAddressee()](#getPdf417MacroAddressee--) | Nom du destinataire du code-barres MacroPdf417 (champ facultatif). | +| [getPdf417MacroChecksum()](#getPdf417MacroChecksum--) | Somme de contrôle du code-barres MacroPdf417 (champ facultatif). | +| [getPdf417MacroECIEncoding()](#getPdf417MacroECIEncoding--) | Identifiants d'interprétation de canal étendu. | +| [getPdf417MacroFileID()](#getPdf417MacroFileID--) | Identifiant de fichier du code-barres MacroPdf417 (champ obligatoire). | +| [getPdf417MacroFileName()](#getPdf417MacroFileName--) | Nom de fichier du code-barres MacroPdf417 (champ facultatif). | +| [getPdf417MacroFileSize()](#getPdf417MacroFileSize--) | Taille du fichier MacroPdf417 (champ facultatif). | +| [getPdf417MacroSegmentID()](#getPdf417MacroSegmentID--) | ID de segment du code-barres MacroPdf417 (champ requis), qui commence à 0, jusqu'à MacroSegmentsCount - 1. | +| [getPdf417MacroSegmentsCount()](#getPdf417MacroSegmentsCount--) | Nombre de segments du code-barres MacroPdf417 (champ facultatif). | +| [getPdf417MacroSender()](#getPdf417MacroSender--) | Nom de l'expéditeur du code-barres MacroPdf417 (champ facultatif). | +| [getPdf417MacroTerminator()](#getPdf417MacroTerminator--) | Utilisé pour indiquer à l'encodeur s'il faut ajouter le Terminator Macro PDF417 (code mot 922) au segment. | +| [getPdf417MacroTimeStamp()](#getPdf417MacroTimeStamp--) | Horodatage du code-barres MacroPdf417 (champ facultatif). | +| [getPdf417Truncate()](#getPdf417Truncate--) | Indique si le type de symbologie Pdf417 du BarCode est tronqué (pour réduire l'espace). | +| [getRows()](#getRows--) | Nombre de lignes. | +| [getTruncate()](#getTruncate--) | Indique si le type de symbologie Pdf417 du BarCode est tronqué (pour réduire l'espace). | +| [hashCode()](#hashCode--) | | +| [isCode128Emulation()](#isCode128Emulation--) | Ne peut être utilisé qu'avec MicroPdf417 et encode les modes d'émulation Code 128. Peut encoder FNC1 en deuxième position dans les modes 908 et 909, peut également encoder 910 et 911 qui indiquent simplement que le MicroPdf417 reconnu peut être interprété comme Code 128. | +| [isLinked()](#isLinked--) | Définit les modes liés avec les codes-barres GS1MicroPdf417, MicroPdf417 et Pdf417. Avec la symbologie GS1MicroPdf417, encode les modes UCC/EAN-128 "Linked" 906, 907, 912, 913, 914, 915. Avec les symbologies MicroPdf417 et Pdf417, encode le drapeau de liaison 918 vers le composant linéaire associé autre qu'un EAN.UCC. | +| [isReaderInitialization()](#isReaderInitialization--) | Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAspectRatio(float value)](#setAspectRatio-float-) | Ratio hauteur/largeur du module du code-barres 2D. | +| [setCode128Emulation(boolean value)](#setCode128Emulation-boolean-) | Ne peut être utilisé qu'avec MicroPdf417 et encode les modes d'émulation Code 128. Peut encoder FNC1 en deuxième position dans les modes 908 et 909, peut également encoder 910 et 911 qui indiquent simplement que le MicroPdf417 reconnu peut être interprété comme Code 128. | +| [setColumns(int value)](#setColumns-int-) | Nombre de colonnes. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Identifiants d'interprétation de canal étendu. | +| [setEncodeMode(Pdf417EncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.Pdf417EncodeMode-) | Identifie le mode d’encodage Pdf417. | +| [setErrorLevel(Pdf417ErrorLevel value)](#setErrorLevel-com.aspose.barcode.generation.Pdf417ErrorLevel-) | Définit le niveau de correction d'erreur du type de symbologie Pdf417 du BarCode, allant de level0 à level8 ; level0 signifie aucune information de correction d'erreur, level8 signifie la meilleure correction d'erreur, ce qui implique une image plus grande. | +| [setLinked(boolean value)](#setLinked-boolean-) | Définit les modes liés avec les codes-barres GS1MicroPdf417, MicroPdf417 et Pdf417. Avec la symbologie GS1MicroPdf417, encode les modes UCC/EAN-128 "Linked" 906, 907, 912, 913, 914, 915. Avec les symbologies MicroPdf417 et Pdf417, encode le drapeau de liaison 918 vers le composant linéaire associé autre qu'un EAN.UCC. | +| [setMacroCharacters(MacroCharacter value)](#setMacroCharacters-com.aspose.barcode.generation.MacroCharacter-) | Les valeurs des caractères macro 05 et 06 sont utilisées pour obtenir un encodage plus compact dans les modes spéciaux. | +| [setMacroPdf417Addressee(String value)](#setMacroPdf417Addressee-java.lang.String-) | Nom du destinataire du code-barres MacroPdf417 (champ facultatif). | +| [setMacroPdf417Checksum(int value)](#setMacroPdf417Checksum-int-) | Somme de contrôle du code-barres MacroPdf417 (champ facultatif). | +| [setMacroPdf417ECIEncoding(int value)](#setMacroPdf417ECIEncoding-int-) | Identifiants d'interprétation de canal étendu. | +| [setMacroPdf417FileID(int value)](#setMacroPdf417FileID-int-) | Identifiant de fichier du code-barres MacroPdf417 (champ obligatoire). | +| [setMacroPdf417FileName(String value)](#setMacroPdf417FileName-java.lang.String-) | Nom de fichier du code-barres MacroPdf417 (champ facultatif). | +| [setMacroPdf417FileSize(int value)](#setMacroPdf417FileSize-int-) | Taille du fichier MacroPdf417 (champ facultatif). | +| [setMacroPdf417SegmentID(int value)](#setMacroPdf417SegmentID-int-) | ID de segment du code-barres MacroPdf417 (champ requis), qui commence à 0, jusqu'à MacroSegmentsCount - 1. | +| [setMacroPdf417SegmentsCount(int value)](#setMacroPdf417SegmentsCount-int-) | Nombre de segments du code-barres MacroPdf417 (champ facultatif). | +| [setMacroPdf417Sender(String value)](#setMacroPdf417Sender-java.lang.String-) | Nom de l'expéditeur du code-barres MacroPdf417 (champ facultatif). | +| [setMacroPdf417Terminator(Pdf417MacroTerminator value)](#setMacroPdf417Terminator-com.aspose.barcode.generation.Pdf417MacroTerminator-) | Utilisé pour indiquer à l'encodeur s'il faut ajouter le Terminator Macro PDF417 (code mot 922) au segment. | +| [setMacroPdf417TimeStamp(LocalDateTime value)](#setMacroPdf417TimeStamp-java.time.LocalDateTime-) | Horodatage du code-barres MacroPdf417 (champ facultatif). | +| [setPdf417CompactionMode(Pdf417CompactionMode value)](#setPdf417CompactionMode-com.aspose.barcode.generation.Pdf417CompactionMode-) | Type de symbologie Pdf417 du mode de compaction du BarCode. | +| [setPdf417ECIEncoding(int value)](#setPdf417ECIEncoding-int-) | Identifiants d'interprétation de canal étendu. | +| [setPdf417EncodeMode(Pdf417EncodeMode value)](#setPdf417EncodeMode-com.aspose.barcode.generation.Pdf417EncodeMode-) | Identifie le mode d’encodage Pdf417. | +| [setPdf417ErrorLevel(Pdf417ErrorLevel value)](#setPdf417ErrorLevel-com.aspose.barcode.generation.Pdf417ErrorLevel-) | Définit le niveau de correction d'erreur du type de symbologie Pdf417 du BarCode, allant de level0 à level8 ; level0 signifie aucune information de correction d'erreur, level8 signifie la meilleure correction d'erreur, ce qui implique une image plus grande. | +| [setPdf417MacroAddressee(String value)](#setPdf417MacroAddressee-java.lang.String-) | Nom du destinataire du code-barres MacroPdf417 (champ facultatif). | +| [setPdf417MacroChecksum(int value)](#setPdf417MacroChecksum-int-) | Somme de contrôle du code-barres MacroPdf417 (champ facultatif). | +| [setPdf417MacroECIEncoding(int value)](#setPdf417MacroECIEncoding-int-) | Identifiants d'interprétation de canal étendu. | +| [setPdf417MacroFileID(int value)](#setPdf417MacroFileID-int-) | Identifiant de fichier du code-barres MacroPdf417 (champ obligatoire). | +| [setPdf417MacroFileName(String value)](#setPdf417MacroFileName-java.lang.String-) | Nom de fichier du code-barres MacroPdf417 (champ facultatif). | +| [setPdf417MacroFileSize(int value)](#setPdf417MacroFileSize-int-) | Taille du fichier MacroPdf417 (champ facultatif). | +| [setPdf417MacroSegmentID(int value)](#setPdf417MacroSegmentID-int-) | ID de segment du code-barres MacroPdf417 (champ requis), qui commence à 0, jusqu'à MacroSegmentsCount - 1. | +| [setPdf417MacroSegmentsCount(int value)](#setPdf417MacroSegmentsCount-int-) | Nombre de segments du code-barres MacroPdf417 (champ facultatif). | +| [setPdf417MacroSender(String value)](#setPdf417MacroSender-java.lang.String-) | Nom de l'expéditeur du code-barres MacroPdf417 (champ facultatif). | +| [setPdf417MacroTerminator(Pdf417MacroTerminator value)](#setPdf417MacroTerminator-com.aspose.barcode.generation.Pdf417MacroTerminator-) | Utilisé pour indiquer à l'encodeur s'il faut ajouter le Terminator Macro PDF417 (code mot 922) au segment. | +| [setPdf417MacroTimeStamp(LocalDateTime value)](#setPdf417MacroTimeStamp-java.time.LocalDateTime-) | Horodatage du code-barres MacroPdf417 (champ facultatif). | +| [setPdf417Truncate(boolean value)](#setPdf417Truncate-boolean-) | Indique si le type de symbologie Pdf417 du BarCode est tronqué (pour réduire l'espace). | +| [setReaderInitialization(boolean value)](#setReaderInitialization-boolean-) | Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. | +| [setRows(int value)](#setRows-int-) | Nombre de lignes. | +| [setTruncate(boolean value)](#setTruncate-boolean-) | Indique si le type de symbologie Pdf417 du BarCode est tronqué (pour réduire l'espace). | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible de cet [Pdf417Parameters](../../com.aspose.barcode.generation/pdf417parameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAspectRatio() {#getAspectRatio--} +``` +public final float getAspectRatio() +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getColumns() {#getColumns--} +``` +public final int getColumns() +``` + + +Nombre de colonnes. + +**Returns:** +int +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Identifiants d'Interprétation de Canal Étendu. Ils sont utilisés pour indiquer au lecteur de code-barres les détails concernant les références utilisées pour encoder les données dans le symbole. Non appliqué aux champs texte Macro PDF417. L'implémentation actuelle comprend tous les encodages de jeu de caractères bien connus. + +**Returns:** +int +### getEncodeMode() {#getEncodeMode--} +``` +public final Pdf417EncodeMode getEncodeMode() +``` + + +Identifie le mode d'encodage Pdf417. Valeur par défaut : Auto. + +**Returns:** +[Pdf417EncodeMode](../../com.aspose.barcode.generation/pdf417encodemode) +### getErrorLevel() {#getErrorLevel--} +``` +public final Pdf417ErrorLevel getErrorLevel() +``` + + +Obtient le type de symbologie Pdf417 du niveau de correction d’erreurs du code-barres, allant de level0 à level8, level0 signifie aucune information de correction d’erreurs, level8 signifie la meilleure correction d’erreurs, ce qui entraîne une image plus grande. + +**Returns:** +[Pdf417ErrorLevel](../../com.aspose.barcode.generation/pdf417errorlevel) - Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. +### getMacroCharacters() {#getMacroCharacters--} +``` +public final MacroCharacter getMacroCharacters() +``` + + +Les valeurs des Macro Caractères 05 et 06 sont utilisées pour obtenir un encodage plus compact dans des modes spéciaux. Ne peut être utilisé qu'avec MicroPdf417 et encode les modes MicroPdf417 916 et 917. Valeur par défaut : MacroCharacters.None. + +Ces exemples montrent comment encoder les Macro Caractères dans MicroPdf417. + +``` + + [C#] + //Encodes MicroPdf417 with 05 Macro the string: "[)>05abcde1234" + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); + generator.Parameters.Barcode.Pdf417.MacroCharacters = MacroCharacter.Macro05; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); + //Encodes MicroPdf417 with 06 Macro the string: "[)>06abcde1234" + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); + generator.Parameters.Barcode.Pdf417.MacroCharacters = MacroCharacter.Macro06; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); + +``` + +**Returns:** +[MacroCharacter](../../com.aspose.barcode.generation/macrocharacter) +### getMacroPdf417Addressee() {#getMacroPdf417Addressee--} +``` +public final String getMacroPdf417Addressee() +``` + + +Nom du destinataire du code-barres MacroPdf417 (champ facultatif). Nom du destinataire du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Returns:** +java.lang.String +### getMacroPdf417Checksum() {#getMacroPdf417Checksum--} +``` +public final int getMacroPdf417Checksum() +``` + + +Somme de contrôle du code-barres MacroPdf417 (champ facultatif). Somme de contrôle du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). Le champ de somme de contrôle contient la valeur de la somme de contrôle CRC 16 bits (2 octets) utilisant le polynôme CCITT-16. x^16 + x^12 + x^5 + 1 + +**Returns:** +int +### getMacroPdf417ECIEncoding() {#getMacroPdf417ECIEncoding--} +``` +public final int getMacroPdf417ECIEncoding() +``` + + +Identifiants d'Interprétation de Canal Étendu. S'applique aux champs texte Macro PDF417. + +**Returns:** +int +### getMacroPdf417FileID() {#getMacroPdf417FileID--} +``` +public final int getMacroPdf417FileID() +``` + + +ID de fichier du code-barres MacroPdf417 (champ requis). ID de fichier du code-barres MicroPDF417 (champ requis pour le mode Structured Append). + +**Returns:** +int +### getMacroPdf417FileName() {#getMacroPdf417FileName--} +``` +public final String getMacroPdf417FileName() +``` + + +Nom de fichier du code-barres MacroPdf417 (champ facultatif). Nom de fichier du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Returns:** +java.lang.String +### getMacroPdf417FileSize() {#getMacroPdf417FileSize--} +``` +public final int getMacroPdf417FileSize() +``` + + +Taille du fichier MacroPdf417 (champ facultatif). Taille du fichier MicroPDF417 (champ facultatif pour le mode Structured Append). Le champ taille du fichier contient la taille en octets du fichier source complet. + +**Returns:** +int +### getMacroPdf417SegmentID() {#getMacroPdf417SegmentID--} +``` +public final int getMacroPdf417SegmentID() +``` + + +ID de segment du code-barres MacroPdf417 (champ requis), qui commence à 0, jusqu'à MacroSegmentsCount - 1. ID de segment du code-barres MicroPDF417 (champ requis pour le mode Structured Append). + +**Returns:** +int +### getMacroPdf417SegmentsCount() {#getMacroPdf417SegmentsCount--} +``` +public final int getMacroPdf417SegmentsCount() +``` + + +Nombre de segments du code-barres MacroPdf417 (champ facultatif). Nombre de segments du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Returns:** +int +### getMacroPdf417Sender() {#getMacroPdf417Sender--} +``` +public final String getMacroPdf417Sender() +``` + + +Nom de l'expéditeur du code-barres MacroPdf417 (champ facultatif). Nom de l'expéditeur du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Returns:** +java.lang.String +### getMacroPdf417Terminator() {#getMacroPdf417Terminator--} +``` +public final Pdf417MacroTerminator getMacroPdf417Terminator() +``` + + +Utilisé pour indiquer à l'encodeur s'il faut ajouter le Macro PDF417 Terminator (codeword 922) au segment. Appliqué uniquement pour Macro PDF417. + +**Returns:** +[Pdf417MacroTerminator](../../com.aspose.barcode.generation/pdf417macroterminator) +### getMacroPdf417TimeStamp() {#getMacroPdf417TimeStamp--} +``` +public final LocalDateTime getMacroPdf417TimeStamp() +``` + + +Horodatage du code-barres MacroPdf417 (champ facultatif). Horodatage du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Returns:** +java.time.LocalDateTime +### getPdf417CompactionMode() {#getPdf417CompactionMode--} +``` +public final Pdf417CompactionMode getPdf417CompactionMode() +``` + + +Type de symbologie Pdf417 du mode de compaction du code-barres. Valeur par défaut : Pdf417CompactionMode.Auto. + +**Returns:** +[Pdf417CompactionMode](../../com.aspose.barcode.generation/pdf417compactionmode) +### getPdf417ECIEncoding() {#getPdf417ECIEncoding--} +``` +public final int getPdf417ECIEncoding() +``` + + +Identifiants d'Interprétation de Canal Étendu. Ils sont utilisés pour indiquer au lecteur de code-barres les détails concernant les références utilisées pour encoder les données dans le symbole. Non appliqué aux champs texte Macro PDF417. L'implémentation actuelle comprend tous les encodages de jeu de caractères bien connus. + +**Returns:** +int +### getPdf417EncodeMode() {#getPdf417EncodeMode--} +``` +public final Pdf417EncodeMode getPdf417EncodeMode() +``` + + +Identifie le mode d'encodage Pdf417. Valeur par défaut : Auto. + +**Returns:** +[Pdf417EncodeMode](../../com.aspose.barcode.generation/pdf417encodemode) +### getPdf417ErrorLevel() {#getPdf417ErrorLevel--} +``` +public final Pdf417ErrorLevel getPdf417ErrorLevel() +``` + + +Obtient le type de symbologie Pdf417 du niveau de correction d’erreurs du code-barres, allant de level0 à level8, level0 signifie aucune information de correction d’erreurs, level8 signifie la meilleure correction d’erreurs, ce qui entraîne une image plus grande. + +**Returns:** +[Pdf417ErrorLevel](../../com.aspose.barcode.generation/pdf417errorlevel) - Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. +### getPdf417MacroAddressee() {#getPdf417MacroAddressee--} +``` +public final String getPdf417MacroAddressee() +``` + + +Nom du destinataire du code-barres MacroPdf417 (champ facultatif). Nom du destinataire du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Returns:** +java.lang.String +### getPdf417MacroChecksum() {#getPdf417MacroChecksum--} +``` +public final int getPdf417MacroChecksum() +``` + + +Somme de contrôle du code-barres MacroPdf417 (champ facultatif). Somme de contrôle du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). Le champ de somme de contrôle contient la valeur de la somme de contrôle CRC 16 bits (2 octets) utilisant le polynôme CCITT-16. x^16 + x^12 + x^5 + 1 + +**Returns:** +int +### getPdf417MacroECIEncoding() {#getPdf417MacroECIEncoding--} +``` +public final int getPdf417MacroECIEncoding() +``` + + +Identifiants d'Interprétation de Canal Étendu. S'applique aux champs texte Macro PDF417. + +**Returns:** +int +### getPdf417MacroFileID() {#getPdf417MacroFileID--} +``` +public final int getPdf417MacroFileID() +``` + + +ID de fichier du code-barres MacroPdf417 (champ requis). ID de fichier du code-barres MicroPDF417 (champ requis pour le mode Structured Append). + +**Returns:** +int +### getPdf417MacroFileName() {#getPdf417MacroFileName--} +``` +public final String getPdf417MacroFileName() +``` + + +Nom de fichier du code-barres MacroPdf417 (champ facultatif). Nom de fichier du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Returns:** +java.lang.String +### getPdf417MacroFileSize() {#getPdf417MacroFileSize--} +``` +public final int getPdf417MacroFileSize() +``` + + +Taille du fichier MacroPdf417 (champ facultatif). Taille du fichier MicroPDF417 (champ facultatif pour le mode Structured Append). Le champ taille du fichier contient la taille en octets du fichier source complet. + +**Returns:** +int +### getPdf417MacroSegmentID() {#getPdf417MacroSegmentID--} +``` +public final int getPdf417MacroSegmentID() +``` + + +ID de segment du code-barres MacroPdf417 (champ requis), qui commence à 0, jusqu'à MacroSegmentsCount - 1. ID de segment du code-barres MicroPDF417 (champ requis pour le mode Structured Append). + +**Returns:** +int +### getPdf417MacroSegmentsCount() {#getPdf417MacroSegmentsCount--} +``` +public final int getPdf417MacroSegmentsCount() +``` + + +Nombre de segments du code-barres MacroPdf417 (champ facultatif). Nombre de segments du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Returns:** +int +### getPdf417MacroSender() {#getPdf417MacroSender--} +``` +public final String getPdf417MacroSender() +``` + + +Nom de l'expéditeur du code-barres MacroPdf417 (champ facultatif). Nom de l'expéditeur du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Returns:** +java.lang.String +### getPdf417MacroTerminator() {#getPdf417MacroTerminator--} +``` +public final Pdf417MacroTerminator getPdf417MacroTerminator() +``` + + +Utilisé pour indiquer à l'encodeur s'il faut ajouter le Macro PDF417 Terminator (codeword 922) au segment. Appliqué uniquement pour Macro PDF417. + +**Returns:** +[Pdf417MacroTerminator](../../com.aspose.barcode.generation/pdf417macroterminator) +### getPdf417MacroTimeStamp() {#getPdf417MacroTimeStamp--} +``` +public final LocalDateTime getPdf417MacroTimeStamp() +``` + + +Horodatage du code-barres MacroPdf417 (champ facultatif). Horodatage du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Returns:** +java.time.LocalDateTime +### getPdf417Truncate() {#getPdf417Truncate--} +``` +public final boolean getPdf417Truncate() +``` + + +Indique si le type de symbologie Pdf417 du code-barres est tronqué (pour réduire l'espace). Aussi connu sous le nom de CompactPDF417. L'indicateur de ligne droite et le motif d'arrêt droit sont supprimés dans ce mode. + +**Returns:** +boolean +### getRows() {#getRows--} +``` +public final int getRows() +``` + + +Nombre de lignes. + +**Returns:** +int +### getTruncate() {#getTruncate--} +``` +public final boolean getTruncate() +``` + + +Indique si le type de symbologie Pdf417 du code-barres est tronqué (pour réduire l'espace). Aussi connu sous le nom de CompactPDF417. L'indicateur de ligne droite et le motif d'arrêt droit sont supprimés dans ce mode. + +**Returns:** +boolean +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isCode128Emulation() {#isCode128Emulation--} +``` +public final boolean isCode128Emulation() +``` + + +Ne peut être utilisé qu'avec MicroPdf417 et encode les modes d'émulation Code 128. Peut encoder FNC1 en deuxième position dans les modes 908 et 909, peut également encoder 910 et 911 qui indiquent simplement que le MicroPdf417 reconnu peut être interprété comme Code 128. + +Ces exemples montrent comment encoder les modes d'émulation Code 128 avec FNC1 en deuxième position et sans. De cette façon, MicroPdf417 peut être décodé comme un code-barres Code 128. + +``` + + [C#] + //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "a", mode 908. + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "a1222322323"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "99", mode 909. + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "991222322323"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + //Encodes MicroPdf417 in Code 128 emulation mode, modes 910, 911 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + +``` + +**Returns:** +boolean +### isLinked() {#isLinked--} +``` +public final boolean isLinked() +``` + + +Définit les modes liés avec les codes-barres GS1MicroPdf417, MicroPdf417 et Pdf417. Avec la symbologie GS1MicroPdf417, encode les modes UCC/EAN-128 "Linked" 906, 907, 912, 913, 914, 915. Avec les symbologies MicroPdf417 et Pdf417, encode le drapeau de liaison 918 vers le composant linéaire associé autre qu'un EAN.UCC. + +Ces exemples montrent comment encoder les modes "Linked" UCC/EAN-128 dans GS1MicroPdf417 et le drapeau de liaison (918) dans les codes-barres MicroPdf417 et Pdf417. + +``` + + [C#] + //Encodes GS1 Linked mode 912 with date field AI 11 (Production date) and AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(11)991231(10)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 13 (Packaging date) and AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(13)991231(21)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 15 (Sell-by date) and AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(15)991231(10)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 17 (Expiration date) and AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(17)991231(21)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 914 with AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(10)ABCD12345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 915 with AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(21)ABCD12345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked modes 906, 907 with any AI + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(240)123456789012345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes MicroPdf417 NON EAN.UCC Linked mode 918 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "ABCDE123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes Pdf417 NON EAN.UCC Linked mode 918 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Pdf417, "ABCDE123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.Pdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + +``` + +**Returns:** +boolean +### isReaderInitialization() {#isReaderInitialization--} +``` +public final boolean isReaderInitialization() +``` + + +Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAspectRatio(float value) {#setAspectRatio-float-} +``` +public final void setAspectRatio(float value) +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setCode128Emulation(boolean value) {#setCode128Emulation-boolean-} +``` +public final void setCode128Emulation(boolean value) +``` + + +Ne peut être utilisé qu'avec MicroPdf417 et encode les modes d'émulation Code 128. Peut encoder FNC1 en deuxième position dans les modes 908 et 909, peut également encoder 910 et 911 qui indiquent simplement que le MicroPdf417 reconnu peut être interprété comme Code 128. + +Ces exemples montrent comment encoder les modes d'émulation Code 128 avec FNC1 en deuxième position et sans. De cette façon, MicroPdf417 peut être décodé comme un code-barres Code 128. + +``` + + [C#] + //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "a", mode 908. + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "a1222322323"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "99", mode 909. + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "991222322323"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + //Encodes MicroPdf417 in Code 128 emulation mode, modes 910, 911 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + +``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setColumns(int value) {#setColumns-int-} +``` +public final void setColumns(int value) +``` + + +Nombre de colonnes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Identifiants d'Interprétation de Canal Étendu. Ils sont utilisés pour indiquer au lecteur de code-barres les détails concernant les références utilisées pour encoder les données dans le symbole. Non appliqué aux champs texte Macro PDF417. L'implémentation actuelle comprend tous les encodages de jeu de caractères bien connus. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setEncodeMode(Pdf417EncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.Pdf417EncodeMode-} +``` +public final void setEncodeMode(Pdf417EncodeMode value) +``` + + +Identifie le mode d'encodage Pdf417. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Pdf417EncodeMode](../../com.aspose.barcode.generation/pdf417encodemode) | | + +### setErrorLevel(Pdf417ErrorLevel value) {#setErrorLevel-com.aspose.barcode.generation.Pdf417ErrorLevel-} +``` +public final void setErrorLevel(Pdf417ErrorLevel value) +``` + + +Définit le niveau de correction d'erreur du type de symbologie Pdf417 du BarCode, allant de level0 à level8 ; level0 signifie aucune information de correction d'erreur, level8 signifie la meilleure correction d'erreur, ce qui implique une image plus grande. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Pdf417ErrorLevel](../../com.aspose.barcode.generation/pdf417errorlevel) | Type de symbologie Pdf417 du niveau de correction d'erreurs du code-barres, allant de level0 à level8, level0 signifie aucune information de correction d'erreurs, level8 signifie la meilleure correction d'erreurs, ce qui entraîne une image plus grande. | + +### setLinked(boolean value) {#setLinked-boolean-} +``` +public final void setLinked(boolean value) +``` + + +Définit les modes liés avec les codes-barres GS1MicroPdf417, MicroPdf417 et Pdf417. Avec la symbologie GS1MicroPdf417, encode les modes UCC/EAN-128 "Linked" 906, 907, 912, 913, 914, 915. Avec les symbologies MicroPdf417 et Pdf417, encode le drapeau de liaison 918 vers le composant linéaire associé autre qu'un EAN.UCC. + +Ces exemples montrent comment encoder les modes "Linked" UCC/EAN-128 dans GS1MicroPdf417 et le drapeau de liaison (918) dans les codes-barres MicroPdf417 et Pdf417. + +``` + + [C#] + //Encodes GS1 Linked mode 912 with date field AI 11 (Production date) and AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(11)991231(10)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 13 (Packaging date) and AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(13)991231(21)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 15 (Sell-by date) and AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(15)991231(10)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 17 (Expiration date) and AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(17)991231(21)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 914 with AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(10)ABCD12345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 915 with AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(21)ABCD12345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked modes 906, 907 with any AI + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(240)123456789012345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes MicroPdf417 NON EAN.UCC Linked mode 918 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "ABCDE123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes Pdf417 NON EAN.UCC Linked mode 918 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Pdf417, "ABCDE123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.Pdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + +``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setMacroCharacters(MacroCharacter value) {#setMacroCharacters-com.aspose.barcode.generation.MacroCharacter-} +``` +public final void setMacroCharacters(MacroCharacter value) +``` + + +Les valeurs des Macro Caractères 05 et 06 sont utilisées pour obtenir un encodage plus compact dans des modes spéciaux. Ne peut être utilisé qu'avec MicroPdf417 et encode les modes MicroPdf417 916 et 917. Valeur par défaut : MacroCharacters.None. + +Ces exemples montrent comment encoder les Macro Caractères dans MicroPdf417. + +``` + + [C#] + //Encodes MicroPdf417 with 05 Macro the string: "[)>05abcde1234" + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); + generator.Parameters.Barcode.Pdf417.MacroCharacters = MacroCharacter.Macro05; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); + //Encodes MicroPdf417 with 06 Macro the string: "[)>06abcde1234" + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); + generator.Parameters.Barcode.Pdf417.MacroCharacters = MacroCharacter.Macro06; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); + +``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MacroCharacter](../../com.aspose.barcode.generation/macrocharacter) | | + +### setMacroPdf417Addressee(String value) {#setMacroPdf417Addressee-java.lang.String-} +``` +public final void setMacroPdf417Addressee(String value) +``` + + +Nom du destinataire du code-barres MacroPdf417 (champ facultatif). Nom du destinataire du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setMacroPdf417Checksum(int value) {#setMacroPdf417Checksum-int-} +``` +public final void setMacroPdf417Checksum(int value) +``` + + +Somme de contrôle du code-barres MacroPdf417 (champ facultatif). Somme de contrôle du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). Le champ de somme de contrôle contient la valeur de la somme de contrôle CRC 16 bits (2 octets) utilisant le polynôme CCITT-16. x^16 + x^12 + x^5 + 1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setMacroPdf417ECIEncoding(int value) {#setMacroPdf417ECIEncoding-int-} +``` +public final void setMacroPdf417ECIEncoding(int value) +``` + + +Identifiants d'Interprétation de Canal Étendu. S'applique aux champs texte Macro PDF417. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setMacroPdf417FileID(int value) {#setMacroPdf417FileID-int-} +``` +public final void setMacroPdf417FileID(int value) +``` + + +ID de fichier du code-barres MacroPdf417 (champ requis). ID de fichier du code-barres MicroPDF417 (champ requis pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setMacroPdf417FileName(String value) {#setMacroPdf417FileName-java.lang.String-} +``` +public final void setMacroPdf417FileName(String value) +``` + + +Nom de fichier du code-barres MacroPdf417 (champ facultatif). Nom de fichier du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setMacroPdf417FileSize(int value) {#setMacroPdf417FileSize-int-} +``` +public final void setMacroPdf417FileSize(int value) +``` + + +Taille du fichier MacroPdf417 (champ facultatif). Taille du fichier MicroPDF417 (champ facultatif pour le mode Structured Append). Le champ taille du fichier contient la taille en octets du fichier source complet. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setMacroPdf417SegmentID(int value) {#setMacroPdf417SegmentID-int-} +``` +public final void setMacroPdf417SegmentID(int value) +``` + + +ID de segment du code-barres MacroPdf417 (champ requis), qui commence à 0, jusqu'à MacroSegmentsCount - 1. ID de segment du code-barres MicroPDF417 (champ requis pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setMacroPdf417SegmentsCount(int value) {#setMacroPdf417SegmentsCount-int-} +``` +public final void setMacroPdf417SegmentsCount(int value) +``` + + +Nombre de segments du code-barres MacroPdf417 (champ facultatif). Nombre de segments du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setMacroPdf417Sender(String value) {#setMacroPdf417Sender-java.lang.String-} +``` +public final void setMacroPdf417Sender(String value) +``` + + +Nom de l'expéditeur du code-barres MacroPdf417 (champ facultatif). Nom de l'expéditeur du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setMacroPdf417Terminator(Pdf417MacroTerminator value) {#setMacroPdf417Terminator-com.aspose.barcode.generation.Pdf417MacroTerminator-} +``` +public final void setMacroPdf417Terminator(Pdf417MacroTerminator value) +``` + + +Utilisé pour indiquer à l'encodeur s'il faut ajouter le Macro PDF417 Terminator (codeword 922) au segment. Appliqué uniquement pour Macro PDF417. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Pdf417MacroTerminator](../../com.aspose.barcode.generation/pdf417macroterminator) | | + +### setMacroPdf417TimeStamp(LocalDateTime value) {#setMacroPdf417TimeStamp-java.time.LocalDateTime-} +``` +public final void setMacroPdf417TimeStamp(LocalDateTime value) +``` + + +Horodatage du code-barres MacroPdf417 (champ facultatif). Horodatage du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.time.LocalDateTime | | + +### setPdf417CompactionMode(Pdf417CompactionMode value) {#setPdf417CompactionMode-com.aspose.barcode.generation.Pdf417CompactionMode-} +``` +public final void setPdf417CompactionMode(Pdf417CompactionMode value) +``` + + +Type de symbologie Pdf417 du mode de compaction du code-barres. Valeur par défaut : Pdf417CompactionMode.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Pdf417CompactionMode](../../com.aspose.barcode.generation/pdf417compactionmode) | | + +### setPdf417ECIEncoding(int value) {#setPdf417ECIEncoding-int-} +``` +public final void setPdf417ECIEncoding(int value) +``` + + +Identifiants d'Interprétation de Canal Étendu. Ils sont utilisés pour indiquer au lecteur de code-barres les détails concernant les références utilisées pour encoder les données dans le symbole. Non appliqué aux champs texte Macro PDF417. L'implémentation actuelle comprend tous les encodages de jeu de caractères bien connus. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setPdf417EncodeMode(Pdf417EncodeMode value) {#setPdf417EncodeMode-com.aspose.barcode.generation.Pdf417EncodeMode-} +``` +public final void setPdf417EncodeMode(Pdf417EncodeMode value) +``` + + +Identifie le mode d'encodage Pdf417. Valeur par défaut : Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Pdf417EncodeMode](../../com.aspose.barcode.generation/pdf417encodemode) | | + +### setPdf417ErrorLevel(Pdf417ErrorLevel value) {#setPdf417ErrorLevel-com.aspose.barcode.generation.Pdf417ErrorLevel-} +``` +public final void setPdf417ErrorLevel(Pdf417ErrorLevel value) +``` + + +Définit le niveau de correction d'erreur du type de symbologie Pdf417 du BarCode, allant de level0 à level8 ; level0 signifie aucune information de correction d'erreur, level8 signifie la meilleure correction d'erreur, ce qui implique une image plus grande. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Pdf417ErrorLevel](../../com.aspose.barcode.generation/pdf417errorlevel) | Type de symbologie Pdf417 du niveau de correction d'erreurs du code-barres, allant de level0 à level8, level0 signifie aucune information de correction d'erreurs, level8 signifie la meilleure correction d'erreurs, ce qui entraîne une image plus grande. | + +### setPdf417MacroAddressee(String value) {#setPdf417MacroAddressee-java.lang.String-} +``` +public final void setPdf417MacroAddressee(String value) +``` + + +Nom du destinataire du code-barres MacroPdf417 (champ facultatif). Nom du destinataire du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setPdf417MacroChecksum(int value) {#setPdf417MacroChecksum-int-} +``` +public final void setPdf417MacroChecksum(int value) +``` + + +Somme de contrôle du code-barres MacroPdf417 (champ facultatif). Somme de contrôle du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). Le champ de somme de contrôle contient la valeur de la somme de contrôle CRC 16 bits (2 octets) utilisant le polynôme CCITT-16. x^16 + x^12 + x^5 + 1 + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setPdf417MacroECIEncoding(int value) {#setPdf417MacroECIEncoding-int-} +``` +public final void setPdf417MacroECIEncoding(int value) +``` + + +Identifiants d'Interprétation de Canal Étendu. S'applique aux champs texte Macro PDF417. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setPdf417MacroFileID(int value) {#setPdf417MacroFileID-int-} +``` +public final void setPdf417MacroFileID(int value) +``` + + +ID de fichier du code-barres MacroPdf417 (champ requis). ID de fichier du code-barres MicroPDF417 (champ requis pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setPdf417MacroFileName(String value) {#setPdf417MacroFileName-java.lang.String-} +``` +public final void setPdf417MacroFileName(String value) +``` + + +Nom de fichier du code-barres MacroPdf417 (champ facultatif). Nom de fichier du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setPdf417MacroFileSize(int value) {#setPdf417MacroFileSize-int-} +``` +public final void setPdf417MacroFileSize(int value) +``` + + +Taille du fichier MacroPdf417 (champ facultatif). Taille du fichier MicroPDF417 (champ facultatif pour le mode Structured Append). Le champ taille du fichier contient la taille en octets du fichier source complet. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setPdf417MacroSegmentID(int value) {#setPdf417MacroSegmentID-int-} +``` +public final void setPdf417MacroSegmentID(int value) +``` + + +ID de segment du code-barres MacroPdf417 (champ requis), qui commence à 0, jusqu'à MacroSegmentsCount - 1. ID de segment du code-barres MicroPDF417 (champ requis pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setPdf417MacroSegmentsCount(int value) {#setPdf417MacroSegmentsCount-int-} +``` +public final void setPdf417MacroSegmentsCount(int value) +``` + + +Nombre de segments du code-barres MacroPdf417 (champ facultatif). Nombre de segments du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setPdf417MacroSender(String value) {#setPdf417MacroSender-java.lang.String-} +``` +public final void setPdf417MacroSender(String value) +``` + + +Nom de l'expéditeur du code-barres MacroPdf417 (champ facultatif). Nom de l'expéditeur du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setPdf417MacroTerminator(Pdf417MacroTerminator value) {#setPdf417MacroTerminator-com.aspose.barcode.generation.Pdf417MacroTerminator-} +``` +public final void setPdf417MacroTerminator(Pdf417MacroTerminator value) +``` + + +Utilisé pour indiquer à l'encodeur s'il faut ajouter le Macro PDF417 Terminator (codeword 922) au segment. Appliqué uniquement pour Macro PDF417. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Pdf417MacroTerminator](../../com.aspose.barcode.generation/pdf417macroterminator) | | + +### setPdf417MacroTimeStamp(LocalDateTime value) {#setPdf417MacroTimeStamp-java.time.LocalDateTime-} +``` +public final void setPdf417MacroTimeStamp(LocalDateTime value) +``` + + +Horodatage du code-barres MacroPdf417 (champ facultatif). Horodatage du code-barres MicroPDF417 (champ facultatif pour le mode Structured Append). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.time.LocalDateTime | | + +### setPdf417Truncate(boolean value) {#setPdf417Truncate-boolean-} +``` +public final void setPdf417Truncate(boolean value) +``` + + +Indique si le type de symbologie Pdf417 du code-barres est tronqué (pour réduire l'espace). Aussi connu sous le nom de CompactPDF417. L'indicateur de ligne droite et le motif d'arrêt droit sont supprimés dans ce mode. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setReaderInitialization(boolean value) {#setReaderInitialization-boolean-} +``` +public final void setReaderInitialization(boolean value) +``` + + +Utilisé pour indiquer au lecteur d'interpréter les données contenues dans le symbole comme une programmation pour l'initialisation du lecteur. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setRows(int value) {#setRows-int-} +``` +public final void setRows(int value) +``` + + +Nombre de lignes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setTruncate(boolean value) {#setTruncate-boolean-} +``` +public final void setTruncate(boolean value) +``` + + +Indique si le type de symbologie Pdf417 du code-barres est tronqué (pour réduire l'espace). Aussi connu sous le nom de CompactPDF417. L'indicateur de ligne droite et le motif d'arrêt droit sont supprimés dans ce mode. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible de cet [Pdf417Parameters](../../com.aspose.barcode.generation/pdf417parameters). + +**Returns:** +java.lang.String - Une chaîne qui représente ce [Pdf417Parameters](../../com.aspose.barcode.generation/pdf417parameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/pdfparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/pdfparameters/_index.md new file mode 100644 index 000000000..fb41da45e --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/pdfparameters/_index.md @@ -0,0 +1,294 @@ +--- +title: PdfParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres PDF. +type: docs +weight: 61 +url: /fr/androidjava/com.aspose.barcode.generation/pdfparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class PdfParameters +``` + +Paramètres PDF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getCMYKBackColor()](#getCMYKBackColor--) | Valeur de couleur d'arrière-plan CMYK. | +| [getCMYKBarColor()](#getCMYKBarColor--) | Valeur de couleur CMYK du code-barres. | +| [getCMYKCaptionAboveColor()](#getCMYKCaptionAboveColor--) | Valeur de couleur CMYK pour la légende supérieure. | +| [getCMYKCaptionBelowColor()](#getCMYKCaptionBelowColor--) | Valeur de couleur CMYK pour la légende inférieure. | +| [getCMYKCodetextColor()](#getCMYKCodetextColor--) | Valeur de couleur CMYK pour le texte de code. | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [isTextAsPath()](#isTextAsPath--) | Les chemins sont-ils utilisés à la place du texte (à utiliser si les caractères Unicode ne s'affichent pas) Valeur par défaut : false. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setCMYKBackColor(CMYKColor value)](#setCMYKBackColor-com.aspose.barcode.generation.CMYKColor-) | Valeur de couleur d'arrière-plan CMYK. | +| [setCMYKBarColor(CMYKColor value)](#setCMYKBarColor-com.aspose.barcode.generation.CMYKColor-) | Valeur de couleur CMYK du code-barres. | +| [setCMYKCaptionAboveColor(CMYKColor value)](#setCMYKCaptionAboveColor-com.aspose.barcode.generation.CMYKColor-) | Valeur de couleur CMYK pour la légende supérieure. | +| [setCMYKCaptionBelowColor(CMYKColor value)](#setCMYKCaptionBelowColor-com.aspose.barcode.generation.CMYKColor-) | Valeur de couleur CMYK pour la légende inférieure. | +| [setCMYKCodetextColor(CMYKColor value)](#setCMYKCodetextColor-com.aspose.barcode.generation.CMYKColor-) | Valeur de couleur CMYK pour le texte de code. | +| [setTextAsPath(boolean value)](#setTextAsPath-boolean-) | Les chemins sont-ils utilisés à la place du texte (à utiliser si les caractères Unicode ne s'affichent pas) Valeur par défaut : false. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getCMYKBackColor() {#getCMYKBackColor--} +``` +public CMYKColor getCMYKBackColor() +``` + + +Valeur de couleur d'arrière-plan CMYK. + +Si null, la couleur CMYK n'est pas utilisée ; la couleur RVB sera utilisée à la place. + +**Returns:** +[CMYKColor](../../com.aspose.barcode.generation/cmykcolor) +### getCMYKBarColor() {#getCMYKBarColor--} +``` +public CMYKColor getCMYKBarColor() +``` + + +Valeur de couleur CMYK du code-barres. + +Si null, la couleur CMYK n'est pas utilisée ; la couleur RVB sera utilisée à la place. + +**Returns:** +[CMYKColor](../../com.aspose.barcode.generation/cmykcolor) +### getCMYKCaptionAboveColor() {#getCMYKCaptionAboveColor--} +``` +public CMYKColor getCMYKCaptionAboveColor() +``` + + +Valeur de couleur CMYK pour la légende supérieure. + +Si null, la couleur CMYK n'est pas utilisée ; la couleur RVB sera utilisée à la place. + +**Returns:** +[CMYKColor](../../com.aspose.barcode.generation/cmykcolor) +### getCMYKCaptionBelowColor() {#getCMYKCaptionBelowColor--} +``` +public CMYKColor getCMYKCaptionBelowColor() +``` + + +Valeur de couleur CMYK pour la légende inférieure. + +Si null, la couleur CMYK n'est pas utilisée ; la couleur RVB sera utilisée à la place. + +**Returns:** +[CMYKColor](../../com.aspose.barcode.generation/cmykcolor) +### getCMYKCodetextColor() {#getCMYKCodetextColor--} +``` +public CMYKColor getCMYKCodetextColor() +``` + + +Valeur de couleur CMYK pour le texte de code. + +Si null, la couleur CMYK n'est pas utilisée ; la couleur RVB sera utilisée à la place. + +**Returns:** +[CMYKColor](../../com.aspose.barcode.generation/cmykcolor) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isTextAsPath() {#isTextAsPath--} +``` +public boolean isTextAsPath() +``` + + +Les chemins sont-ils utilisés à la place du texte (à utiliser si les caractères Unicode ne s'affichent pas) Valeur par défaut : false. + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setCMYKBackColor(CMYKColor value) {#setCMYKBackColor-com.aspose.barcode.generation.CMYKColor-} +``` +public void setCMYKBackColor(CMYKColor value) +``` + + +Valeur de couleur d'arrière-plan CMYK. + +Si null, la couleur CMYK n'est pas utilisée ; la couleur RVB sera utilisée à la place. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CMYKColor](../../com.aspose.barcode.generation/cmykcolor) | | + +### setCMYKBarColor(CMYKColor value) {#setCMYKBarColor-com.aspose.barcode.generation.CMYKColor-} +``` +public void setCMYKBarColor(CMYKColor value) +``` + + +Valeur de couleur CMYK du code-barres. + +Si null, la couleur CMYK n'est pas utilisée ; la couleur RVB sera utilisée à la place. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CMYKColor](../../com.aspose.barcode.generation/cmykcolor) | | + +### setCMYKCaptionAboveColor(CMYKColor value) {#setCMYKCaptionAboveColor-com.aspose.barcode.generation.CMYKColor-} +``` +public void setCMYKCaptionAboveColor(CMYKColor value) +``` + + +Valeur de couleur CMYK pour la légende supérieure. + +Si null, la couleur CMYK n'est pas utilisée ; la couleur RVB sera utilisée à la place. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CMYKColor](../../com.aspose.barcode.generation/cmykcolor) | | + +### setCMYKCaptionBelowColor(CMYKColor value) {#setCMYKCaptionBelowColor-com.aspose.barcode.generation.CMYKColor-} +``` +public void setCMYKCaptionBelowColor(CMYKColor value) +``` + + +Valeur de couleur CMYK pour la légende inférieure. + +Si null, la couleur CMYK n'est pas utilisée ; la couleur RVB sera utilisée à la place. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CMYKColor](../../com.aspose.barcode.generation/cmykcolor) | | + +### setCMYKCodetextColor(CMYKColor value) {#setCMYKCodetextColor-com.aspose.barcode.generation.CMYKColor-} +``` +public void setCMYKCodetextColor(CMYKColor value) +``` + + +Valeur de couleur CMYK pour le texte de code. + +Si null, la couleur CMYK n'est pas utilisée ; la couleur RVB sera utilisée à la place. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CMYKColor](../../com.aspose.barcode.generation/cmykcolor) | | + +### setTextAsPath(boolean value) {#setTextAsPath-boolean-} +``` +public void setTextAsPath(boolean value) +``` + + +Les chemins sont-ils utilisés à la place du texte (à utiliser si les caractères Unicode ne s'affichent pas) Valeur par défaut : false. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/postalparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/postalparameters/_index.md new file mode 100644 index 000000000..a8f0a4ab7 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/postalparameters/_index.md @@ -0,0 +1,174 @@ +--- +title: PostalParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres postaux. +type: docs +weight: 62 +url: /fr/androidjava/com.aspose.barcode.generation/postalparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class PostalParameters +``` + +Paramètres postaux. Utilisé pour Postnet, Planet. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getPostalShortBarHeight()](#getPostalShortBarHeight--) | Hauteur de la barre courte des codes-barres postaux. | +| [getShortBarHeight()](#getShortBarHeight--) | Hauteur de la barre courte des codes-barres postaux. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setPostalShortBarHeight(Unit value)](#setPostalShortBarHeight-com.aspose.barcode.generation.Unit-) | Hauteur de la barre courte des codes-barres postaux. | +| [setShortBarHeight(Unit value)](#setShortBarHeight-com.aspose.barcode.generation.Unit-) | Hauteur de la barre courte des codes-barres postaux. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible de cet [PostalParameters](../../com.aspose.barcode.generation/postalparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getPostalShortBarHeight() {#getPostalShortBarHeight--} +``` +public final Unit getPostalShortBarHeight() +``` + + +Hauteur de la barre courte des codes-barres postaux. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getShortBarHeight() {#getShortBarHeight--} +``` +public final Unit getShortBarHeight() +``` + + +Hauteur de la barre courte des codes-barres postaux. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setPostalShortBarHeight(Unit value) {#setPostalShortBarHeight-com.aspose.barcode.generation.Unit-} +``` +public final void setPostalShortBarHeight(Unit value) +``` + + +Hauteur de la barre courte des codes-barres postaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### setShortBarHeight(Unit value) {#setShortBarHeight-com.aspose.barcode.generation.Unit-} +``` +public final void setShortBarHeight(Unit value) +``` + + +Hauteur de la barre courte des codes-barres postaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible de cet [PostalParameters](../../com.aspose.barcode.generation/postalparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente cet [PostalParameters](../../com.aspose.barcode.generation/postalparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/qrencodemode/_index.md b/french/androidjava/com.aspose.barcode.generation/qrencodemode/_index.md new file mode 100644 index 000000000..76397c867 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/qrencodemode/_index.md @@ -0,0 +1,384 @@ +--- +title: QREncodeMode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode d'encodage pour les codes-barres QR. +type: docs +weight: 102 +url: /fr/androidjava/com.aspose.barcode.generation/qrencodemode/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum QREncodeMode extends Enum +``` + +Mode d'encodage pour les codes-barres QR. + +-------------------- + +> ``` +> Example how to use ECI encoding +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); +> generator.setCodeText("12345TEXT"); +> generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.ECI_ENCODING); +> generator.getParameters().getBarcode().getQR().setQrECIEncoding(ECIEncodings.UTF8); +> generator.save("test.png"); +> ``` + +-------------------- + +> ``` +> Example how to use FNC1 first position in Extended Mode +> +> QrExtCodetextBuilder textBuilder = new QrExtCodetextBuilder(); +> textBuilder.addPlainCodetext("000%89%%0"); +> textBuilder.addFNC1GroupSeparator(); +> textBuilder.addPlainCodetext("12345"); +> //generate barcode +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); +> generator.setCodeText(textBuilder.getExtended()); +> generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.EXTENDED_CODETEXT); +> generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); +> generator.save("d:/test.png"); +> +> * +> This sample shows how to use FNC1 second position in Extended Mode. +> +> +> //create codetext +> QrExtCodetextBuilder textBuilder = new QrExtCodetextBuilder(); +> textBuilder.addFNC1SecondPosition("12"); +> textBuilder.addPlainCodetext("TRUE3456"); +> //generate barcode +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); +> generator.setCodeText(textBuilder.getExtended()); +> generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); +> generator.save("d:/test.png"); +> +> +> This sample shows how to use multi ECI mode in Extended Mode. +> +> +> //create codetext +> QrExtCodetextBuilder textBuilder = new QrExtCodetextBuilder(); +> textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +> textBuilder.addECICodetext(ECIEncodings.UTF8, "Right"); +> textBuilder.addECICodetext(ECIEncodings.UTF16BE, "Power"); +> textBuilder.addPlainCodetext("t\e\\st"); +> //generate barcode +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); +> generator.setCodeText(textBuilder.getExtended()); +> generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.EXTENDED_CODETEXT); +> generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); +> generator.save("d:/test.png"); +> ``` +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | En mode Auto, le CodeText est encodé avec une compacité maximale des données. | +| [BINARY](#BINARY) | En mode Binaire, le CodeText est encodé avec une compacité maximale des données. | +| [BYTES](#BYTES) | Encoder le texte de code en octets simples. | +| [ECI](#ECI) | En mode ECI, le message complet est ré‑encodé dans l’encodage spécifié ECIEncoding avec l’insertion d’un identifiant ECI. | +| [ECI_ENCODING](#ECI-ENCODING) | Encode codetext with value set in the ECIEncoding property. | +| [EXTENDED](#EXTENDED) | Extended Channel mode which supports FNC1 first position, FNC1 second position and multi ECI modes. It is better to use QrExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. Encoding Principles: All symbols "\\" must be doubled "\\\\" in the codetext. FNC1 in first position is set in codetext as as "" FNC1 in second position is set in codetext as as "". | +| [EXTENDED_CODETEXT](#EXTENDED-CODETEXT) | Extended Channel mode which supports FNC1 first position, FNC1 second position and multi ECI modes. It is better to use QrExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. Encoding Principles: All symbols "\\" must be doubled "\\\\" in the codetext. FNC1 in first position is set in codetext as as "" FNC1 in second position is set in codetext as as "". | +| [UTF_16_BEBOM](#UTF-16-BEBOM) | Encode codetext with UTF8 encoding with first ByteOfMark character. | +| [UTF_8_BOM](#UTF-8-BOM) | Encode codetext with UTF8 encoding with first ByteOfMark character. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final QREncodeMode AUTO +``` + + +In Auto mode, the CodeText is encoded with maximum data compactness. Unicode characters are encoded in kanji mode if possible, or they are re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. + +### BINARY {#BINARY} +``` +public static final QREncodeMode BINARY +``` + + +En mode Binaire, le CodeText est encodé avec une compacité maximale des données. Si un caractère Unicode est trouvé, une exception est levée. + +### BYTES {#BYTES} +``` +public static final QREncodeMode BYTES +``` + + +Encoder le texte de code en octets simples. Si un caractère Unicode est détecté, le caractère sera encodé en deux octets, l’octet de poids faible en premier. + +### ECI {#ECI} +``` +public static final QREncodeMode ECI +``` + + +In ECI mode, the entire message is re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. Please note that some old (pre 2006) scanners may not support this mode. This mode is not supported by MicroQR barcodes. + +### ECI_ENCODING {#ECI-ENCODING} +``` +public static final QREncodeMode ECI_ENCODING +``` + + +Encode codetext with value set in the ECIEncoding property. It can be problems with some old (pre 2006) barcode scanners. This mode is not supported by MicroQR barcodes. + +### EXTENDED {#EXTENDED} +``` +public static final QREncodeMode EXTENDED +``` + + +Extended Channel mode which supports FNC1 first position, FNC1 second position and multi ECI modes. It is better to use QrExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. Encoding Principles: All symbols "\\" must be doubled "\\\\" in the codetext. FNC1 in first position is set in codetext as as "" FNC1 in second position is set in codetext as as "". The value must be single symbols (a-z, A-Z) or digits from 0 to 99. Group Separator for FNC1 modes is set as 0x1D character '\\\\u001D' If you need to insert "" string into barcode write it as "<\\FNC1>" ECI identifiers are set as single slash and six digits identifier "\\000026" - UTF8 ECI identifier To disable current ECI mode and convert to default JIS8 mode zero mode ECI indetifier is set. "\\000000" All unicode characters after ECI identifier are automatically encoded into correct character codeset. This mode is not supported by MicroQR barcodes. + +### EXTENDED_CODETEXT {#EXTENDED-CODETEXT} +``` +public static final QREncodeMode EXTENDED_CODETEXT +``` + + +Extended Channel mode which supports FNC1 first position, FNC1 second position and multi ECI modes. It is better to use QrExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. Encoding Principles: All symbols "\\" must be doubled "\\\\" in the codetext. FNC1 in first position is set in codetext as as "" FNC1 in second position is set in codetext as as "". The value must be single symbols (a-z, A-Z) or digits from 0 to 99. Group Separator for FNC1 modes is set as 0x1D character '\\\\u001D' If you need to insert "" string into barcode write it as "<\\FNC1>" ECI identifiers are set as single slash and six digits identifier "\\000026" - UTF8 ECI identifier To disable current ECI mode and convert to default JIS8 mode zero mode ECI indetifier is set. "\\000000" All unicode characters after ECI identifier are automatically encoded into correct character codeset. This mode is not supported by MicroQR barcodes. + +### UTF_16_BEBOM {#UTF-16-BEBOM} +``` +public static final QREncodeMode UTF_16_BEBOM +``` + + +Encode codetext with UTF8 encoding with first ByteOfMark character. It can be problems with some barcode scanners. + +### UTF_8_BOM {#UTF-8-BOM} +``` +public static final QREncodeMode UTF_8_BOM +``` + + +Encode codetext with UTF8 encoding with first ByteOfMark character. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static QREncodeMode valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[QREncodeMode](../../com.aspose.barcode.generation/qrencodemode) +### values() {#values--} +``` +public static QREncodeMode[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.QREncodeMode[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/qrencodetype/_index.md b/french/androidjava/com.aspose.barcode.generation/qrencodetype/_index.md new file mode 100644 index 000000000..a330287a4 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/qrencodetype/_index.md @@ -0,0 +1,270 @@ +--- +title: QREncodeType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Mode de sélection QR / MicroQR. +type: docs +weight: 103 +url: /fr/androidjava/com.aspose.barcode.generation/qrencodetype/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum QREncodeType extends Enum +``` + +Mode de sélection QR / MicroQR. Sélectionnez FORCE\_QR pour les symboles QR standards, AUTO pour MicroQR. FORCE\_MICRO\_QR est utilisé pour la génération de symboles MicroQR fortement si cela est possible. +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Le mode démarre la négociation de version du code-barres à partir de MicroQR V1. | +| [FORCE_MICRO_QR](#FORCE-MICRO-QR) | Le mode démarre la négociation de version du code-barres de MicroQR V1 à V4. | +| [FORCE_QR](#FORCE-QR) | Le mode démarre la négociation de version du code-barres à partir de QR V1. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final QREncodeType AUTO +``` + + +Le mode démarre la négociation de version du code-barres à partir de MicroQR V1. + +### FORCE_MICRO_QR {#FORCE-MICRO-QR} +``` +public static final QREncodeType FORCE_MICRO_QR +``` + + +Le mode démarre la négociation de version du code-barres de MicroQR V1 à V4. Si les données ne peuvent pas être encodées en MicroQR, une exception est levée. + +### FORCE_QR {#FORCE-QR} +``` +public static final QREncodeType FORCE_QR +``` + + +Le mode démarre la négociation de version du code-barres à partir de QR V1. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static QREncodeType valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[QREncodeType](../../com.aspose.barcode.generation/qrencodetype) +### values() {#values--} +``` +public static QREncodeType[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.QREncodeType[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/qrerrorlevel/_index.md b/french/androidjava/com.aspose.barcode.generation/qrerrorlevel/_index.md new file mode 100644 index 000000000..2c63b3503 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/qrerrorlevel/_index.md @@ -0,0 +1,295 @@ +--- +title: QRErrorLevel +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Niveau de correction d'erreurs Reed-Solomon. +type: docs +weight: 104 +url: /fr/androidjava/com.aspose.barcode.generation/qrerrorlevel/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum QRErrorLevel extends Enum +``` + +Niveau de correction d'erreurs Reed-Solomon. Du plus bas au plus haut : LEVEL\_L, LEVEL\_M, LEVEL\_Q, LEVEL\_H. +## Champs + +| Champ | Description | +| --- | --- | +| [LEVEL_H](#LEVEL-H) | Le niveau de correction d'erreurs H peut être appliqué aux codes-barres QR et RectMicroQR. | +| [LEVEL_L](#LEVEL-L) | Le niveau de correction d'erreurs L peut être appliqué aux codes-barres QR et MicroQR. | +| [LEVEL_M](#LEVEL-M) | Le niveau de correction d'erreurs M peut être appliqué aux codes-barres QR, aux codes-barres RectMicroQR et aux codes-barres MicroQR avec des versions de M2 à M4. | +| [LEVEL_Q](#LEVEL-Q) | Le niveau de correction d'erreurs Q peut être appliqué aux codes-barres QR et aux codes-barres MicroQR avec la version M4. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromValue(int value)](#fromValue-int-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### LEVEL_H {#LEVEL-H} +``` +public static final QRErrorLevel LEVEL_H +``` + + +Le niveau de correction d'erreurs H peut être appliqué aux codes-barres QR et RectMicroQR. Permet de récupérer 30 % du texte du code. + +### LEVEL_L {#LEVEL-L} +``` +public static final QRErrorLevel LEVEL_L +``` + + +Le niveau de correction d'erreurs L peut être appliqué aux codes-barres QR et MicroQR. Permet de récupérer 7 % du texte du code. + +### LEVEL_M {#LEVEL-M} +``` +public static final QRErrorLevel LEVEL_M +``` + + +Le niveau de correction d'erreurs M peut être appliqué aux codes-barres QR, aux codes-barres RectMicroQR et aux codes-barres MicroQR avec des versions de M2 à M4. Permet de récupérer 15 % du texte du code. + +### LEVEL_Q {#LEVEL-Q} +``` +public static final QRErrorLevel LEVEL_Q +``` + + +Le niveau de correction d'erreurs Q peut être appliqué aux codes-barres QR et aux codes-barres MicroQR avec la version M4. Permet de récupérer 25 % du texte du code. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromValue(int value) {#fromValue-int-} +``` +public static QRErrorLevel fromValue(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static QRErrorLevel valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) +### values() {#values--} +``` +public static QRErrorLevel[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.QRErrorLevel[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/qrextcodetextbuilder/_index.md b/french/androidjava/com.aspose.barcode.generation/qrextcodetextbuilder/_index.md new file mode 100644 index 000000000..3ccc43de9 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/qrextcodetextbuilder/_index.md @@ -0,0 +1,232 @@ +--- +title: QrExtCodetextBuilder +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Générateur de texte codé étendu pour les codes-barres QR 2D en mode ExtendedCodetext du QrEncodeMode. Utilisez la propriété TwoDDisplayText de BarcodeGenerator pour définir le texte visible en supprimant les caractères de gestion. +type: docs +weight: 63 +url: /fr/androidjava/com.aspose.barcode.generation/qrextcodetextbuilder/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.generation.ExtCodetextBuilder](../../com.aspose.barcode.generation/extcodetextbuilder) +``` +public class QrExtCodetextBuilder extends ExtCodetextBuilder +``` + +Extended codetext generator for 2D QR barcodes for ExtendedCodetext Mode of QrEncodeMode Use TwoDDisplayText property of BarcodeGenerator to set visible text to removing managing characters. This sample shows how to use FNC1 first position in Extended Mode: QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); lTextBuilder.addFNC1FirstPosition(); lTextBuilder.addPlainCodetext("000%89%%0"); lTextBuilder.addFNC1GroupSeparator(); lTextBuilder.addPlainCodetext("12345"); //generate codetext String lCodetext = lTextBuilder.getExtendedCodetext(); //generate BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); generator.getParameters().getBarcode().getQR().setQrEncodeMode(QREncodeMode.ExtendedCodetext); generator.getParameters().getBarcode().getQR().setQrErrorLevel(QRErrorLevel.LevelL); generator.setCodeText(lCodetext); generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); generator.save("test.bmp"); This sample shows how to use FNC1 second position in Extended Mode. //create codetext QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); TextBuilder.addFNC1SecondPosition("12"); TextBuilder.addPlainCodetext("TRUE3456"); //generate codetext String lCodetext = lTextBuilder.getExtendedCodetext(); //generate BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.ExtendedCodetext); generator.getParameters().getBarcode().getQR().setErrorLevel(QRErrorLevel.LevelL); generator.setCodeText(lCodetext); generatorgenerator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); generator.save("test.bmp"); This sample shows how to use multi ECI mode in Extended Mode. //create codetext QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); TextBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); TextBuilder.addECICodetext(ECIEncodings.UTF8, "Right"); TextBuilder.addECICodetext(ECIEncodings.UTF16BE, "Power"); TextBuilder.addPlainCodetext(@"t\\e\\\\st"); //generate codetext String lCodetext = lTextBuilder.getExtendedCodetext(); //generate BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.ExtendedCodetext); generator.getParameters().getBarcode().getQR().setErrorLevel(QRErrorLevel.LevelL); generator.setCodeText(lCodetext); generatorgenerator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); generator.save("test.bmp"); +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [QrExtCodetextBuilder()](#QrExtCodetextBuilder--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addECICodetext(int ECIEncoding, String codetext)](#addECICodetext-int-java.lang.String-) | Ajoute du codetext avec un identifiant de canal étendu. | +| [addFNC1FirstPosition()](#addFNC1FirstPosition--) | Adds FNC1 in first position to the extended codetext items | +| [addFNC1GroupSeparator()](#addFNC1GroupSeparator--) | Adds Group Separator (GS - '\\\\u001D') to the extended codetext items | +| [addFNC1SecondPosition(String codetext)](#addFNC1SecondPosition-java.lang.String-) | Adds FNC1 in second position to the extended codetext items | +| [addPlainCodetext(String codetext)](#addPlainCodetext-java.lang.String-) | Ajoute du texte de code simple aux éléments de texte de code étendu | +| [clear()](#clear--) | Efface les éléments de texte de code étendu | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getExtendedCodetext()](#getExtendedCodetext--) | Génère du texte de code étendu à partir de la liste de texte de code étendu. | +| [hashCode()](#hashCode--) | | +| [isNeedToShieldItemFromPrevECI(int Index)](#isNeedToShieldItemFromPrevECI-int-) | Vérifie la nécessité de protéger l'élément précédent par "\\000000" | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### QrExtCodetextBuilder() {#QrExtCodetextBuilder--} +``` +public QrExtCodetextBuilder() +``` + + +### addECICodetext(int ECIEncoding, String codetext) {#addECICodetext-int-java.lang.String-} +``` +public void addECICodetext(int ECIEncoding, String codetext) +``` + + +Ajoute du codetext avec un identifiant de canal étendu. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| ECIEncoding | int | Identifiant de canal étendu | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu avec l'identifiant de canal étendu | + +### addFNC1FirstPosition() {#addFNC1FirstPosition--} +``` +public void addFNC1FirstPosition() +``` + + +Adds FNC1 in first position to the extended codetext items + +### addFNC1GroupSeparator() {#addFNC1GroupSeparator--} +``` +public void addFNC1GroupSeparator() +``` + + +Adds Group Separator (GS - '\\\\u001D') to the extended codetext items + +### addFNC1SecondPosition(String codetext) {#addFNC1SecondPosition-java.lang.String-} +``` +public void addFNC1SecondPosition(String codetext) +``` + + +Adds FNC1 in second position to the extended codetext items + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte de code | java.lang.String | Valeur du FNC1 dans la deuxième position | + +### addPlainCodetext(String codetext) {#addPlainCodetext-java.lang.String-} +``` +public void addPlainCodetext(String codetext) +``` + + +Ajoute du texte de code simple aux éléments de texte de code étendu + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte de code | java.lang.String | Texte de code en Unicode à ajouter en tant qu'élément de texte de code étendu | + +### clear() {#clear--} +``` +public void clear() +``` + + +Efface les éléments de texte de code étendu + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getExtendedCodetext() {#getExtendedCodetext--} +``` +public String getExtendedCodetext() +``` + + +Génère du texte de code étendu à partir de la liste de texte de code étendu. + +**Returns:** +java.lang.String - Texte de code étendu en tant que chaîne +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isNeedToShieldItemFromPrevECI(int Index) {#isNeedToShieldItemFromPrevECI-int-} +``` +public boolean isNeedToShieldItemFromPrevECI(int Index) +``` + + +Vérifie la nécessité de protéger l'élément précédent par "\\000000" + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| Indice | int | Indice dans m\_List | + +**Returns:** +booléen - Nécessité de protéger +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/qrparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/qrparameters/_index.md new file mode 100644 index 000000000..10c815e85 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/qrparameters/_index.md @@ -0,0 +1,393 @@ +--- +title: QrParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres QR. +type: docs +weight: 64 +url: /fr/androidjava/com.aspose.barcode.generation/qrparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class QrParameters +``` + +Paramètres QR. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio()](#getAspectRatio--) | Ratio hauteur/largeur du module du code-barres 2D. | +| [getClass()](#getClass--) | | +| [getECIEncoding()](#getECIEncoding--) | Identifiants d'interprétation de canal étendu. | +| [getEncodeMode()](#getEncodeMode--) | Type de symbologie QR du mode d'encodage du code-barres. | +| [getErrorLevel()](#getErrorLevel--) | Niveau de correction d'erreurs Reed-Solomon pour les codes-barres QR, MicroQR et RectMicroQR. | +| [getMicroQRVersion()](#getMicroQRVersion--) | Version du MicroQR Code. | +| [getQrECIEncoding()](#getQrECIEncoding--) | Identifiants d'interprétation de canal étendu. | +| [getQrEncodeMode()](#getQrEncodeMode--) | Type de symbologie QR du mode d'encodage du code-barres. | +| [getQrEncodeType()](#getQrEncodeType--) | Mode de sélection QR / MicroQR. | +| [getQrErrorLevel()](#getQrErrorLevel--) | Niveau de correction d'erreurs Reed-Solomon pour les codes-barres QR, MicroQR et RectMicroQR. | +| [getQrVersion()](#getQrVersion--) | Version du code QR. De Version1 à Version40. | +| [getRectMicroQrVersion()](#getRectMicroQrVersion--) | Version du RectMicroQR Code. | +| [getStructuredAppend()](#getStructuredAppend--) | Paramètres d'ajout structuré QR. | +| [getVersion()](#getVersion--) | Version du code QR. De Version1 à Version40. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAspectRatio(float value)](#setAspectRatio-float-) | Ratio hauteur/largeur du module du code-barres 2D. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Identifiants d'interprétation de canal étendu. | +| [setEncodeMode(QREncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.QREncodeMode-) | Type de symbologie QR du mode d'encodage du code-barres. | +| [setErrorLevel(QRErrorLevel value)](#setErrorLevel-com.aspose.barcode.generation.QRErrorLevel-) | Niveau de correction d'erreurs Reed-Solomon pour les codes-barres QR, MicroQR et RectMicroQR. | +| [setMicroQRVersion(MicroQRVersion value)](#setMicroQRVersion-com.aspose.barcode.generation.MicroQRVersion-) | Version du MicroQR Code. | +| [setQrEncodeType(QREncodeType value)](#setQrEncodeType-com.aspose.barcode.generation.QREncodeType-) | Mode de sélection QR / MicroQR. | +| [setRectMicroQrVersion(RectMicroQRVersion value)](#setRectMicroQrVersion-com.aspose.barcode.generation.RectMicroQRVersion-) | Version du RectMicroQR Code. | +| [setStructuredAppend(QrStructuredAppendParameters value)](#setStructuredAppend-com.aspose.barcode.generation.QrStructuredAppendParameters-) | Paramètres d'ajout structuré QR. | +| [setVersion(QRVersion value)](#setVersion-com.aspose.barcode.generation.QRVersion-) | Version du code QR. De Version1 à Version40. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible par l'homme de cet [QrParameters](../../com.aspose.barcode.generation/qrparameters). | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAspectRatio() {#getAspectRatio--} +``` +public final float getAspectRatio() +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Returns:** +float +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Identifiants d'Interprétation de Canal Étendu. Ils sont utilisés pour indiquer au lecteur de code-barres les détails concernant les références utilisées pour encoder les données dans le symbole. L'implémentation actuelle comprend tous les encodages de jeux de caractères bien connus. Non pris en charge par MicroQR. + +**Returns:** +int +### getEncodeMode() {#getEncodeMode--} +``` +public final QREncodeMode getEncodeMode() +``` + + +Type de symbologie QR du mode d'encodage du code-barres. Valeur par défaut : QREncodeMode.Auto. + +**Returns:** +[QREncodeMode](../../com.aspose.barcode.generation/qrencodemode) +### getErrorLevel() {#getErrorLevel--} +``` +public final QRErrorLevel getErrorLevel() +``` + + +Niveau de correction d'erreurs Reed-Solomon pour les codes-barres QR, MicroQR et RectMicroQR. Du bas au haut : LevelL, LevelM, LevelQ, LevelH. Voir QRErrorLevel. + +**Returns:** +[QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) +### getMicroQRVersion() {#getMicroQRVersion--} +``` +public final MicroQRVersion getMicroQRVersion() +``` + + +Version du code MicroQR. De la version M1 à la version M4. La valeur par défaut est MicroQRVersion.Auto. + +**Returns:** +[MicroQRVersion](../../com.aspose.barcode.generation/microqrversion) +### getQrECIEncoding() {#getQrECIEncoding--} +``` +public final int getQrECIEncoding() +``` + + +Identifiants d'Interprétation de Canal Étendu. Ils sont utilisés pour indiquer au lecteur de code-barres les détails concernant les références utilisées pour encoder les données dans le symbole. L'implémentation actuelle comprend tous les encodages de jeux de caractères bien connus. Non pris en charge par MicroQR. + +**Returns:** +int +### getQrEncodeMode() {#getQrEncodeMode--} +``` +public final QREncodeMode getQrEncodeMode() +``` + + +Type de symbologie QR du mode d'encodage du code-barres. Valeur par défaut : QREncodeMode.Auto. + +**Returns:** +[QREncodeMode](../../com.aspose.barcode.generation/qrencodemode) +### getQrEncodeType() {#getQrEncodeType--} +``` +public final QREncodeType getQrEncodeType() +``` + + +Mode de sélection QR / MicroQR. Sélectionnez ForceQR pour les symboles QR standard, Auto pour MicroQR. + +**Returns:** +[QREncodeType](../../com.aspose.barcode.generation/qrencodetype) +### getQrErrorLevel() {#getQrErrorLevel--} +``` +public final QRErrorLevel getQrErrorLevel() +``` + + +Niveau de correction d'erreurs Reed-Solomon pour les codes-barres QR, MicroQR et RectMicroQR. Du bas au haut : LevelL, LevelM, LevelQ, LevelH. Voir QRErrorLevel. + +**Returns:** +[QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) +### getQrVersion() {#getQrVersion--} +``` +public final QRVersion getQrVersion() +``` + + +Version du code QR. De Version1 à Version40. La valeur par défaut est QRVersion.Auto. + +**Returns:** +[QRVersion](../../com.aspose.barcode.generation/qrversion) +### getRectMicroQrVersion() {#getRectMicroQrVersion--} +``` +public final RectMicroQRVersion getRectMicroQrVersion() +``` + + +Version du code RectMicroQR. De la version R7x59 à la version R17x139. La valeur par défaut est RectMicroQRVersion.Auto. + +**Returns:** +[RectMicroQRVersion](../../com.aspose.barcode.generation/rectmicroqrversion) +### getStructuredAppend() {#getStructuredAppend--} +``` +public final QrStructuredAppendParameters getStructuredAppend() +``` + + +Paramètres d'ajout structuré QR. Le mode d'ajout structuré n'est pas pris en charge par les codes-barres MicroQR et RectMicroQR. + +**Returns:** +[QrStructuredAppendParameters](../../com.aspose.barcode.generation/qrstructuredappendparameters) +### getVersion() {#getVersion--} +``` +public final QRVersion getVersion() +``` + + +Version du code QR. De Version1 à Version40. La valeur par défaut est QRVersion.Auto. + +**Returns:** +[QRVersion](../../com.aspose.barcode.generation/qrversion) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAspectRatio(float value) {#setAspectRatio-float-} +``` +public final void setAspectRatio(float value) +``` + + +Ratio hauteur/largeur du module du code-barres 2D. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Identifiants d'Interprétation de Canal Étendu. Ils sont utilisés pour indiquer au lecteur de code-barres les détails concernant les références utilisées pour encoder les données dans le symbole. L'implémentation actuelle comprend tous les encodages de jeux de caractères bien connus. Non pris en charge par MicroQR. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setEncodeMode(QREncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.QREncodeMode-} +``` +public final void setEncodeMode(QREncodeMode value) +``` + + +Type de symbologie QR du mode d'encodage du code-barres. Valeur par défaut : QREncodeMode.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [QREncodeMode](../../com.aspose.barcode.generation/qrencodemode) | | + +### setErrorLevel(QRErrorLevel value) {#setErrorLevel-com.aspose.barcode.generation.QRErrorLevel-} +``` +public final void setErrorLevel(QRErrorLevel value) +``` + + +Niveau de correction d'erreurs Reed-Solomon pour les codes-barres QR, MicroQR et RectMicroQR. Du bas au haut : LevelL, LevelM, LevelQ, LevelH. Voir QRErrorLevel. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) | | + +### setMicroQRVersion(MicroQRVersion value) {#setMicroQRVersion-com.aspose.barcode.generation.MicroQRVersion-} +``` +public final void setMicroQRVersion(MicroQRVersion value) +``` + + +Version du code MicroQR. De la version M1 à la version M4. La valeur par défaut est MicroQRVersion.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [MicroQRVersion](../../com.aspose.barcode.generation/microqrversion) | | + +### setQrEncodeType(QREncodeType value) {#setQrEncodeType-com.aspose.barcode.generation.QREncodeType-} +``` +public final void setQrEncodeType(QREncodeType value) +``` + + +Mode de sélection QR / MicroQR. Sélectionnez ForceQR pour les symboles QR standard, Auto pour MicroQR. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [QREncodeType](../../com.aspose.barcode.generation/qrencodetype) | | + +### setRectMicroQrVersion(RectMicroQRVersion value) {#setRectMicroQrVersion-com.aspose.barcode.generation.RectMicroQRVersion-} +``` +public final void setRectMicroQrVersion(RectMicroQRVersion value) +``` + + +Version du code RectMicroQR. De la version R7x59 à la version R17x139. La valeur par défaut est RectMicroQRVersion.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [RectMicroQRVersion](../../com.aspose.barcode.generation/rectmicroqrversion) | | + +### setStructuredAppend(QrStructuredAppendParameters value) {#setStructuredAppend-com.aspose.barcode.generation.QrStructuredAppendParameters-} +``` +public final void setStructuredAppend(QrStructuredAppendParameters value) +``` + + +Paramètres d'ajout structuré QR. Le mode d'ajout structuré n'est pas pris en charge par les codes-barres MicroQR et RectMicroQR. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [QrStructuredAppendParameters](../../com.aspose.barcode.generation/qrstructuredappendparameters) | | + +### setVersion(QRVersion value) {#setVersion-com.aspose.barcode.generation.QRVersion-} +``` +public final void setVersion(QRVersion value) +``` + + +Version du code QR. De Version1 à Version40. La valeur par défaut est QRVersion.Auto. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [QRVersion](../../com.aspose.barcode.generation/qrversion) | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible par l'homme de cet [QrParameters](../../com.aspose.barcode.generation/qrparameters). + +**Returns:** +java.lang.String - Une chaîne qui représente ce [QrParameters](../../com.aspose.barcode.generation/qrparameters). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/qrstructuredappendparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/qrstructuredappendparameters/_index.md new file mode 100644 index 000000000..a8e85bb85 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/qrstructuredappendparameters/_index.md @@ -0,0 +1,199 @@ +--- +title: QrStructuredAppendParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres d'ajout structuré QR. +type: docs +weight: 65 +url: /fr/androidjava/com.aspose.barcode.generation/qrstructuredappendparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class QrStructuredAppendParameters +``` + +Paramètres d'ajout structuré QR. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getParityByte()](#getParityByte--) | Obtient les données de parité du mode d'ajout structuré QR. | +| [getSequenceIndicator()](#getSequenceIndicator--) | Obtient l'index du code-barres en mode QR structured append. | +| [getTotalCount()](#getTotalCount--) | Obtient la quantité de codes-barres en mode QR structured append. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setParityByte(byte value)](#setParityByte-byte-) | Définit les données de parité du mode d'ajout structuré QR. | +| [setSequenceIndicator(int value)](#setSequenceIndicator-int-) | Définit l'index du code‑barres du mode d'ajout structuré QR. | +| [setTotalCount(int value)](#setTotalCount-int-) | Définit la quantité de codes‑barres du mode d'ajout structuré QR. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getParityByte() {#getParityByte--} +``` +public byte getParityByte() +``` + + +Obtient les données de parité du mode d'ajout structuré QR. + +**Returns:** +byte +### getSequenceIndicator() {#getSequenceIndicator--} +``` +public int getSequenceIndicator() +``` + + +Obtient l'index du code‑barres du mode d'ajout structuré QR. L'index commence à 0. + +**Returns:** +int +### getTotalCount() {#getTotalCount--} +``` +public int getTotalCount() +``` + + +Obtient la quantité de codes‑barres du mode d'ajout structuré QR. La valeur maximale est 16. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setParityByte(byte value) {#setParityByte-byte-} +``` +public void setParityByte(byte value) +``` + + +Définit les données de parité du mode d'ajout structuré QR. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | byte | | + +### setSequenceIndicator(int value) {#setSequenceIndicator-int-} +``` +public void setSequenceIndicator(int value) +``` + + +Définit l'index du code‑barres du mode d'ajout structuré QR. L'index commence à 0. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setTotalCount(int value) {#setTotalCount-int-} +``` +public void setTotalCount(int value) +``` + + +Définit la quantité de codes‑barres du mode d'ajout structuré QR. La valeur maximale est 16. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/qrversion/_index.md b/french/androidjava/com.aspose.barcode.generation/qrversion/_index.md new file mode 100644 index 000000000..61d0381be --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/qrversion/_index.md @@ -0,0 +1,664 @@ +--- +title: QRVersion +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Version du QR Code. +type: docs +weight: 105 +url: /fr/androidjava/com.aspose.barcode.generation/qrversion/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum QRVersion extends Enum +``` + +Version du code QR. De Version1 à Version40 pour le code QR et de M1 à M4 pour MicroQr. +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Spécifie de sélectionner automatiquement la meilleure version pour le QR. | +| [VERSION_01](#VERSION-01) | Spécifie la version 1 avec 21 x 21 modules. | +| [VERSION_02](#VERSION-02) | Spécifie la version 2 avec 25 x 25 modules. | +| [VERSION_03](#VERSION-03) | Spécifie la version 3 avec 29 x 29 modules. | +| [VERSION_04](#VERSION-04) | Spécifie la version 4 avec 33 x 33 modules. | +| [VERSION_05](#VERSION-05) | Spécifie la version 5 avec 37 x 37 modules. | +| [VERSION_06](#VERSION-06) | Spécifie la version 6 avec 41 x 41 modules. | +| [VERSION_07](#VERSION-07) | Spécifie la version 7 avec 45 x 45 modules. | +| [VERSION_08](#VERSION-08) | Spécifie la version 8 avec 49 x 49 modules. | +| [VERSION_09](#VERSION-09) | Spécifie la version 9 avec 53 x 53 modules. | +| [VERSION_10](#VERSION-10) | Spécifie la version 10 avec 57 x 57 modules. | +| [VERSION_11](#VERSION-11) | Spécifie la version 11 avec 61 x 61 modules. | +| [VERSION_12](#VERSION-12) | Spécifie la version 12 avec 65 x 65 modules. | +| [VERSION_13](#VERSION-13) | Spécifie la version 13 avec 69 x 69 modules. | +| [VERSION_14](#VERSION-14) | Spécifie la version 14 avec 73 x 73 modules. | +| [VERSION_15](#VERSION-15) | Spécifie la version 15 avec 77 x 77 modules. | +| [VERSION_16](#VERSION-16) | Spécifie la version 16 avec 81 x 81 modules. | +| [VERSION_17](#VERSION-17) | Spécifie la version 17 avec 85 x 85 modules. | +| [VERSION_18](#VERSION-18) | Spécifie la version 18 avec 89 x 89 modules. | +| [VERSION_19](#VERSION-19) | Spécifie la version 19 avec 93 x 93 modules. | +| [VERSION_20](#VERSION-20) | Spécifie la version 20 avec 97 x 97 modules. | +| [VERSION_21](#VERSION-21) | Spécifie la version 21 avec 101 x 101 modules. | +| [VERSION_22](#VERSION-22) | Spécifie la version 22 avec 105 x 105 modules. | +| [VERSION_23](#VERSION-23) | Spécifie la version 23 avec 109 x 109 modules. | +| [VERSION_24](#VERSION-24) | Spécifie la version 24 avec 113 x 113 modules. | +| [VERSION_25](#VERSION-25) | Spécifie la version 25 avec 117 x 117 modules. | +| [VERSION_26](#VERSION-26) | Spécifie la version 26 avec 121 x 121 modules. | +| [VERSION_27](#VERSION-27) | Spécifie la version 27 avec 125 x 125 modules. | +| [VERSION_28](#VERSION-28) | Spécifie la version 28 avec 129 x 129 modules. | +| [VERSION_29](#VERSION-29) | Spécifie la version 29 avec 133 x 133 modules. | +| [VERSION_30](#VERSION-30) | Spécifie la version 30 avec 137 x 137 modules. | +| [VERSION_31](#VERSION-31) | Spécifie la version 31 avec 141 x 141 modules. | +| [VERSION_32](#VERSION-32) | Spécifie la version 32 avec 145 x 145 modules. | +| [VERSION_33](#VERSION-33) | Spécifie la version 33 avec 149 x 149 modules. | +| [VERSION_34](#VERSION-34) | Spécifie la version 34 avec 153 x 153 modules. | +| [VERSION_35](#VERSION-35) | Spécifie la version 35 avec 157 x 157 modules. | +| [VERSION_36](#VERSION-36) | Spécifie la version 36 avec 161 x 161 modules. | +| [VERSION_37](#VERSION-37) | Spécifie la version 37 avec 165 x 165 modules. | +| [VERSION_38](#VERSION-38) | Spécifie la version 38 avec 169 x 169 modules. | +| [VERSION_39](#VERSION-39) | Spécifie la version 39 avec 173 x 173 modules. | +| [VERSION_40](#VERSION-40) | Spécifie la version 40 avec 177 x 177 modules. | +| [VERSION_M1](#VERSION-M1) | Spécifie la version M1 pour Micro QR avec des modules 11 x 11. | +| [VERSION_M2](#VERSION-M2) | Spécifie la version M2 pour Micro QR avec des modules 13 x 13. | +| [VERSION_M3](#VERSION-M3) | Spécifie la version M3 pour Micro QR avec des modules 15 x 15. | +| [VERSION_M4](#VERSION-M4) | Spécifie la version M4 pour Micro QR avec des modules 17 x 17. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromValue(int value)](#fromValue-int-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final QRVersion AUTO +``` + + +Spécifie de sélectionner automatiquement la meilleure version pour QR. C’est la valeur par défaut. + +### VERSION_01 {#VERSION-01} +``` +public static final QRVersion VERSION_01 +``` + + +Spécifie la version 1 avec 21 x 21 modules. + +### VERSION_02 {#VERSION-02} +``` +public static final QRVersion VERSION_02 +``` + + +Spécifie la version 2 avec 25 x 25 modules. + +### VERSION_03 {#VERSION-03} +``` +public static final QRVersion VERSION_03 +``` + + +Spécifie la version 3 avec 29 x 29 modules. + +### VERSION_04 {#VERSION-04} +``` +public static final QRVersion VERSION_04 +``` + + +Spécifie la version 4 avec 33 x 33 modules. + +### VERSION_05 {#VERSION-05} +``` +public static final QRVersion VERSION_05 +``` + + +Spécifie la version 5 avec 37 x 37 modules. + +### VERSION_06 {#VERSION-06} +``` +public static final QRVersion VERSION_06 +``` + + +Spécifie la version 6 avec 41 x 41 modules. + +### VERSION_07 {#VERSION-07} +``` +public static final QRVersion VERSION_07 +``` + + +Spécifie la version 7 avec 45 x 45 modules. + +### VERSION_08 {#VERSION-08} +``` +public static final QRVersion VERSION_08 +``` + + +Spécifie la version 8 avec 49 x 49 modules. + +### VERSION_09 {#VERSION-09} +``` +public static final QRVersion VERSION_09 +``` + + +Spécifie la version 9 avec 53 x 53 modules. + +### VERSION_10 {#VERSION-10} +``` +public static final QRVersion VERSION_10 +``` + + +Spécifie la version 10 avec 57 x 57 modules. + +### VERSION_11 {#VERSION-11} +``` +public static final QRVersion VERSION_11 +``` + + +Spécifie la version 11 avec 61 x 61 modules. + +### VERSION_12 {#VERSION-12} +``` +public static final QRVersion VERSION_12 +``` + + +Spécifie la version 12 avec 65 x 65 modules. + +### VERSION_13 {#VERSION-13} +``` +public static final QRVersion VERSION_13 +``` + + +Spécifie la version 13 avec 69 x 69 modules. + +### VERSION_14 {#VERSION-14} +``` +public static final QRVersion VERSION_14 +``` + + +Spécifie la version 14 avec 73 x 73 modules. + +### VERSION_15 {#VERSION-15} +``` +public static final QRVersion VERSION_15 +``` + + +Spécifie la version 15 avec 77 x 77 modules. + +### VERSION_16 {#VERSION-16} +``` +public static final QRVersion VERSION_16 +``` + + +Spécifie la version 16 avec 81 x 81 modules. + +### VERSION_17 {#VERSION-17} +``` +public static final QRVersion VERSION_17 +``` + + +Spécifie la version 17 avec 85 x 85 modules. + +### VERSION_18 {#VERSION-18} +``` +public static final QRVersion VERSION_18 +``` + + +Spécifie la version 18 avec 89 x 89 modules. + +### VERSION_19 {#VERSION-19} +``` +public static final QRVersion VERSION_19 +``` + + +Spécifie la version 19 avec 93 x 93 modules. + +### VERSION_20 {#VERSION-20} +``` +public static final QRVersion VERSION_20 +``` + + +Spécifie la version 20 avec 97 x 97 modules. + +### VERSION_21 {#VERSION-21} +``` +public static final QRVersion VERSION_21 +``` + + +Spécifie la version 21 avec 101 x 101 modules. + +### VERSION_22 {#VERSION-22} +``` +public static final QRVersion VERSION_22 +``` + + +Spécifie la version 22 avec 105 x 105 modules. + +### VERSION_23 {#VERSION-23} +``` +public static final QRVersion VERSION_23 +``` + + +Spécifie la version 23 avec 109 x 109 modules. + +### VERSION_24 {#VERSION-24} +``` +public static final QRVersion VERSION_24 +``` + + +Spécifie la version 24 avec 113 x 113 modules. + +### VERSION_25 {#VERSION-25} +``` +public static final QRVersion VERSION_25 +``` + + +Spécifie la version 25 avec 117 x 117 modules. + +### VERSION_26 {#VERSION-26} +``` +public static final QRVersion VERSION_26 +``` + + +Spécifie la version 26 avec 121 x 121 modules. + +### VERSION_27 {#VERSION-27} +``` +public static final QRVersion VERSION_27 +``` + + +Spécifie la version 27 avec 125 x 125 modules. + +### VERSION_28 {#VERSION-28} +``` +public static final QRVersion VERSION_28 +``` + + +Spécifie la version 28 avec 129 x 129 modules. + +### VERSION_29 {#VERSION-29} +``` +public static final QRVersion VERSION_29 +``` + + +Spécifie la version 29 avec 133 x 133 modules. + +### VERSION_30 {#VERSION-30} +``` +public static final QRVersion VERSION_30 +``` + + +Spécifie la version 30 avec 137 x 137 modules. + +### VERSION_31 {#VERSION-31} +``` +public static final QRVersion VERSION_31 +``` + + +Spécifie la version 31 avec 141 x 141 modules. + +### VERSION_32 {#VERSION-32} +``` +public static final QRVersion VERSION_32 +``` + + +Spécifie la version 32 avec 145 x 145 modules. + +### VERSION_33 {#VERSION-33} +``` +public static final QRVersion VERSION_33 +``` + + +Spécifie la version 33 avec 149 x 149 modules. + +### VERSION_34 {#VERSION-34} +``` +public static final QRVersion VERSION_34 +``` + + +Spécifie la version 34 avec 153 x 153 modules. + +### VERSION_35 {#VERSION-35} +``` +public static final QRVersion VERSION_35 +``` + + +Spécifie la version 35 avec 157 x 157 modules. + +### VERSION_36 {#VERSION-36} +``` +public static final QRVersion VERSION_36 +``` + + +Spécifie la version 36 avec 161 x 161 modules. + +### VERSION_37 {#VERSION-37} +``` +public static final QRVersion VERSION_37 +``` + + +Spécifie la version 37 avec 165 x 165 modules. + +### VERSION_38 {#VERSION-38} +``` +public static final QRVersion VERSION_38 +``` + + +Spécifie la version 38 avec 169 x 169 modules. + +### VERSION_39 {#VERSION-39} +``` +public static final QRVersion VERSION_39 +``` + + +Spécifie la version 39 avec 173 x 173 modules. + +### VERSION_40 {#VERSION-40} +``` +public static final QRVersion VERSION_40 +``` + + +Spécifie la version 40 avec 177 x 177 modules. + +### VERSION_M1 {#VERSION-M1} +``` +public static final QRVersion VERSION_M1 +``` + + +Spécifie la version M1 pour Micro QR avec des modules 11 x 11. + +### VERSION_M2 {#VERSION-M2} +``` +public static final QRVersion VERSION_M2 +``` + + +Spécifie la version M2 pour Micro QR avec des modules 13 x 13. + +### VERSION_M3 {#VERSION-M3} +``` +public static final QRVersion VERSION_M3 +``` + + +Spécifie la version M3 pour Micro QR avec des modules 15 x 15. + +### VERSION_M4 {#VERSION-M4} +``` +public static final QRVersion VERSION_M4 +``` + + +Spécifie la version M4 pour Micro QR avec des modules 17 x 17. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromValue(int value) {#fromValue-int-} +``` +public static QRVersion fromValue(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[QRVersion](../../com.aspose.barcode.generation/qrversion) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static QRVersion valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[QRVersion](../../com.aspose.barcode.generation/qrversion) +### values() {#values--} +``` +public static QRVersion[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.QRVersion[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/rectmicroqrversion/_index.md b/french/androidjava/com.aspose.barcode.generation/rectmicroqrversion/_index.md new file mode 100644 index 000000000..cf423e67c --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/rectmicroqrversion/_index.md @@ -0,0 +1,556 @@ +--- +title: RectMicroQRVersion +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Version du RectMicroQR Code. +type: docs +weight: 106 +url: /fr/androidjava/com.aspose.barcode.generation/rectmicroqrversion/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum RectMicroQRVersion extends Enum +``` + +Version du code RectMicroQR. De la version R7x43 à la version R17x139. +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Spécifie de sélectionner automatiquement la meilleure version pour RectMicroQR. | +| [R11x139](#R11x139) | Spécifie la version avec 11 x 139 modules. | +| [R11x27](#R11x27) | Spécifie la version avec 11 x 27 modules. | +| [R11x43](#R11x43) | Spécifie la version avec 11 x 43 modules. | +| [R11x59](#R11x59) | Spécifie la version avec 11 x 59 modules. | +| [R11x77](#R11x77) | Spécifie la version avec 11 x 77 modules. | +| [R11x99](#R11x99) | Spécifie la version avec 11 x 99 modules. | +| [R13x139](#R13x139) | Spécifie la version avec 13 x 139 modules. | +| [R13x27](#R13x27) | Spécifie la version avec 13 x 27 modules. | +| [R13x43](#R13x43) | Spécifie la version avec 13 x 43 modules. | +| [R13x59](#R13x59) | Spécifie la version avec 13 x 59 modules. | +| [R13x77](#R13x77) | Spécifie la version avec 13 x 77 modules. | +| [R13x99](#R13x99) | Spécifie la version avec 13 x 99 modules. | +| [R15x139](#R15x139) | Spécifie la version avec 15 x 139 modules. | +| [R15x43](#R15x43) | Spécifie la version avec 15 x 43 modules. | +| [R15x59](#R15x59) | Spécifie la version avec 15 x 59 modules. | +| [R15x77](#R15x77) | Spécifie la version avec 15 x 77 modules. | +| [R15x99](#R15x99) | Spécifie la version avec 15 x 99 modules. | +| [R17x139](#R17x139) | Spécifie la version avec 17 x 139 modules. | +| [R17x43](#R17x43) | Spécifie la version avec 17 x 43 modules. | +| [R17x59](#R17x59) | Spécifie la version avec 17 x 59 modules. | +| [R17x77](#R17x77) | Spécifie la version avec 17 x 77 modules. | +| [R17x99](#R17x99) | Spécifie la version avec 17 x 99 modules. | +| [R7x139](#R7x139) | Spécifie la version avec 7 x 139 modules. | +| [R7x43](#R7x43) | Spécifie la version avec 7 x 43 modules. | +| [R7x59](#R7x59) | Spécifie la version avec 7 x 59 modules. | +| [R7x77](#R7x77) | Spécifie la version avec 7 x 77 modules. | +| [R7x99](#R7x99) | Spécifie la version avec 7 x 99 modules. | +| [R9x139](#R9x139) | Spécifie la version avec 9 x 139 modules. | +| [R9x43](#R9x43) | Spécifie la version avec 9 x 43 modules. | +| [R9x59](#R9x59) | Spécifie la version avec 9 x 59 modules. | +| [R9x77](#R9x77) | Spécifie la version avec 9 x 77 modules. | +| [R9x99](#R9x99) | Spécifie la version avec 9 x 99 modules. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromValue(int value)](#fromValue-int-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final RectMicroQRVersion AUTO +``` + + +Spécifie de sélectionner automatiquement la meilleure version pour RectMicroQR. C’est la valeur par défaut. + +### R11x139 {#R11x139} +``` +public static final RectMicroQRVersion R11x139 +``` + + +Spécifie la version avec 11 x 139 modules. + +### R11x27 {#R11x27} +``` +public static final RectMicroQRVersion R11x27 +``` + + +Spécifie la version avec 11 x 27 modules. + +### R11x43 {#R11x43} +``` +public static final RectMicroQRVersion R11x43 +``` + + +Spécifie la version avec 11 x 43 modules. + +### R11x59 {#R11x59} +``` +public static final RectMicroQRVersion R11x59 +``` + + +Spécifie la version avec 11 x 59 modules. + +### R11x77 {#R11x77} +``` +public static final RectMicroQRVersion R11x77 +``` + + +Spécifie la version avec 11 x 77 modules. + +### R11x99 {#R11x99} +``` +public static final RectMicroQRVersion R11x99 +``` + + +Spécifie la version avec 11 x 99 modules. + +### R13x139 {#R13x139} +``` +public static final RectMicroQRVersion R13x139 +``` + + +Spécifie la version avec 13 x 139 modules. + +### R13x27 {#R13x27} +``` +public static final RectMicroQRVersion R13x27 +``` + + +Spécifie la version avec 13 x 27 modules. + +### R13x43 {#R13x43} +``` +public static final RectMicroQRVersion R13x43 +``` + + +Spécifie la version avec 13 x 43 modules. + +### R13x59 {#R13x59} +``` +public static final RectMicroQRVersion R13x59 +``` + + +Spécifie la version avec 13 x 59 modules. + +### R13x77 {#R13x77} +``` +public static final RectMicroQRVersion R13x77 +``` + + +Spécifie la version avec 13 x 77 modules. + +### R13x99 {#R13x99} +``` +public static final RectMicroQRVersion R13x99 +``` + + +Spécifie la version avec 13 x 99 modules. + +### R15x139 {#R15x139} +``` +public static final RectMicroQRVersion R15x139 +``` + + +Spécifie la version avec 15 x 139 modules. + +### R15x43 {#R15x43} +``` +public static final RectMicroQRVersion R15x43 +``` + + +Spécifie la version avec 15 x 43 modules. + +### R15x59 {#R15x59} +``` +public static final RectMicroQRVersion R15x59 +``` + + +Spécifie la version avec 15 x 59 modules. + +### R15x77 {#R15x77} +``` +public static final RectMicroQRVersion R15x77 +``` + + +Spécifie la version avec 15 x 77 modules. + +### R15x99 {#R15x99} +``` +public static final RectMicroQRVersion R15x99 +``` + + +Spécifie la version avec 15 x 99 modules. + +### R17x139 {#R17x139} +``` +public static final RectMicroQRVersion R17x139 +``` + + +Spécifie la version avec 17 x 139 modules. + +### R17x43 {#R17x43} +``` +public static final RectMicroQRVersion R17x43 +``` + + +Spécifie la version avec 17 x 43 modules. + +### R17x59 {#R17x59} +``` +public static final RectMicroQRVersion R17x59 +``` + + +Spécifie la version avec 17 x 59 modules. + +### R17x77 {#R17x77} +``` +public static final RectMicroQRVersion R17x77 +``` + + +Spécifie la version avec 17 x 77 modules. + +### R17x99 {#R17x99} +``` +public static final RectMicroQRVersion R17x99 +``` + + +Spécifie la version avec 17 x 99 modules. + +### R7x139 {#R7x139} +``` +public static final RectMicroQRVersion R7x139 +``` + + +Spécifie la version avec 7 x 139 modules. + +### R7x43 {#R7x43} +``` +public static final RectMicroQRVersion R7x43 +``` + + +Spécifie la version avec 7 x 43 modules. + +### R7x59 {#R7x59} +``` +public static final RectMicroQRVersion R7x59 +``` + + +Spécifie la version avec 7 x 59 modules. + +### R7x77 {#R7x77} +``` +public static final RectMicroQRVersion R7x77 +``` + + +Spécifie la version avec 7 x 77 modules. + +### R7x99 {#R7x99} +``` +public static final RectMicroQRVersion R7x99 +``` + + +Spécifie la version avec 7 x 99 modules. + +### R9x139 {#R9x139} +``` +public static final RectMicroQRVersion R9x139 +``` + + +Spécifie la version avec 9 x 139 modules. + +### R9x43 {#R9x43} +``` +public static final RectMicroQRVersion R9x43 +``` + + +Spécifie la version avec 9 x 43 modules. + +### R9x59 {#R9x59} +``` +public static final RectMicroQRVersion R9x59 +``` + + +Spécifie la version avec 9 x 59 modules. + +### R9x77 {#R9x77} +``` +public static final RectMicroQRVersion R9x77 +``` + + +Spécifie la version avec 9 x 77 modules. + +### R9x99 {#R9x99} +``` +public static final RectMicroQRVersion R9x99 +``` + + +Spécifie la version avec 9 x 99 modules. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromValue(int value) {#fromValue-int-} +``` +public static RectMicroQRVersion fromValue(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +**Returns:** +[RectMicroQRVersion](../../com.aspose.barcode.generation/rectmicroqrversion) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static RectMicroQRVersion valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[RectMicroQRVersion](../../com.aspose.barcode.generation/rectmicroqrversion) +### values() {#values--} +``` +public static RectMicroQRVersion[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.RectMicroQRVersion[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/stringalignment/_index.md b/french/androidjava/com.aspose.barcode.generation/stringalignment/_index.md new file mode 100644 index 000000000..d49223187 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/stringalignment/_index.md @@ -0,0 +1,273 @@ +--- +title: StringAlignment +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 107 +url: /fr/androidjava/com.aspose.barcode.generation/stringalignment/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum StringAlignment extends Enum +``` +## Champs + +| Champ | Description | +| --- | --- | +| [CENTER](#CENTER) | | +| [FAR](#FAR) | | +| [NEAR](#NEAR) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toAndroid()](#toAndroid--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CENTER {#CENTER} +``` +public static final StringAlignment CENTER +``` + + +### FAR {#FAR} +``` +public static final StringAlignment FAR +``` + + +### NEAR {#NEAR} +``` +public static final StringAlignment NEAR +``` + + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toAndroid() {#toAndroid--} +``` +public Layout.Alignment toAndroid() +``` + + + + +**Returns:** +android.text.Layout.Alignment +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static StringAlignment valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[StringAlignment](../../com.aspose.barcode.generation/stringalignment) +### values() {#values--} +``` +public static StringAlignment[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.StringAlignment[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/supplementparameters/_index.md b/french/androidjava/com.aspose.barcode.generation/supplementparameters/_index.md new file mode 100644 index 000000000..500c41bd5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/supplementparameters/_index.md @@ -0,0 +1,174 @@ +--- +title: SupplementParameters +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Paramètres de supplément. +type: docs +weight: 66 +url: /fr/androidjava/com.aspose.barcode.generation/supplementparameters/ +--- +**Inheritance:** +java.lang.Object +``` +public class SupplementParameters +``` + +Paramètres de supplément. Utilisé pour Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getSupplementData()](#getSupplementData--) | Données supplémentaires suivant le code-barres. | +| [getSupplementSpace()](#getSupplementSpace--) | Espace entre le BarCode principal et le BarCode supplémentaire en valeur Unit. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setSupplementData(String value)](#setSupplementData-java.lang.String-) | Données supplémentaires suivant le code-barres. | +| [setSupplementSpace(Unit value)](#setSupplementSpace-com.aspose.barcode.generation.Unit-) | Espace entre le BarCode principal et le BarCode supplémentaire en valeur Unit. | +| [toString()](#toString--) | Renvoie une représentation sous forme de chaîne lisible de cet SupplementParameters. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getSupplementData() {#getSupplementData--} +``` +public String getSupplementData() +``` + + +Données supplémentaires suivant le code-barres. + +**Returns:** +java.lang.String +### getSupplementSpace() {#getSupplementSpace--} +``` +public Unit getSupplementSpace() +``` + + +Espace entre le BarCode principal et le BarCode supplémentaire en valeur Unit. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setSupplementData(String value) {#setSupplementData-java.lang.String-} +``` +public void setSupplementData(String value) +``` + + +Données supplémentaires suivant le code-barres. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +### setSupplementSpace(Unit value) {#setSupplementSpace-com.aspose.barcode.generation.Unit-} +``` +public void setSupplementSpace(Unit value) +``` + + +Espace entre le BarCode principal et le BarCode supplémentaire en valeur Unit. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie une représentation sous forme de chaîne lisible de cet SupplementParameters. + +**Returns:** +java.lang.String - Une chaîne qui représente ce SupplementParameters. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/symbologyencodetype/_index.md b/french/androidjava/com.aspose.barcode.generation/symbologyencodetype/_index.md new file mode 100644 index 000000000..216b05c6a --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/symbologyencodetype/_index.md @@ -0,0 +1,246 @@ +--- +title: SymbologyEncodeType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Type d'encodage de la symbologie. +type: docs +weight: 67 +url: /fr/androidjava/com.aspose.barcode.generation/symbologyencodetype/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.generation.BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) +``` +public class SymbologyEncodeType extends BaseEncodeType +``` + +Type d'encodage de la symbologie. Voir EncodeTypes pour obtenir une instance. + +-------------------- + +> ``` +> Create symbology encode type +> +> SymbologyEncodeType symbologyType = EncodeTypes.GS_1_CODE_128 +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object other)](#equals-java.lang.Object-) | Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de BaseEncodeType. | +| [getClass()](#getClass--) | | +| [getClassification()](#getClassification--) | Obtient une classification de cette symbologie. | +| [getString()](#getString--) | Convertit l'instance de BaseEncodeType en sa représentation sous forme de chaîne équivalente. | +| [getString(BaseEncodeType instance)](#getString-com.aspose.barcode.generation.BaseEncodeType-) | Convertit l'instance de BaseEncodeType en sa représentation sous forme de chaîne équivalente. | +| [getTypeIndex()](#getTypeIndex--) | Obtient un index du type d'encodage | +| [getTypeName()](#getTypeName--) | Obtient un nom du type d'encodage | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cette instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [parse(String stringEncodeType)](#parse-java.lang.String-) | Convertit la représentation sous forme de chaîne du nom d'un BaseEncodeType en son instance. | +| [toString()](#toString--) | Renvoie le nom du BaseEncodeType donné sous forme de chaîne. | +| [tryParse(String parsingType, BaseEncodeType[] result)](#tryParse-java.lang.String-com.aspose.barcode.generation.BaseEncodeType---) | Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. | +| [tryParse(String parsingType, SymbologyEncodeType[] result)](#tryParse-java.lang.String-com.aspose.barcode.generation.SymbologyEncodeType---) | Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object other) {#equals-java.lang.Object-} +``` +public boolean equals(Object other) +``` + + +Renvoie une valeur indiquant si cette instance est égale à une valeur spécifiée de BaseEncodeType. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| autre | java.lang.Object | Une valeur BaseEncodeType à comparer à cette instance. | + +**Returns:** +boolean - **true** si obj a la même valeur que cette instance ; sinon, **false** . +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getClassification() {#getClassification--} +``` +public BarcodeClassifications getClassification() +``` + + +Obtient une classification de cette symbologie. + +**Returns:** +[BarcodeClassifications](../../com.aspose.barcode.generation/barcodeclassifications) +### getString() {#getString--} +``` +public String getString() +``` + + +Convertit l'instance de BaseEncodeType en sa représentation sous forme de chaîne équivalente. Le format de la chaîne est : "Index:0; Name:Codabar". + +**Returns:** +java.lang.String - Une chaîne représentant la valeur complète du type d'encodage +### getString(BaseEncodeType instance) {#getString-com.aspose.barcode.generation.BaseEncodeType-} +``` +public static String getString(BaseEncodeType instance) +``` + + +Convertit l'instance de BaseEncodeType en sa représentation sous forme de chaîne équivalente. Le format de la chaîne est : "Index:-1; Name:None". + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| instance | [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) | L'instance de BaseEncodeType à convertir | + +**Returns:** +java.lang.String - Une chaîne représentant la valeur complète du type d'encodage donné +### getTypeIndex() {#getTypeIndex--} +``` +public short getTypeIndex() +``` + + +Obtient un index du type d'encodage + +**Returns:** +short +### getTypeName() {#getTypeName--} +``` +public String getTypeName() +``` + + +Obtient un nom du type d'encodage + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cette instance. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### parse(String stringEncodeType) {#parse-java.lang.String-} +``` +public static BaseEncodeType parse(String stringEncodeType) +``` + + +Convertit la représentation sous forme de chaîne du nom d'un BaseEncodeType en son instance. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| stringEncodeType | java.lang.String | Une chaîne contenant le nom d'un BaseEncodeType à convertir. | + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - the instance of , if conversion was successful; otherwise, it returns . +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie le nom du BaseEncodeType donné sous forme de chaîne. + +**Returns:** +java.lang.String - Une chaîne représentant le nom du type d'encodage +### tryParse(String parsingType, BaseEncodeType[] result) {#tryParse-java.lang.String-com.aspose.barcode.generation.BaseEncodeType---} +``` +public static boolean tryParse(String parsingType, BaseEncodeType[] result) +``` + + +Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. La valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne au format "Index:-1; Name:None" à convertir. | +| | result | [BaseEncodeType\[\]](../../com.aspose.barcode.generation/baseencodetype) | Un SingleEncodeType réel est renvoyé lorsque la conversion s'est terminée avec succès ; | + +sinon il renvoie null. | + +**Returns:** +boolean - **true** si s a été converti avec succès ; sinon, **false** . +### tryParse(String parsingType, SymbologyEncodeType[] result) {#tryParse-java.lang.String-com.aspose.barcode.generation.SymbologyEncodeType---} +``` +public static boolean tryParse(String parsingType, SymbologyEncodeType[] result) +``` + + +Convertit la représentation sous forme de chaîne d'un BaseEncodeType en son instance. La valeur de retour indique si la conversion a réussi ou échoué. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | Une chaîne au format "Index:-1; Name:None" à convertir. | +| | result | [SymbologyEncodeType\[\]](../../com.aspose.barcode.generation/symbologyencodetype) | Un SingleEncodeType réel est renvoyé lorsque la conversion s'est terminée avec succès ; | + +sinon il renvoie null. | + +**Returns:** +boolean - **true** si s a été converti avec succès ; sinon, **false** . +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/textalignment/_index.md b/french/androidjava/com.aspose.barcode.generation/textalignment/_index.md new file mode 100644 index 000000000..cf557f07a --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/textalignment/_index.md @@ -0,0 +1,270 @@ +--- +title: TextAlignment +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Alignement du texte. +type: docs +weight: 108 +url: /fr/androidjava/com.aspose.barcode.generation/textalignment/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum TextAlignment extends Enum +``` + +Alignement du texte. +## Champs + +| Champ | Description | +| --- | --- | +| [CENTER](#CENTER) | Position centrale. | +| [LEFT](#LEFT) | Position gauche. | +| [RIGHT](#RIGHT) | Position droite. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CENTER {#CENTER} +``` +public static final TextAlignment CENTER +``` + + +Position centrale. + +### LEFT {#LEFT} +``` +public static final TextAlignment LEFT +``` + + +Position gauche. + +### RIGHT {#RIGHT} +``` +public static final TextAlignment RIGHT +``` + + +Position droite. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static TextAlignment valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[TextAlignment](../../com.aspose.barcode.generation/textalignment) +### values() {#values--} +``` +public static TextAlignment[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.TextAlignment[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/textmeasurer/_index.md b/french/androidjava/com.aspose.barcode.generation/textmeasurer/_index.md new file mode 100644 index 000000000..85658de64 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/textmeasurer/_index.md @@ -0,0 +1,227 @@ +--- +title: TextMeasurer +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Représente le mesureur de texte. +type: docs +weight: 68 +url: /fr/androidjava/com.aspose.barcode.generation/textmeasurer/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +com.aspose.barcode.internal.ITextMeasurer +``` +public class TextMeasurer implements ITextMeasurer +``` + +Représente le mesureur de texte. Implémentation Full Framework. TODO : mettre en cache le bitmap et les graphiques. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [TextMeasurer(float dpi, AntiAliasMode antiAliasMode)](#TextMeasurer-float-com.aspose.barcode.drawing.AntiAliasMode-) | Initialise une nouvelle instance de la classe TextMeasurer. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [dispose()](#dispose--) | Libère le mesureur et les ressources internes. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [measureCharacterRanges(String text, TextPaint font, System.Drawing.RectangleF rectangle, TextOptions textOptions)](#measureCharacterRanges-java.lang.String-android.text.TextPaint-com.aspose.ms.System.Drawing.RectangleF-com.aspose.barcode.drawing.TextOptions-) | Obtient les caractères, le dessin des rectangles, la résolution et le mode AntiAlias définis dans le constructeur. | +| [measureString(String str, float width, TextPaint font)](#measureString-java.lang.String-float-android.text.TextPaint-) | Mesure la chaîne avec la largeur et la police spécifiées. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [offsetRectangle(System.Drawing.RectangleF nativeRectangle, boolean isNoWrap, int verticalAlignment)](#offsetRectangle-com.aspose.ms.System.Drawing.RectangleF-boolean-int-) | | +| [reOffsetRectangle(System.Drawing.RectangleF symbolArea, System.Drawing.RectangleF nativeRectangle, System.Drawing.RectangleF offsetRectangle, int horisontalAlignment)](#reOffsetRectangle-com.aspose.ms.System.Drawing.RectangleF-com.aspose.ms.System.Drawing.RectangleF-com.aspose.ms.System.Drawing.RectangleF-int-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### TextMeasurer(float dpi, AntiAliasMode antiAliasMode) {#TextMeasurer-float-com.aspose.barcode.drawing.AntiAliasMode-} +``` +public TextMeasurer(float dpi, AntiAliasMode antiAliasMode) +``` + + +Initialise une nouvelle instance de la classe TextMeasurer. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dpi | float | DPI du canevas cible | +| antiAliasMode | com.aspose.barcode.drawing.AntiAliasMode | Mode d'anticrénelage du texte | + +### dispose() {#dispose--} +``` +public void dispose() +``` + + +Libère le mesureur et les ressources internes. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### measureCharacterRanges(String text, TextPaint font, System.Drawing.RectangleF rectangle, TextOptions textOptions) {#measureCharacterRanges-java.lang.String-android.text.TextPaint-com.aspose.ms.System.Drawing.RectangleF-com.aspose.barcode.drawing.TextOptions-} +``` +public System.Drawing.RectangleF[] measureCharacterRanges(String text, TextPaint font, System.Drawing.RectangleF rectangle, TextOptions textOptions) +``` + + +Obtient les caractères, le dessin des rectangles, la résolution et le mode AntiAlias définis dans le constructeur. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| texte | java.lang.String | mesure du texte | +| police | android.text.TextPaint | mesure de la police | +| rectangle | com.aspose.ms.System.Drawing.RectangleF | rectangle englobant | +| textOptions | com.aspose.barcode.drawing.TextOptions | alignement du texte | + +**Returns:** +com.aspose.ms.System.Drawing.RectangleF[] - rectangles des caractères +### measureString(String str, float width, TextPaint font) {#measureString-java.lang.String-float-android.text.TextPaint-} +``` +public System.Drawing.SizeF measureString(String str, float width, TextPaint font) +``` + + +Mesurer la chaîne avec la largeur et la police spécifiées. Résolution et mode AntiAlias définis dans le constructeur + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| str | java.lang.String | Une chaîne | +| largeur | float | Une largeur | +| police | android.text.TextPaint | Une police | + +**Returns:** +com.aspose.ms.System.Drawing.SizeF - Taille d'une chaîne +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### offsetRectangle(System.Drawing.RectangleF nativeRectangle, boolean isNoWrap, int verticalAlignment) {#offsetRectangle-com.aspose.ms.System.Drawing.RectangleF-boolean-int-} +``` +public static System.Drawing.RectangleF offsetRectangle(System.Drawing.RectangleF nativeRectangle, boolean isNoWrap, int verticalAlignment) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nativeRectangle | com.aspose.ms.System.Drawing.RectangleF | | +| isNoWrap | boolean | | +| verticalAlignment | int | | + +**Returns:** +com.aspose.ms.System.Drawing.RectangleF +### reOffsetRectangle(System.Drawing.RectangleF symbolArea, System.Drawing.RectangleF nativeRectangle, System.Drawing.RectangleF offsetRectangle, int horisontalAlignment) {#reOffsetRectangle-com.aspose.ms.System.Drawing.RectangleF-com.aspose.ms.System.Drawing.RectangleF-com.aspose.ms.System.Drawing.RectangleF-int-} +``` +public static void reOffsetRectangle(System.Drawing.RectangleF symbolArea, System.Drawing.RectangleF nativeRectangle, System.Drawing.RectangleF offsetRectangle, int horisontalAlignment) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| symbolArea | com.aspose.ms.System.Drawing.RectangleF | | +| nativeRectangle | com.aspose.ms.System.Drawing.RectangleF | | +| offsetRectangle | com.aspose.ms.System.Drawing.RectangleF | | +| horisontalAlignment | int | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/textrenderinghint/_index.md b/french/androidjava/com.aspose.barcode.generation/textrenderinghint/_index.md new file mode 100644 index 000000000..2eadd41eb --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/textrenderinghint/_index.md @@ -0,0 +1,283 @@ +--- +title: TextRenderingHint +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 109 +url: /fr/androidjava/com.aspose.barcode.generation/textrenderinghint/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum TextRenderingHint extends Enum +``` +## Champs + +| Champ | Description | +| --- | --- | +| [ANTI_ALIAS](#ANTI-ALIAS) | | +| [ANTI_ALIAS_GRID_FIT](#ANTI-ALIAS-GRID-FIT) | | +| [CLEAR_TYPE_GRID_FIT](#CLEAR-TYPE-GRID-FIT) | | +| [SINGLE_BIIT_PER_PIXEL_GRID_FIT](#SINGLE-BIIT-PER-PIXEL-GRID-FIT) | | +| [SINGLE_BIT_PER_PIXEL](#SINGLE-BIT-PER-PIXEL) | | +| [SYSTEM_DAFAULT](#SYSTEM-DAFAULT) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ANTI_ALIAS {#ANTI-ALIAS} +``` +public static final TextRenderingHint ANTI_ALIAS +``` + + +### ANTI_ALIAS_GRID_FIT {#ANTI-ALIAS-GRID-FIT} +``` +public static final TextRenderingHint ANTI_ALIAS_GRID_FIT +``` + + +### CLEAR_TYPE_GRID_FIT {#CLEAR-TYPE-GRID-FIT} +``` +public static final TextRenderingHint CLEAR_TYPE_GRID_FIT +``` + + +### SINGLE_BIIT_PER_PIXEL_GRID_FIT {#SINGLE-BIIT-PER-PIXEL-GRID-FIT} +``` +public static final TextRenderingHint SINGLE_BIIT_PER_PIXEL_GRID_FIT +``` + + +### SINGLE_BIT_PER_PIXEL {#SINGLE-BIT-PER-PIXEL} +``` +public static final TextRenderingHint SINGLE_BIT_PER_PIXEL +``` + + +### SYSTEM_DAFAULT {#SYSTEM-DAFAULT} +``` +public static final TextRenderingHint SYSTEM_DAFAULT +``` + + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static TextRenderingHint valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +com.aspose.barcode.generation.TextRenderingHint +### values() {#values--} +``` +public static TextRenderingHint[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.TextRenderingHint[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/twodcomponenttype/_index.md b/french/androidjava/com.aspose.barcode.generation/twodcomponenttype/_index.md new file mode 100644 index 000000000..7426ed54d --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/twodcomponenttype/_index.md @@ -0,0 +1,279 @@ +--- +title: TwoDComponentType +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Type de composant 2D Cet exemple montre comment créer et enregistrer une image GS1 Composite Bar. +type: docs +weight: 110 +url: /fr/androidjava/com.aspose.barcode.generation/twodcomponenttype/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum TwoDComponentType extends Enum +``` + +Type de composant 2D Cet exemple montre comment créer et enregistrer une image GS1 Composite Bar. Notez que le texte de code 1D et le texte de code 2D sont séparés par le symbole '/' `String codetext = "(01)03212345678906/(21)A1B2C3D4E5F6G7H8"; BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_COMPOSITE_BAR, codetext); generator.getParameters().getBarcode().getGS1CompositeBar().setLinearComponentType(EncodeTypes.GS_1_CODE_128); generator.getParameters().getBarcode().getGS1CompositeBar().setTwoDComponentType(TwoDComponentType.CC_A); // Aspect ratio of 2D component generator.getParameters().getBarcode().getPdf417().setAspectRatio(3); // X-Dimension of 1D and 2D components generator.getParameters().getBarcode().getXDimension().setPixels(3); // Height of 1D component generator.getParameters().getBarcode().getBarHeight().setPixels(100); generator.save("test.png");` +## Champs + +| Champ | Description | +| --- | --- | +| [AUTO](#AUTO) | Sélection automatique du type de composant 2D | +| [CC_A](#CC-A) | Type CC-A de composant 2D. | +| [CC_B](#CC-B) | Type CC-B de composant 2D. | +| [CC_C](#CC-C) | Type CC-C de composant 2D. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [getValue()](#getValue--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUTO {#AUTO} +``` +public static final TwoDComponentType AUTO +``` + + +Sélection automatique du type de composant 2D + +### CC_A {#CC-A} +``` +public static final TwoDComponentType CC_A +``` + + +Type CC-A de composant 2D. C’est une variante structurelle de MicroPDF417 + +### CC_B {#CC-B} +``` +public static final TwoDComponentType CC_B +``` + + +Type CC-B de composant 2D. C’est un symbole MicroPDF417. + +### CC_C {#CC-C} +``` +public static final TwoDComponentType CC_C +``` + + +Type CC-C de composant 2D. C’est un symbole PDF417. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public int getValue() +``` + + + + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static TwoDComponentType valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[TwoDComponentType](../../com.aspose.barcode.generation/twodcomponenttype) +### values() {#values--} +``` +public static TwoDComponentType[] values() +``` + + + + +**Returns:** +com.aspose.barcode.generation.TwoDComponentType[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/unit/_index.md b/french/androidjava/com.aspose.barcode.generation/unit/_index.md new file mode 100644 index 000000000..228383010 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/unit/_index.md @@ -0,0 +1,300 @@ +--- +title: Unité +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Spécifie la valeur de taille dans différentes unités (Pixel, Inches, etc.). +type: docs +weight: 69 +url: /fr/androidjava/com.aspose.barcode.generation/unit/ +--- +**Inheritance:** +java.lang.Object +``` +public final class Unit +``` + +Spécifie la valeur de taille dans différentes unités (Pixel, pouces, etc.). + +-------------------- + +> ``` +> This sample shows how to create and save a BarCode image. +> +> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.CODE_128); +> generator.getParameters().getBarcode().getBarHeight().setMillimeters(10); +> generator.save("test.png"); +> ``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [Unit(Unit source)](#Unit-com.aspose.barcode.generation.Unit-) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Détermine si cette instance et un objet spécifié, qui doit également être un objet Unit, ont la même valeur. | +| [getClass()](#getClass--) | | +| [getDocument()](#getDocument--) | Obtient la valeur de taille en unités de document. | +| [getInches()](#getInches--) | Obtient la valeur de taille en pouces. | +| [getMillimeters()](#getMillimeters--) | Obtient la valeur de taille en millimètres. | +| [getPixels()](#getPixels--) | Obtient la valeur de taille en pixels. | +| [getPoint()](#getPoint--) | Obtient la valeur de taille en points. | +| [getResolution()](#getResolution--) | | +| [hashCode()](#hashCode--) | Renvoie le code de hachage pour cet objet. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setDocument(float value)](#setDocument-float-) | Définit la valeur de taille en unités de document. | +| [setInches(float value)](#setInches-float-) | Définit la valeur de taille en pouces. | +| [setMillimeters(float value)](#setMillimeters-float-) | Définit la valeur de taille en millimètres. | +| [setPixels(float value)](#setPixels-float-) | Définit la valeur de taille en pixels. | +| [setPoint(float value)](#setPoint-float-) | Sets size value in point. | +| [toString()](#toString--) | Returns a human-readable string representation of this Unit . | +| [updateResolution(float dpi)](#updateResolution-float-) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Unit(Unit source) {#Unit-com.aspose.barcode.generation.Unit-} +``` +public Unit(Unit source) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| source | [Unit](../../com.aspose.barcode.generation/unit) | | + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Détermine si cette instance et un objet spécifié, qui doit également être un objet Unit, ont la même valeur. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | The Unit to compare to this instance. | + +**Returns:** +boolean - true if obj is a Unit and its value is the same as this instance; otherwise, false. If obj is null, the method returns false. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDocument() {#getDocument--} +``` +public float getDocument() +``` + + +Obtient la valeur de taille en unités de document. + +**Returns:** +float +### getInches() {#getInches--} +``` +public float getInches() +``` + + +Obtient la valeur de taille en pouces. + +**Returns:** +float +### getMillimeters() {#getMillimeters--} +``` +public float getMillimeters() +``` + + +Obtient la valeur de taille en millimètres. + +**Returns:** +float +### getPixels() {#getPixels--} +``` +public float getPixels() +``` + + +Obtient la valeur de taille en pixels. + +**Returns:** +float +### getPoint() {#getPoint--} +``` +public float getPoint() +``` + + +Obtient la valeur de taille en points. + +**Returns:** +float +### getResolution() {#getResolution--} +``` +public float getResolution() +``` + + + + +**Returns:** +float +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Renvoie le code de hachage pour cet objet. + +**Returns:** +int - Un code de hachage entier signé de 32 bits. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setDocument(float value) {#setDocument-float-} +``` +public void setDocument(float value) +``` + + +Définit la valeur de taille en unités de document. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setInches(float value) {#setInches-float-} +``` +public void setInches(float value) +``` + + +Définit la valeur de taille en pouces. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setMillimeters(float value) {#setMillimeters-float-} +``` +public void setMillimeters(float value) +``` + + +Définit la valeur de taille en millimètres. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setPixels(float value) {#setPixels-float-} +``` +public void setPixels(float value) +``` + + +Définit la valeur de taille en pixels. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### setPoint(float value) {#setPoint-float-} +``` +public void setPoint(float value) +``` + + +Sets size value in point. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | + +### toString() {#toString--} +``` +public String toString() +``` + + +Returns a human-readable string representation of this Unit . + +**Returns:** +java.lang.String - A string that represents this Unit . +### updateResolution(float dpi) {#updateResolution-float-} +``` +public void updateResolution(float dpi) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dpi | float | | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.generation/unitinternal/_index.md b/french/androidjava/com.aspose.barcode.generation/unitinternal/_index.md new file mode 100644 index 000000000..6d5f13bc2 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.generation/unitinternal/_index.md @@ -0,0 +1,177 @@ +--- +title: UnitInternal +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 70 +url: /fr/androidjava/com.aspose.barcode.generation/unitinternal/ +--- +**Inheritance:** +java.lang.Object +``` +public class UnitInternal +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [UnitInternal()](#UnitInternal--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [DEFAULT_DPI](#DEFAULT-DPI) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [ctor(float value, GraphicsUnit graphicsUnit)](#ctor-float-com.aspose.barcode.generation.GraphicsUnit-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getPx(Unit unit)](#getPx-com.aspose.barcode.generation.Unit-) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### UnitInternal() {#UnitInternal--} +``` +public UnitInternal() +``` + + +### DEFAULT_DPI {#DEFAULT-DPI} +``` +public static float DEFAULT_DPI +``` + + +### ctor(float value, GraphicsUnit graphicsUnit) {#ctor-float-com.aspose.barcode.generation.GraphicsUnit-} +``` +public static Unit ctor(float value, GraphicsUnit graphicsUnit) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | float | | +| graphicsUnit | [GraphicsUnit](../../com.aspose.barcode.generation/graphicsunit) | | + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getPx(Unit unit) {#getPx-com.aspose.barcode.generation.Unit-} +``` +public static int getPx(Unit unit) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unit | [Unit](../../com.aspose.barcode.generation/unit) | | + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode.metered/_index.md b/french/androidjava/com.aspose.barcode.metered/_index.md new file mode 100644 index 000000000..28b31e1d7 --- /dev/null +++ b/french/androidjava/com.aspose.barcode.metered/_index.md @@ -0,0 +1,17 @@ +--- +title: com.aspose.barcode.metered +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Ce package fournit les fonctionnalités liées au service de facturation au compteur. +type: docs +weight: 16 +url: /fr/androidjava/com.aspose.barcode.metered/ +--- + +Ce package fournit les fonctionnalités liées au service de facturation au compteur. + + +## Classes + +| Classe | Description | +| --- | --- | +| [Metered](../com.aspose.barcode.metered/metered) | Fournit des méthodes pour définir la clé mesurée. | diff --git a/french/androidjava/com.aspose.barcode.metered/metered/_index.md b/french/androidjava/com.aspose.barcode.metered/metered/_index.md new file mode 100644 index 000000000..2d319b9bf --- /dev/null +++ b/french/androidjava/com.aspose.barcode.metered/metered/_index.md @@ -0,0 +1,174 @@ +--- +title: Mesuré +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Fournit des méthodes pour définir la clé mesurée. +type: docs +weight: 10 +url: /fr/androidjava/com.aspose.barcode.metered/metered/ +--- +**Inheritance:** +java.lang.Object +``` +public class Metered +``` + +Fournit des méthodes pour définir la clé mesurée. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [Metered()](#Metered--) | Initialise une nouvelle instance de cette classe. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getConsumptionCredit()](#getConsumptionCredit--) | Obtient le crédit de consommation | +| [getConsumptionQuantity()](#getConsumptionQuantity--) | Obtient la taille du fichier de consommation | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setMeteredKey(String publicKey, String privateKey)](#setMeteredKey-java.lang.String-java.lang.String-) | Définit la clé publique et privée mesurée | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Metered() {#Metered--} +``` +public Metered() +``` + + +Initialise une nouvelle instance de cette classe. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConsumptionCredit() {#getConsumptionCredit--} +``` +public static double getConsumptionCredit() +``` + + +Obtient le crédit de consommation + +**Returns:** +double - quantité de consommation +### getConsumptionQuantity() {#getConsumptionQuantity--} +``` +public static double getConsumptionQuantity() +``` + + +Obtient la taille du fichier de consommation + +**Returns:** +double - quantité de consommation +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setMeteredKey(String publicKey, String privateKey) {#setMeteredKey-java.lang.String-java.lang.String-} +``` +public void setMeteredKey(String publicKey, String privateKey) +``` + + +Définit la clé publique et privée mesurée + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| publicKey | java.lang.String | clé publique | +| privateKey | java.lang.String | clé privée | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/_index.md b/french/androidjava/com.aspose.barcode/_index.md new file mode 100644 index 000000000..09460293e --- /dev/null +++ b/french/androidjava/com.aspose.barcode/_index.md @@ -0,0 +1,29 @@ +--- +title: com.aspose.barcode +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Ce package contient des classes à usage général pour la génération et le rendu des codes-barres. +type: docs +weight: 10 +url: /fr/androidjava/com.aspose.barcode/ +--- + +Ce package contient des classes à usage général pour la génération et le rendu des codes-barres. + + +## Classes + +| Classe | Description | +| --- | --- | +| [BarCodeException](../com.aspose.barcode/barcodeexception) | Représente l'exception lors de la création de l'image du code-barres. | +| [BuildConfig](../com.aspose.barcode/buildconfig) | | +| [BuildVersionInfo](../com.aspose.barcode/buildversioninfo) | Fournit des informations sur le nom et la version du produit actuel. | +| [Checker](../com.aspose.barcode/checker) | | +| [DefaultValues](../com.aspose.barcode/defaultvalues) | | +| [InvalidCodeException](../com.aspose.barcode/invalidcodeexception) | L'exception sera levée lorsque des caractères invalides sont contenus dans le texte du code. | +| [License](../com.aspose.barcode/license) | Fournit des méthodes pour licencier le composant. | +| [PleaseReportException](../com.aspose.barcode/pleasereportexception) | | +| [R](../com.aspose.barcode/r) | | +| [R.attr](../com.aspose.barcode/r.attr) | | +| [R.id](../com.aspose.barcode/r.id) | | +| [R.string](../com.aspose.barcode/r.string) | | +| [R.styleable](../com.aspose.barcode/r.styleable) | | diff --git a/french/androidjava/com.aspose.barcode/attr/_index.md b/french/androidjava/com.aspose.barcode/attr/_index.md new file mode 100644 index 000000000..dab015198 --- /dev/null +++ b/french/androidjava/com.aspose.barcode/attr/_index.md @@ -0,0 +1,231 @@ +--- +title: R.attr +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 10 +url: /fr/androidjava/com.aspose.barcode/r.attr/ +--- +**Inheritance:** +java.lang.Object +``` +public static final class R.attr +``` +## Champs + +| Champ | Description | +| --- | --- | +| [autosizeMode](#autosizeMode) | | +| [backgroundColor](#backgroundColor) | | +| [barColor](#barColor) | | +| [barHeight](#barHeight) | | +| [barcodeType](#barcodeType) | | +| [checksumAlwaysShow](#checksumAlwaysShow) | | +| [checksumEnabled](#checksumEnabled) | | +| [codetext](#codetext) | | +| [enableEscape](#enableEscape) | | +| [filledBars](#filledBars) | | +| [resolution](#resolution) | | +| [rotationAngle](#rotationAngle) | | +| [throwExceptionWhenCodeTextIncorrect](#throwExceptionWhenCodeTextIncorrect) | | +| [wideNarrowRatio](#wideNarrowRatio) | | +| [xDimension](#xDimension) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### autosizeMode {#autosizeMode} +``` +public static int autosizeMode +``` + + +### backgroundColor {#backgroundColor} +``` +public static int backgroundColor +``` + + +### barColor {#barColor} +``` +public static int barColor +``` + + +### barHeight {#barHeight} +``` +public static int barHeight +``` + + +### barcodeType {#barcodeType} +``` +public static int barcodeType +``` + + +### checksumAlwaysShow {#checksumAlwaysShow} +``` +public static int checksumAlwaysShow +``` + + +### checksumEnabled {#checksumEnabled} +``` +public static int checksumEnabled +``` + + +### codetext {#codetext} +``` +public static int codetext +``` + + +### enableEscape {#enableEscape} +``` +public static int enableEscape +``` + + +### filledBars {#filledBars} +``` +public static int filledBars +``` + + +### resolution {#resolution} +``` +public static int resolution +``` + + +### rotationAngle {#rotationAngle} +``` +public static int rotationAngle +``` + + +### throwExceptionWhenCodeTextIncorrect {#throwExceptionWhenCodeTextIncorrect} +``` +public static int throwExceptionWhenCodeTextIncorrect +``` + + +### wideNarrowRatio {#wideNarrowRatio} +``` +public static int wideNarrowRatio +``` + + +### xDimension {#xDimension} +``` +public static int xDimension +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/barcodeexception/_index.md b/french/androidjava/com.aspose.barcode/barcodeexception/_index.md new file mode 100644 index 000000000..5f0459801 --- /dev/null +++ b/french/androidjava/com.aspose.barcode/barcodeexception/_index.md @@ -0,0 +1,313 @@ +--- +title: BarCodeException +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Représente l'exception lors de la création de l'image du code-barres. +type: docs +weight: 10 +url: /fr/androidjava/com.aspose.barcode/barcodeexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException +``` +public class BarCodeException extends RuntimeException +``` + +Représente l'exception lors de la création de l'image du code-barres. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BarCodeException()](#BarCodeException--) | Initialise une nouvelle instance de la classe BarCodeException. | +| [BarCodeException(String message)](#BarCodeException-java.lang.String-) | Initialise une nouvelle instance de la classe BarCodeException avec le message d'erreur spécifié. | +| [BarCodeException(String message, Exception innerException)](#BarCodeException-java.lang.String-java.lang.Exception-) | Initialise une nouvelle instance de la classe BarCodeException avec le message d'erreur spécifié et l'exception actuelle. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarCodeException() {#BarCodeException--} +``` +public BarCodeException() +``` + + +Initialise une nouvelle instance de la classe BarCodeException. + +### BarCodeException(String message) {#BarCodeException-java.lang.String-} +``` +public BarCodeException(String message) +``` + + +Initialise une nouvelle instance de la classe BarCodeException avec le message d'erreur spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Le message d'erreur de l'exception. | + +### BarCodeException(String message, Exception innerException) {#BarCodeException-java.lang.String-java.lang.Exception-} +``` +public BarCodeException(String message, Exception innerException) +``` + + +Initialise une nouvelle instance de la classe BarCodeException avec le message d'erreur spécifié et l'exception actuelle. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Le message d'erreur de l'exception. | +| innerException | java.lang.Exception | L'exception actuelle est levée. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/buildconfig/_index.md b/french/androidjava/com.aspose.barcode/buildconfig/_index.md new file mode 100644 index 000000000..eb5d0b31f --- /dev/null +++ b/french/androidjava/com.aspose.barcode/buildconfig/_index.md @@ -0,0 +1,158 @@ +--- +title: BuildConfig +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 11 +url: /fr/androidjava/com.aspose.barcode/buildconfig/ +--- +**Inheritance:** +java.lang.Object +``` +public final class BuildConfig +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BuildConfig()](#BuildConfig--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [BUILD_TYPE](#BUILD-TYPE) | | +| [DEBUG](#DEBUG) | | +| [LIBRARY_PACKAGE_NAME](#LIBRARY-PACKAGE-NAME) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BuildConfig() {#BuildConfig--} +``` +public BuildConfig() +``` + + +### BUILD_TYPE {#BUILD-TYPE} +``` +public static final String BUILD_TYPE +``` + + +### DEBUG {#DEBUG} +``` +public static final boolean DEBUG +``` + + +### LIBRARY_PACKAGE_NAME {#LIBRARY-PACKAGE-NAME} +``` +public static final String LIBRARY_PACKAGE_NAME +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/buildversioninfo/_index.md b/french/androidjava/com.aspose.barcode/buildversioninfo/_index.md new file mode 100644 index 000000000..cdc1fa2c5 --- /dev/null +++ b/french/androidjava/com.aspose.barcode/buildversioninfo/_index.md @@ -0,0 +1,166 @@ +--- +title: BuildVersionInfo +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Fournit des informations sur le nom et la version du produit actuel. +type: docs +weight: 12 +url: /fr/androidjava/com.aspose.barcode/buildversioninfo/ +--- +**Inheritance:** +java.lang.Object +``` +public class BuildVersionInfo +``` + +Provides information about the current product name and version. Shows how to use BuildVersionInfo to obtain information about this product. System.out.prinln(MessageFormat.format("I am currently using %s, version number %s.", BuildVersionInfo.PRODUCT, BuildVersionInfo.ASSEMBLY\_VERSION)); +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [BuildVersionInfo()](#BuildVersionInfo--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [ASSEMBLY_VERSION](#ASSEMBLY-VERSION) | Assembly version. | +| [PRODUCT](#PRODUCT) | The product title. | +| [RELEASE_DATE](#RELEASE-DATE) | The product release date. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BuildVersionInfo() {#BuildVersionInfo--} +``` +public BuildVersionInfo() +``` + + +### ASSEMBLY_VERSION {#ASSEMBLY-VERSION} +``` +public static final String ASSEMBLY_VERSION +``` + + +Assembly version. \* + +### PRODUCT {#PRODUCT} +``` +public static final String PRODUCT +``` + + +The product title. \* + +### RELEASE_DATE {#RELEASE-DATE} +``` +public static LocalDate RELEASE_DATE +``` + + +The product release date. \* + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/checker/_index.md b/french/androidjava/com.aspose.barcode/checker/_index.md new file mode 100644 index 000000000..02bee9b02 --- /dev/null +++ b/french/androidjava/com.aspose.barcode/checker/_index.md @@ -0,0 +1,149 @@ +--- +title: Checker +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 13 +url: /fr/androidjava/com.aspose.barcode/checker/ +--- +**Inheritance:** +java.lang.Object +``` +public class Checker +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [Checker()](#Checker--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [check(License license)](#check-com.aspose.barcode.License-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Checker() {#Checker--} +``` +public Checker() +``` + + +### check(License license) {#check-com.aspose.barcode.License-} +``` +public static boolean check(License license) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| license | [License](../../com.aspose.barcode/license) | | + +**Returns:** +boolean +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/defaultvalues/_index.md b/french/androidjava/com.aspose.barcode/defaultvalues/_index.md new file mode 100644 index 000000000..a31ae0d03 --- /dev/null +++ b/french/androidjava/com.aspose.barcode/defaultvalues/_index.md @@ -0,0 +1,750 @@ +--- +title: DefaultValues +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 14 +url: /fr/androidjava/com.aspose.barcode/defaultvalues/ +--- +**Inheritance:** +java.lang.Object +``` +public class DefaultValues +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [DefaultValues()](#DefaultValues--) | | +## Champs + +| Champ | Description | +| --- | --- | +| [AlwaysShowChecksum](#AlwaysShowChecksum) | | +| [AspectRatio](#AspectRatio) | | +| [AztecSymbolModeValue](#AztecSymbolModeValue) | | +| [AztectErrorLevel](#AztectErrorLevel) | | +| [BAR_HEIGHT](#BAR-HEIGHT) | | +| [BackColor](#BackColor) | | +| [BarWidthReduction](#BarWidthReduction) | | +| [BorderColor](#BorderColor) | | +| [BorderDashStyleValue](#BorderDashStyleValue) | | +| [BorderVisible](#BorderVisible) | | +| [BorderWidth](#BorderWidth) | | +| [CODE_TEXT](#CODE-TEXT) | | +| [CODE_TEXT_SPACE](#CODE-TEXT-SPACE) | | +| [CodabarChecksumModeValue](#CodabarChecksumModeValue) | | +| [CodabarSymbolValue](#CodabarSymbolValue) | | +| [CodeTextAlignment](#CodeTextAlignment) | | +| [CodeTextColor](#CodeTextColor) | | +| [CodeTextFont](#CodeTextFont) | | +| [Columns](#Columns) | | +| [CustomerInformationInterpretingTypeValue](#CustomerInformationInterpretingTypeValue) | | +| [DEFAULT_FONT_FAMILY_NAME](#DEFAULT-FONT-FAMILY-NAME) | | +| [DEFAULT_FONT_STYLE](#DEFAULT-FONT-STYLE) | | +| [DEFAULT_FONT_TEXT_SIZE](#DEFAULT-FONT-TEXT-SIZE) | | +| [DataMatrixEcc](#DataMatrixEcc) | | +| [DataMatrixEncodeModeValue](#DataMatrixEncodeModeValue) | | +| [DotCodeMask](#DotCodeMask) | | +| [Dpi](#Dpi) | | +| [ECIEncoding](#ECIEncoding) | | +| [ENABLE_ESCAPE](#ENABLE-ESCAPE) | | +| [EnableChecksumValue](#EnableChecksumValue) | | +| [FilledBars](#FilledBars) | | +| [ForeColor](#ForeColor) | | +| [GraphicsUnitValue](#GraphicsUnitValue) | | +| [IMAGE_HEIGHT](#IMAGE-HEIGHT) | | +| [IMAGE_WIDTH](#IMAGE-WIDTH) | | +| [ITF14BorderThickness](#ITF14BorderThickness) | | +| [ITF14BorderTypeValue](#ITF14BorderTypeValue) | | +| [MacroPdf417FileID](#MacroPdf417FileID) | | +| [MacroPdf417SegmentID](#MacroPdf417SegmentID) | | +| [MacroPdf417SegmentsCount](#MacroPdf417SegmentsCount) | | +| [MaxiCodeEncodeMode](#MaxiCodeEncodeMode) | | +| [PDF_417_TRUNCATE](#PDF-417-TRUNCATE) | | +| [PLANET_SHORT_BAR_HEIGHT](#PLANET-SHORT-BAR-HEIGHT) | | +| [POSTNET_SHORT_BAR_HEIGHT](#POSTNET-SHORT-BAR-HEIGHT) | | +| [Pdf417CompactionModeValue](#Pdf417CompactionModeValue) | | +| [Pdf417ErrorLevelValue](#Pdf417ErrorLevelValue) | | +| [QREncodeModeValue](#QREncodeModeValue) | | +| [QREncodeTypeValue](#QREncodeTypeValue) | | +| [QRErrorLevelValue](#QRErrorLevelValue) | | +| [QR_VERSION_VALUE](#QR-VERSION-VALUE) | | +| [RotationAngleF](#RotationAngleF) | | +| [Rows](#Rows) | | +| [SUPPLEMENT_SPACE](#SUPPLEMENT-SPACE) | | +| [SupplementData](#SupplementData) | | +| [THROW_EXCEPTION_WNEN_CODE_TEXT_INCORRRECT](#THROW-EXCEPTION-WNEN-CODE-TEXT-INCORRRECT) | | +| [WideNarrowRatio](#WideNarrowRatio) | | +| [XDimension](#XDimension) | | +| [YDimension](#YDimension) | | +| [m_CodeLocation](#m-CodeLocation) | | +| [m_DataMatrixEncodeMode](#m-DataMatrixEncodeMode) | | +| [m_EnableChecksum](#m-EnableChecksum) | | +| [m_GraphicsUnit](#m-GraphicsUnit) | | +| [m_ITF14BorderType](#m-ITF14BorderType) | | +| [m_Pdf417CompactMode](#m-Pdf417CompactMode) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [createDefaultFont()](#createDefaultFont--) | | +| [createDefaultFontUnit()](#createDefaultFontUnit--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBarHeightUnit()](#getBarHeightUnit--) | | +| [getBarcodeHeightUnit()](#getBarcodeHeightUnit--) | | +| [getBarcodeWidthUnit()](#getBarcodeWidthUnit--) | | +| [getBorderWidthUnit()](#getBorderWidthUnit--) | | +| [getCaption()](#getCaption--) | | +| [getClass()](#getClass--) | | +| [getCodeTextStyle()](#getCodeTextStyle--) | | +| [getEncodeType()](#getEncodeType--) | | +| [getEncoding()](#getEncoding--) | | +| [getITF14BorderThicknessUnit()](#getITF14BorderThicknessUnit--) | | +| [getMargin()](#getMargin--) | | +| [getShortBarHeightUnit()](#getShortBarHeightUnit--) | | +| [getSupplementSpaceUnit()](#getSupplementSpaceUnit--) | | +| [getXDimensionUnit()](#getXDimensionUnit--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### DefaultValues() {#DefaultValues--} +``` +public DefaultValues() +``` + + +### AlwaysShowChecksum {#AlwaysShowChecksum} +``` +public static final boolean AlwaysShowChecksum +``` + + +### AspectRatio {#AspectRatio} +``` +public static final float AspectRatio +``` + + +### AztecSymbolModeValue {#AztecSymbolModeValue} +``` +public static final AztecSymbolMode AztecSymbolModeValue +``` + + +### AztectErrorLevel {#AztectErrorLevel} +``` +public static final int AztectErrorLevel +``` + + +### BAR_HEIGHT {#BAR-HEIGHT} +``` +public static final int BAR_HEIGHT +``` + + +### BackColor {#BackColor} +``` +public static final int BackColor +``` + + +### BarWidthReduction {#BarWidthReduction} +``` +public static final float BarWidthReduction +``` + + +### BorderColor {#BorderColor} +``` +public static final int BorderColor +``` + + +### BorderDashStyleValue {#BorderDashStyleValue} +``` +public static final BorderDashStyle BorderDashStyleValue +``` + + +### BorderVisible {#BorderVisible} +``` +public static final boolean BorderVisible +``` + + +### BorderWidth {#BorderWidth} +``` +public static final float BorderWidth +``` + + +### CODE_TEXT {#CODE-TEXT} +``` +public static final String CODE_TEXT +``` + + +### CODE_TEXT_SPACE {#CODE-TEXT-SPACE} +``` +public static final int CODE_TEXT_SPACE +``` + + +### CodabarChecksumModeValue {#CodabarChecksumModeValue} +``` +public static final CodabarChecksumMode CodabarChecksumModeValue +``` + + +### CodabarSymbolValue {#CodabarSymbolValue} +``` +public static final short CodabarSymbolValue +``` + + +### CodeTextAlignment {#CodeTextAlignment} +``` +public static final TextAlignment CodeTextAlignment +``` + + +### CodeTextColor {#CodeTextColor} +``` +public static final int CodeTextColor +``` + + +### CodeTextFont {#CodeTextFont} +``` +public static final TextPaint CodeTextFont +``` + + +### Columns {#Columns} +``` +public static final int Columns +``` + + +### CustomerInformationInterpretingTypeValue {#CustomerInformationInterpretingTypeValue} +``` +public static final CustomerInformationInterpretingType CustomerInformationInterpretingTypeValue +``` + + +### DEFAULT_FONT_FAMILY_NAME {#DEFAULT-FONT-FAMILY-NAME} +``` +public static final Typeface DEFAULT_FONT_FAMILY_NAME +``` + + +### DEFAULT_FONT_STYLE {#DEFAULT-FONT-STYLE} +``` +public static final int DEFAULT_FONT_STYLE +``` + + +### DEFAULT_FONT_TEXT_SIZE {#DEFAULT-FONT-TEXT-SIZE} +``` +public static final float DEFAULT_FONT_TEXT_SIZE +``` + + +### DataMatrixEcc {#DataMatrixEcc} +``` +public static final DataMatrixEccType DataMatrixEcc +``` + + +### DataMatrixEncodeModeValue {#DataMatrixEncodeModeValue} +``` +public static final DataMatrixEncodeMode DataMatrixEncodeModeValue +``` + + +### DotCodeMask {#DotCodeMask} +``` +public static final int DotCodeMask +``` + + +### Dpi {#Dpi} +``` +public static final float Dpi +``` + + +### ECIEncoding {#ECIEncoding} +``` +public static final int ECIEncoding +``` + + +### ENABLE_ESCAPE {#ENABLE-ESCAPE} +``` +public static final boolean ENABLE_ESCAPE +``` + + +### EnableChecksumValue {#EnableChecksumValue} +``` +public static final EnableChecksum EnableChecksumValue +``` + + +### FilledBars {#FilledBars} +``` +public static boolean FilledBars +``` + + +### ForeColor {#ForeColor} +``` +public static final int ForeColor +``` + + +### GraphicsUnitValue {#GraphicsUnitValue} +``` +public static final GraphicsUnit GraphicsUnitValue +``` + + +### IMAGE_HEIGHT {#IMAGE-HEIGHT} +``` +public static final int IMAGE_HEIGHT +``` + + +### IMAGE_WIDTH {#IMAGE-WIDTH} +``` +public static final int IMAGE_WIDTH +``` + + +### ITF14BorderThickness {#ITF14BorderThickness} +``` +public static final float ITF14BorderThickness +``` + + +### ITF14BorderTypeValue {#ITF14BorderTypeValue} +``` +public static final ITF14BorderType ITF14BorderTypeValue +``` + + +### MacroPdf417FileID {#MacroPdf417FileID} +``` +public static final int MacroPdf417FileID +``` + + +### MacroPdf417SegmentID {#MacroPdf417SegmentID} +``` +public static final int MacroPdf417SegmentID +``` + + +### MacroPdf417SegmentsCount {#MacroPdf417SegmentsCount} +``` +public static final int MacroPdf417SegmentsCount +``` + + +### MaxiCodeEncodeMode {#MaxiCodeEncodeMode} +``` +public static final int MaxiCodeEncodeMode +``` + + +### PDF_417_TRUNCATE {#PDF-417-TRUNCATE} +``` +public static final boolean PDF_417_TRUNCATE +``` + + +### PLANET_SHORT_BAR_HEIGHT {#PLANET-SHORT-BAR-HEIGHT} +``` +public static final int PLANET_SHORT_BAR_HEIGHT +``` + + +### POSTNET_SHORT_BAR_HEIGHT {#POSTNET-SHORT-BAR-HEIGHT} +``` +public static final int POSTNET_SHORT_BAR_HEIGHT +``` + + +### Pdf417CompactionModeValue {#Pdf417CompactionModeValue} +``` +public static final Pdf417CompactionMode Pdf417CompactionModeValue +``` + + +### Pdf417ErrorLevelValue {#Pdf417ErrorLevelValue} +``` +public static final Pdf417ErrorLevel Pdf417ErrorLevelValue +``` + + +### QREncodeModeValue {#QREncodeModeValue} +``` +public static final QREncodeMode QREncodeModeValue +``` + + +### QREncodeTypeValue {#QREncodeTypeValue} +``` +public static final QREncodeType QREncodeTypeValue +``` + + +### QRErrorLevelValue {#QRErrorLevelValue} +``` +public static final QRErrorLevel QRErrorLevelValue +``` + + +### QR_VERSION_VALUE {#QR-VERSION-VALUE} +``` +public static final QRVersion QR_VERSION_VALUE +``` + + +### RotationAngleF {#RotationAngleF} +``` +public static final float RotationAngleF +``` + + +### Rows {#Rows} +``` +public static final int Rows +``` + + +### SUPPLEMENT_SPACE {#SUPPLEMENT-SPACE} +``` +public static final int SUPPLEMENT_SPACE +``` + + +### SupplementData {#SupplementData} +``` +public static final String SupplementData +``` + + +### THROW_EXCEPTION_WNEN_CODE_TEXT_INCORRRECT {#THROW-EXCEPTION-WNEN-CODE-TEXT-INCORRRECT} +``` +public static final boolean THROW_EXCEPTION_WNEN_CODE_TEXT_INCORRRECT +``` + + +### WideNarrowRatio {#WideNarrowRatio} +``` +public static final float WideNarrowRatio +``` + + +### XDimension {#XDimension} +``` +public static final float XDimension +``` + + +### YDimension {#YDimension} +``` +public static final float YDimension +``` + + +### m_CodeLocation {#m-CodeLocation} +``` +public static final CodeLocation m_CodeLocation +``` + + +### m_DataMatrixEncodeMode {#m-DataMatrixEncodeMode} +``` +public static final DataMatrixEncodeMode m_DataMatrixEncodeMode +``` + + +### m_EnableChecksum {#m-EnableChecksum} +``` +public static final EnableChecksum m_EnableChecksum +``` + + +### m_GraphicsUnit {#m-GraphicsUnit} +``` +public static final GraphicsUnit m_GraphicsUnit +``` + + +### m_ITF14BorderType {#m-ITF14BorderType} +``` +public static final ITF14BorderType m_ITF14BorderType +``` + + +### m_Pdf417CompactMode {#m-Pdf417CompactMode} +``` +public static final Pdf417CompactionMode m_Pdf417CompactMode +``` + + +### createDefaultFont() {#createDefaultFont--} +``` +public static TextPaint createDefaultFont() +``` + + + + +**Returns:** +android.text.TextPaint +### createDefaultFontUnit() {#createDefaultFontUnit--} +``` +public static FontUnit createDefaultFontUnit() +``` + + + + +**Returns:** +[FontUnit](../../com.aspose.barcode.generation/fontunit) +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBarHeightUnit() {#getBarHeightUnit--} +``` +public static Unit getBarHeightUnit() +``` + + + + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getBarcodeHeightUnit() {#getBarcodeHeightUnit--} +``` +public static Unit getBarcodeHeightUnit() +``` + + + + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getBarcodeWidthUnit() {#getBarcodeWidthUnit--} +``` +public static Unit getBarcodeWidthUnit() +``` + + + + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getBorderWidthUnit() {#getBorderWidthUnit--} +``` +public static Unit getBorderWidthUnit() +``` + + + + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getCaption() {#getCaption--} +``` +public static CaptionParameters getCaption() +``` + + + + +**Returns:** +[CaptionParameters](../../com.aspose.barcode.generation/captionparameters) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCodeTextStyle() {#getCodeTextStyle--} +``` +public static CodetextParameters getCodeTextStyle() +``` + + + + +**Returns:** +[CodetextParameters](../../com.aspose.barcode.generation/codetextparameters) +### getEncodeType() {#getEncodeType--} +``` +public static BaseEncodeType getEncodeType() +``` + + + + +**Returns:** +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) +### getEncoding() {#getEncoding--} +``` +public static System.Text.Encoding getEncoding() +``` + + + + +**Returns:** +com.aspose.ms.System.Text.Encoding +### getITF14BorderThicknessUnit() {#getITF14BorderThicknessUnit--} +``` +public static Unit getITF14BorderThicknessUnit() +``` + + + + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getMargin() {#getMargin--} +``` +public static Padding getMargin() +``` + + + + +**Returns:** +[Padding](../../com.aspose.barcode.generation/padding) +### getShortBarHeightUnit() {#getShortBarHeightUnit--} +``` +public static Unit getShortBarHeightUnit() +``` + + + + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getSupplementSpaceUnit() {#getSupplementSpaceUnit--} +``` +public static Unit getSupplementSpaceUnit() +``` + + + + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getXDimensionUnit() {#getXDimensionUnit--} +``` +public static Unit getXDimensionUnit() +``` + + + + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/id/_index.md b/french/androidjava/com.aspose.barcode/id/_index.md new file mode 100644 index 000000000..069ef2bf7 --- /dev/null +++ b/french/androidjava/com.aspose.barcode/id/_index.md @@ -0,0 +1,630 @@ +--- +title: R.id +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 11 +url: /fr/androidjava/com.aspose.barcode/r.id/ +--- +**Inheritance:** +java.lang.Object +``` +public static final class R.id +``` +## Champs + +| Champ | Description | +| --- | --- | +| [AUSTRALIAN_POSTE_PARCEL](#AUSTRALIAN-POSTE-PARCEL) | | +| [AUSTRALIA_POST](#AUSTRALIA-POST) | | +| [AZTEC](#AZTEC) | | +| [CODABAR](#CODABAR) | | +| [CODABLOCK_F](#CODABLOCK-F) | | +| [CODE_11](#CODE-11) | | +| [CODE_128](#CODE-128) | | +| [CODE_16_K](#CODE-16-K) | | +| [CODE_32](#CODE-32) | | +| [CODE_39_EXTENDED](#CODE-39-EXTENDED) | | +| [CODE_39_STANDARD](#CODE-39-STANDARD) | | +| [CODE_93_EXTENDED](#CODE-93-EXTENDED) | | +| [CODE_93_STANDARD](#CODE-93-STANDARD) | | +| [DATABAR_EXPANDED](#DATABAR-EXPANDED) | | +| [DATABAR_EXPANDED_STACKED](#DATABAR-EXPANDED-STACKED) | | +| [DATABAR_LIMITED](#DATABAR-LIMITED) | | +| [DATABAR_OMNI_DIRECTIONAL](#DATABAR-OMNI-DIRECTIONAL) | | +| [DATABAR_STACKED](#DATABAR-STACKED) | | +| [DATABAR_STACKED_OMNI_DIRECTIONAL](#DATABAR-STACKED-OMNI-DIRECTIONAL) | | +| [DATABAR_TRUNCATED](#DATABAR-TRUNCATED) | | +| [DATA_LOGIC_2_OF_5](#DATA-LOGIC-2-OF-5) | | +| [DATA_MATRIX](#DATA-MATRIX) | | +| [DEFAULT](#DEFAULT) | | +| [DEUTSCHE_POST_IDENTCODE](#DEUTSCHE-POST-IDENTCODE) | | +| [DEUTSCHE_POST_LEITCODE](#DEUTSCHE-POST-LEITCODE) | | +| [DOT_CODE](#DOT-CODE) | | +| [DUTCH_KIX](#DUTCH-KIX) | | +| [EAN_13](#EAN-13) | | +| [EAN_14](#EAN-14) | | +| [EAN_8](#EAN-8) | | +| [GS_1_CODABLOCK_F](#GS-1-CODABLOCK-F) | | +| [GS_1_CODE_128](#GS-1-CODE-128) | | +| [GS_1_DATA_MATRIX](#GS-1-DATA-MATRIX) | | +| [GS_1_QR](#GS-1-QR) | | +| [IATA_2_OF_5](#IATA-2-OF-5) | | +| [INTERLEAVED_2_OF_5](#INTERLEAVED-2-OF-5) | | +| [INTERPOLATION](#INTERPOLATION) | | +| [ISBN](#ISBN) | | +| [ISMN](#ISMN) | | +| [ISSN](#ISSN) | | +| [ITALIAN_POST_25](#ITALIAN-POST-25) | | +| [ITF_14](#ITF-14) | | +| [ITF_6](#ITF-6) | | +| [MACRO_PDF_417](#MACRO-PDF-417) | | +| [MATRIX_2_OF_5](#MATRIX-2-OF-5) | | +| [MAXI_CODE](#MAXI-CODE) | | +| [MICRO_PDF_417](#MICRO-PDF-417) | | +| [MSI](#MSI) | | +| [NEAREST](#NEAREST) | | +| [NO](#NO) | | +| [NONE](#NONE) | | +| [ONE_CODE](#ONE-CODE) | | +| [OPC](#OPC) | | +| [PATCH_CODE](#PATCH-CODE) | | +| [PDF_417](#PDF-417) | | +| [PHARMACODE](#PHARMACODE) | | +| [PLANET](#PLANET) | | +| [POSTNET](#POSTNET) | | +| [PZN](#PZN) | | +| [QR](#QR) | | +| [RM_4_SCC](#RM-4-SCC) | | +| [SCC_14](#SCC-14) | | +| [SINGAPORE_POST](#SINGAPORE-POST) | | +| [SSCC_18](#SSCC-18) | | +| [STANDARD_2_OF_5](#STANDARD-2-OF-5) | | +| [SWISS_POST_PARCEL](#SWISS-POST-PARCEL) | | +| [UPCA](#UPCA) | | +| [UPCA_GS_1_CODE_128_COUPON](#UPCA-GS-1-CODE-128-COUPON) | | +| [UPCA_GS_1_DATABAR_COUPON](#UPCA-GS-1-DATABAR-COUPON) | | +| [UPCE](#UPCE) | | +| [VIN](#VIN) | | +| [YES](#YES) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AUSTRALIAN_POSTE_PARCEL {#AUSTRALIAN-POSTE-PARCEL} +``` +public static int AUSTRALIAN_POSTE_PARCEL +``` + + +### AUSTRALIA_POST {#AUSTRALIA-POST} +``` +public static int AUSTRALIA_POST +``` + + +### AZTEC {#AZTEC} +``` +public static int AZTEC +``` + + +### CODABAR {#CODABAR} +``` +public static int CODABAR +``` + + +### CODABLOCK_F {#CODABLOCK-F} +``` +public static int CODABLOCK_F +``` + + +### CODE_11 {#CODE-11} +``` +public static int CODE_11 +``` + + +### CODE_128 {#CODE-128} +``` +public static int CODE_128 +``` + + +### CODE_16_K {#CODE-16-K} +``` +public static int CODE_16_K +``` + + +### CODE_32 {#CODE-32} +``` +public static int CODE_32 +``` + + +### CODE_39_EXTENDED {#CODE-39-EXTENDED} +``` +public static int CODE_39_EXTENDED +``` + + +### CODE_39_STANDARD {#CODE-39-STANDARD} +``` +public static int CODE_39_STANDARD +``` + + +### CODE_93_EXTENDED {#CODE-93-EXTENDED} +``` +public static int CODE_93_EXTENDED +``` + + +### CODE_93_STANDARD {#CODE-93-STANDARD} +``` +public static int CODE_93_STANDARD +``` + + +### DATABAR_EXPANDED {#DATABAR-EXPANDED} +``` +public static int DATABAR_EXPANDED +``` + + +### DATABAR_EXPANDED_STACKED {#DATABAR-EXPANDED-STACKED} +``` +public static int DATABAR_EXPANDED_STACKED +``` + + +### DATABAR_LIMITED {#DATABAR-LIMITED} +``` +public static int DATABAR_LIMITED +``` + + +### DATABAR_OMNI_DIRECTIONAL {#DATABAR-OMNI-DIRECTIONAL} +``` +public static int DATABAR_OMNI_DIRECTIONAL +``` + + +### DATABAR_STACKED {#DATABAR-STACKED} +``` +public static int DATABAR_STACKED +``` + + +### DATABAR_STACKED_OMNI_DIRECTIONAL {#DATABAR-STACKED-OMNI-DIRECTIONAL} +``` +public static int DATABAR_STACKED_OMNI_DIRECTIONAL +``` + + +### DATABAR_TRUNCATED {#DATABAR-TRUNCATED} +``` +public static int DATABAR_TRUNCATED +``` + + +### DATA_LOGIC_2_OF_5 {#DATA-LOGIC-2-OF-5} +``` +public static int DATA_LOGIC_2_OF_5 +``` + + +### DATA_MATRIX {#DATA-MATRIX} +``` +public static int DATA_MATRIX +``` + + +### DEFAULT {#DEFAULT} +``` +public static int DEFAULT +``` + + +### DEUTSCHE_POST_IDENTCODE {#DEUTSCHE-POST-IDENTCODE} +``` +public static int DEUTSCHE_POST_IDENTCODE +``` + + +### DEUTSCHE_POST_LEITCODE {#DEUTSCHE-POST-LEITCODE} +``` +public static int DEUTSCHE_POST_LEITCODE +``` + + +### DOT_CODE {#DOT-CODE} +``` +public static int DOT_CODE +``` + + +### DUTCH_KIX {#DUTCH-KIX} +``` +public static int DUTCH_KIX +``` + + +### EAN_13 {#EAN-13} +``` +public static int EAN_13 +``` + + +### EAN_14 {#EAN-14} +``` +public static int EAN_14 +``` + + +### EAN_8 {#EAN-8} +``` +public static int EAN_8 +``` + + +### GS_1_CODABLOCK_F {#GS-1-CODABLOCK-F} +``` +public static int GS_1_CODABLOCK_F +``` + + +### GS_1_CODE_128 {#GS-1-CODE-128} +``` +public static int GS_1_CODE_128 +``` + + +### GS_1_DATA_MATRIX {#GS-1-DATA-MATRIX} +``` +public static int GS_1_DATA_MATRIX +``` + + +### GS_1_QR {#GS-1-QR} +``` +public static int GS_1_QR +``` + + +### IATA_2_OF_5 {#IATA-2-OF-5} +``` +public static int IATA_2_OF_5 +``` + + +### INTERLEAVED_2_OF_5 {#INTERLEAVED-2-OF-5} +``` +public static int INTERLEAVED_2_OF_5 +``` + + +### INTERPOLATION {#INTERPOLATION} +``` +public static int INTERPOLATION +``` + + +### ISBN {#ISBN} +``` +public static int ISBN +``` + + +### ISMN {#ISMN} +``` +public static int ISMN +``` + + +### ISSN {#ISSN} +``` +public static int ISSN +``` + + +### ITALIAN_POST_25 {#ITALIAN-POST-25} +``` +public static int ITALIAN_POST_25 +``` + + +### ITF_14 {#ITF-14} +``` +public static int ITF_14 +``` + + +### ITF_6 {#ITF-6} +``` +public static int ITF_6 +``` + + +### MACRO_PDF_417 {#MACRO-PDF-417} +``` +public static int MACRO_PDF_417 +``` + + +### MATRIX_2_OF_5 {#MATRIX-2-OF-5} +``` +public static int MATRIX_2_OF_5 +``` + + +### MAXI_CODE {#MAXI-CODE} +``` +public static int MAXI_CODE +``` + + +### MICRO_PDF_417 {#MICRO-PDF-417} +``` +public static int MICRO_PDF_417 +``` + + +### MSI {#MSI} +``` +public static int MSI +``` + + +### NEAREST {#NEAREST} +``` +public static int NEAREST +``` + + +### NO {#NO} +``` +public static int NO +``` + + +### NONE {#NONE} +``` +public static int NONE +``` + + +### ONE_CODE {#ONE-CODE} +``` +public static int ONE_CODE +``` + + +### OPC {#OPC} +``` +public static int OPC +``` + + +### PATCH_CODE {#PATCH-CODE} +``` +public static int PATCH_CODE +``` + + +### PDF_417 {#PDF-417} +``` +public static int PDF_417 +``` + + +### PHARMACODE {#PHARMACODE} +``` +public static int PHARMACODE +``` + + +### PLANET {#PLANET} +``` +public static int PLANET +``` + + +### POSTNET {#POSTNET} +``` +public static int POSTNET +``` + + +### PZN {#PZN} +``` +public static int PZN +``` + + +### QR {#QR} +``` +public static int QR +``` + + +### RM_4_SCC {#RM-4-SCC} +``` +public static int RM_4_SCC +``` + + +### SCC_14 {#SCC-14} +``` +public static int SCC_14 +``` + + +### SINGAPORE_POST {#SINGAPORE-POST} +``` +public static int SINGAPORE_POST +``` + + +### SSCC_18 {#SSCC-18} +``` +public static int SSCC_18 +``` + + +### STANDARD_2_OF_5 {#STANDARD-2-OF-5} +``` +public static int STANDARD_2_OF_5 +``` + + +### SWISS_POST_PARCEL {#SWISS-POST-PARCEL} +``` +public static int SWISS_POST_PARCEL +``` + + +### UPCA {#UPCA} +``` +public static int UPCA +``` + + +### UPCA_GS_1_CODE_128_COUPON {#UPCA-GS-1-CODE-128-COUPON} +``` +public static int UPCA_GS_1_CODE_128_COUPON +``` + + +### UPCA_GS_1_DATABAR_COUPON {#UPCA-GS-1-DATABAR-COUPON} +``` +public static int UPCA_GS_1_DATABAR_COUPON +``` + + +### UPCE {#UPCE} +``` +public static int UPCE +``` + + +### VIN {#VIN} +``` +public static int VIN +``` + + +### YES {#YES} +``` +public static int YES +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/invalidcodeexception/_index.md b/french/androidjava/com.aspose.barcode/invalidcodeexception/_index.md new file mode 100644 index 000000000..fad315250 --- /dev/null +++ b/french/androidjava/com.aspose.barcode/invalidcodeexception/_index.md @@ -0,0 +1,298 @@ +--- +title: InvalidCodeException +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: L'exception sera levée lorsque des caractères invalides sont contenus dans le texte du code. +type: docs +weight: 15 +url: /fr/androidjava/com.aspose.barcode/invalidcodeexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, [com.aspose.barcode.BarCodeException](../../com.aspose.barcode/barcodeexception) +``` +public class InvalidCodeException extends BarCodeException +``` + +L'exception sera levée lorsque des caractères invalides sont contenus dans le texte du code. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [InvalidCodeException()](#InvalidCodeException--) | Initialise une nouvelle instance de la classe. | +| [InvalidCodeException(String message)](#InvalidCodeException-java.lang.String-) | Initialise une nouvelle instance de la classe InvalidCodeException avec un message d'erreur spécifié. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### InvalidCodeException() {#InvalidCodeException--} +``` +public InvalidCodeException() +``` + + +Initialise une nouvelle instance de la classe. + +### InvalidCodeException(String message) {#InvalidCodeException-java.lang.String-} +``` +public InvalidCodeException(String message) +``` + + +Initialise une nouvelle instance de la classe InvalidCodeException avec un message d'erreur spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Une String qui décrit l'erreur. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/license/_index.md b/french/androidjava/com.aspose.barcode/license/_index.md new file mode 100644 index 000000000..a96479162 --- /dev/null +++ b/french/androidjava/com.aspose.barcode/license/_index.md @@ -0,0 +1,179 @@ +--- +title: Licence +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: Fournit des méthodes pour licencier le composant. +type: docs +weight: 16 +url: /fr/androidjava/com.aspose.barcode/license/ +--- +**Inheritance:** +java.lang.Object +``` +public class License +``` + +Fournit des méthodes pour licencier le composant. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [License()](#License--) | Initialise une nouvelle instance de cette classe. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setLicense(File licenseFile)](#setLicense-java.io.File-) | Licenses the component. | +| [setLicense(InputStream stream)](#setLicense-java.io.InputStream-) | Licenses the component. | +| [setLicense(String licenseName)](#setLicense-java.lang.String-) | Licenses the component. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### License() {#License--} +``` +public License() +``` + + +Initialise une nouvelle instance de cette classe. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setLicense(File licenseFile) {#setLicense-java.io.File-} +``` +public void setLicense(File licenseFile) +``` + + +Licenses the component. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| licenseFile | java.io.File | representation of file pathname | + +### setLicense(InputStream stream) {#setLicense-java.io.InputStream-} +``` +public void setLicense(InputStream stream) +``` + + +Licenses the component. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.InputStream | A stream that contains the license. | + +### setLicense(String licenseName) {#setLicense-java.lang.String-} +``` +public void setLicense(String licenseName) +``` + + +Licenses the component. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| licenseName | java.lang.String | Can be a full or short file name Use an empty string to switch to evaluation mode. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/pleasereportexception/_index.md b/french/androidjava/com.aspose.barcode/pleasereportexception/_index.md new file mode 100644 index 000000000..a6729828c --- /dev/null +++ b/french/androidjava/com.aspose.barcode/pleasereportexception/_index.md @@ -0,0 +1,305 @@ +--- +title: PleaseReportException +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 17 +url: /fr/androidjava/com.aspose.barcode/pleasereportexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException +``` +public class PleaseReportException extends RuntimeException +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [PleaseReportException(String message)](#PleaseReportException-java.lang.String-) | | +| [PleaseReportException(String message, Throwable cause)](#PleaseReportException-java.lang.String-java.lang.Throwable-) | | +| [PleaseReportException()](#PleaseReportException--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### PleaseReportException(String message) {#PleaseReportException-java.lang.String-} +``` +public PleaseReportException(String message) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | | + +### PleaseReportException(String message, Throwable cause) {#PleaseReportException-java.lang.String-java.lang.Throwable-} +``` +public PleaseReportException(String message, Throwable cause) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | | +| cause | java.lang.Throwable | | + +### PleaseReportException() {#PleaseReportException--} +``` +public PleaseReportException() +``` + + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/r/_index.md b/french/androidjava/com.aspose.barcode/r/_index.md new file mode 100644 index 000000000..b16312e84 --- /dev/null +++ b/french/androidjava/com.aspose.barcode/r/_index.md @@ -0,0 +1,122 @@ +--- +title: R +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 18 +url: /fr/androidjava/com.aspose.barcode/r/ +--- +**Inheritance:** +java.lang.Object +``` +public final class R +``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/string/_index.md b/french/androidjava/com.aspose.barcode/string/_index.md new file mode 100644 index 000000000..a5c850815 --- /dev/null +++ b/french/androidjava/com.aspose.barcode/string/_index.md @@ -0,0 +1,133 @@ +--- +title: R.string +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 12 +url: /fr/androidjava/com.aspose.barcode/r.string/ +--- +**Inheritance:** +java.lang.Object +``` +public static final class R.string +``` +## Champs + +| Champ | Description | +| --- | --- | +| [app_name](#app-name) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### app_name {#app-name} +``` +public static int app_name +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/androidjava/com.aspose.barcode/styleable/_index.md b/french/androidjava/com.aspose.barcode/styleable/_index.md new file mode 100644 index 000000000..549d90a65 --- /dev/null +++ b/french/androidjava/com.aspose.barcode/styleable/_index.md @@ -0,0 +1,238 @@ +--- +title: R.styleable +second_title: Référence d'API Aspose.BarCode pour Android via Java +description: +type: docs +weight: 13 +url: /fr/androidjava/com.aspose.barcode/r.styleable/ +--- +**Inheritance:** +java.lang.Object +``` +public static final class R.styleable +``` +## Champs + +| Champ | Description | +| --- | --- | +| [BarcodeGeneratorView](#BarcodeGeneratorView) | | +| [BarcodeGeneratorView_autosizeMode](#BarcodeGeneratorView-autosizeMode) | | +| [BarcodeGeneratorView_backgroundColor](#BarcodeGeneratorView-backgroundColor) | | +| [BarcodeGeneratorView_barColor](#BarcodeGeneratorView-barColor) | | +| [BarcodeGeneratorView_barHeight](#BarcodeGeneratorView-barHeight) | | +| [BarcodeGeneratorView_barcodeType](#BarcodeGeneratorView-barcodeType) | | +| [BarcodeGeneratorView_checksumAlwaysShow](#BarcodeGeneratorView-checksumAlwaysShow) | | +| [BarcodeGeneratorView_checksumEnabled](#BarcodeGeneratorView-checksumEnabled) | | +| [BarcodeGeneratorView_codetext](#BarcodeGeneratorView-codetext) | | +| [BarcodeGeneratorView_enableEscape](#BarcodeGeneratorView-enableEscape) | | +| [BarcodeGeneratorView_filledBars](#BarcodeGeneratorView-filledBars) | | +| [BarcodeGeneratorView_resolution](#BarcodeGeneratorView-resolution) | | +| [BarcodeGeneratorView_rotationAngle](#BarcodeGeneratorView-rotationAngle) | | +| [BarcodeGeneratorView_throwExceptionWhenCodeTextIncorrect](#BarcodeGeneratorView-throwExceptionWhenCodeTextIncorrect) | | +| [BarcodeGeneratorView_wideNarrowRatio](#BarcodeGeneratorView-wideNarrowRatio) | | +| [BarcodeGeneratorView_xDimension](#BarcodeGeneratorView-xDimension) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### BarcodeGeneratorView {#BarcodeGeneratorView} +``` +public static int[] BarcodeGeneratorView +``` + + +### BarcodeGeneratorView_autosizeMode {#BarcodeGeneratorView-autosizeMode} +``` +public static int BarcodeGeneratorView_autosizeMode +``` + + +### BarcodeGeneratorView_backgroundColor {#BarcodeGeneratorView-backgroundColor} +``` +public static int BarcodeGeneratorView_backgroundColor +``` + + +### BarcodeGeneratorView_barColor {#BarcodeGeneratorView-barColor} +``` +public static int BarcodeGeneratorView_barColor +``` + + +### BarcodeGeneratorView_barHeight {#BarcodeGeneratorView-barHeight} +``` +public static int BarcodeGeneratorView_barHeight +``` + + +### BarcodeGeneratorView_barcodeType {#BarcodeGeneratorView-barcodeType} +``` +public static int BarcodeGeneratorView_barcodeType +``` + + +### BarcodeGeneratorView_checksumAlwaysShow {#BarcodeGeneratorView-checksumAlwaysShow} +``` +public static int BarcodeGeneratorView_checksumAlwaysShow +``` + + +### BarcodeGeneratorView_checksumEnabled {#BarcodeGeneratorView-checksumEnabled} +``` +public static int BarcodeGeneratorView_checksumEnabled +``` + + +### BarcodeGeneratorView_codetext {#BarcodeGeneratorView-codetext} +``` +public static int BarcodeGeneratorView_codetext +``` + + +### BarcodeGeneratorView_enableEscape {#BarcodeGeneratorView-enableEscape} +``` +public static int BarcodeGeneratorView_enableEscape +``` + + +### BarcodeGeneratorView_filledBars {#BarcodeGeneratorView-filledBars} +``` +public static int BarcodeGeneratorView_filledBars +``` + + +### BarcodeGeneratorView_resolution {#BarcodeGeneratorView-resolution} +``` +public static int BarcodeGeneratorView_resolution +``` + + +### BarcodeGeneratorView_rotationAngle {#BarcodeGeneratorView-rotationAngle} +``` +public static int BarcodeGeneratorView_rotationAngle +``` + + +### BarcodeGeneratorView_throwExceptionWhenCodeTextIncorrect {#BarcodeGeneratorView-throwExceptionWhenCodeTextIncorrect} +``` +public static int BarcodeGeneratorView_throwExceptionWhenCodeTextIncorrect +``` + + +### BarcodeGeneratorView_wideNarrowRatio {#BarcodeGeneratorView-wideNarrowRatio} +``` +public static int BarcodeGeneratorView_wideNarrowRatio +``` + + +### BarcodeGeneratorView_xDimension {#BarcodeGeneratorView-xDimension} +``` +public static int BarcodeGeneratorView_xDimension +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | +