Java.io.ObjectStreamField.getTypeCode() Method



Description

The java.io.ObjectStreamField.getTypeCode() method returns character encoding of field type. The encoding is as follows −

 B            byte
 C            char
 D            double
 F            float
 I            int
 J            long
 L            class or interface
 S            short
 Z            boolean
 [            array

Declaration

Following is the declaration for java.io.ObjectStreamField.getTypeCode() method.

public char getTypeCode()

Parameters

NA

Return Value

This method returns the typecode of the serializable field.

Exception

NA

Example

The following example shows the usage of java.io.ObjectStreamField.getTypeCode() method.

package com.tutorialspoint;

import java.io.*;
import java.util.Calendar;

public class ObjectStreamFieldDemo {
   public static void main(String[] args) {

      // create a new object stream class for Integers
      ObjectStreamClass osc = ObjectStreamClass.lookup(Integer.class);

      // get the field value from Integer class
      ObjectStreamField field = osc.getField("value");

      // get the type code of the field
      System.out.println("" + field.getTypeCode());

      // create a new object stream class for calendar
      ObjectStreamClass osc2 = ObjectStreamClass.lookup(Calendar.class);

      // get the field value from Calendar class
      ObjectStreamField field2 = osc2.getField("lenient");

      // get the type code of the field2
      System.out.println("" + field2.getTypeCode());
   }
}

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

I
Z
java_io_objectstreamfield.htm
Advertisements