Método CollationElementIterator primaryOrder() en Java con ejemplos

El método primaryOrder() de la clase java.text.CollationElementIterator se utiliza para proporcionar el componente principal de cada elemento Collision del objeto CollationElementIterator.

Sintaxis: 

public static final int primaryOrder(int order)

Parámetro : este método toma un elemento de colación como parámetro en el formato de número entero para el cual se debe encontrar el componente principal.

Valor devuelto: este método devuelve el componente principal para el elemento Collision en particular.

A continuación se muestran los ejemplos para ilustrar el método primaryOrder() :

Ejemplo 1:  

Java

// Java program to demonstrate
// primaryOrder() method
   
import java.text.*;
import java.util.*;
import java.io.*;
   
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing testString
        String test = "GeeksForGeeks";
   
        // creating and initializing
        // RuleBasedCollator object
        RuleBasedCollator rbc
            = (RuleBasedCollator)(Collator.getInstance());
   
        // creating and initializing
        // CollationElementIterator
        CollationElementIterator cel
            = rbc.getCollationElementIterator(test);
   
        // for iteration
        for (int i = 1; i <= test.length(); i++) {
   
            // getting primary component of every elmenet
            // using primaryOrder() method
            int value
                = CollationElementIterator
                      .primaryOrder(cel.next());
   
            // display the reslut
            System.out.println("primary order "
                               + "for order "
                               + i + " is "
                               + value);
        }
    }
}
Producción: 

primary order for order 1 is 89
primary order for order 2 is 87
primary order for order 3 is 87
primary order for order 4 is 93
primary order for order 5 is 101
primary order for order 6 is 88
primary order for order 7 is 97
primary order for order 8 is 100
primary order for order 9 is 89
primary order for order 10 is 87
primary order for order 11 is 87
primary order for order 12 is 93
primary order for order 13 is 101

 

Ejemplo 2: 

Java

// Java program to demonstrate
// primaryOrder() method
   
import java.text.*;
import java.util.*;
import java.io.*;
   
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing testString
        String test
            = "Code Geeks 123";
   
        // creating and initializing
        // RuleBasedCollator object
        RuleBasedCollator rbc
            = (RuleBasedCollator)(Collator.getInstance());
   
        // creating and initializing
        // CollationElementIterator
        CollationElementIterator cel
            = rbc.getCollationElementIterator(test);
   
        // for iteration
        for (int i = 1; i <= test.length(); i++) {
   
            // getting primary component of every elmenet
            // using primaryOrder() method
            int value
                = CollationElementIterator
                      .primaryOrder(cel.next());
   
            // display the reslut
            System.out.println("primary order "
                               + "for order "
                               + i + " is "
                               + value);
        }
    }
}
Producción: 

primary order for order 1 is 84
primary order for order 2 is 97
primary order for order 3 is 85
primary order for order 4 is 87
primary order for order 5 is 0
primary order for order 6 is 89
primary order for order 7 is 87
primary order for order 8 is 87
primary order for order 9 is 93
primary order for order 10 is 101
primary order for order 11 is 0
primary order for order 12 is 70
primary order for order 13 is 71
primary order for order 14 is 72

 

Referencia: https://docs.oracle.com/javase/9/docs/api/java/text/CollationElementIterator.html#primaryOrder-int-
 

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *