El método getTypeName() de la clase java.lang.Class se utiliza para obtener el nombre del tipo de esta clase, que proporciona información sobre el tipo de esta clase. El método devuelve el nombre de tipo de esta clase en forma de String.
Sintaxis:
public String getTypeName()
Parámetro: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve el nombre de tipo de esta clase en forma de string.
Los siguientes programas muestran el método getTypeName().
Ejemplo 1:
Java
// Java program to demonstrate getTypeName() method import java.util.*; public class Test { public static void main(String[] args) throws ClassNotFoundException { // returns the Class object for this class Class myClass = Class.forName("Test"); System.out.println("Class represented by myClass: " + myClass.toString()); // Get the type name of myClass // using getTypeName() method System.out.println("TypeName of myClass: " + myClass.getTypeName()); } }
Producción:
Class represented by myClass: class Test TypeName of myClass: Test
Ejemplo 2:
Java
// Java program to demonstrate getTypeName() method import java.util.*; class Main { public Object obj; Main() { class Arr { }; obj = new Arr(); } public static void main(String[] args) throws ClassNotFoundException { Main t = new Main(); // returns the Class object Class myClass = t.obj.getClass(); // Get the type name of myClass // using getTypeName() method System.out.println("TypeName of myClass: " + myClass.getTypeName()); } }
Producción:
TypeName of myClass: Main$1Arr
Referencia: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#getTypeName–