java.lang.reflect.Field.toGenericString() Method Example



Description

The java.lang.reflect.Field.toGenericString() method returns a string describing this Field, including its generic type. The format is the access modifiers for the field, if any, followed by the generic field type, followed by a space, followed by the fully-qualified name of the class declaring the field, followed by a period, followed by the name of the field.

Declaration

Following is the declaration for java.lang.reflect.Field.toGenericString() method.

public String toGenericString()

Returns

a string describing this Field, including its generic type.

Example

The following example shows the usage of java.lang.reflect.Field.toGenericString() method.

package com.tutorialspoint;

import java.lang.reflect.Field;

public class FieldDemo {

   public static void main(String[] args) throws NoSuchFieldException, 
      SecurityException, IllegalArgumentException, IllegalAccessException {
          
      Field field = SampleClass.class.getField("sampleField");
      System.out.println(field.toGenericString());
   }
}

class SampleClass {
   public static long sampleField = 5;
}

Let us compile and run the above program, this will produce the following result −

public static long com.tutorialspoint.SampleClass.sampleField
java_reflect_field.htm
Advertisements