Home » Java programming language

Java ObjectStreamField getTypeCode() Method with Example

ObjectStreamField Class getTypeCode() method: Here, we are going to learn about the getTypeCode() method of ObjectStreamField Class with its syntax and example.
Submitted by Preeti Jain, on April 13, 2020

ObjectStreamField Class getTypeCode() method

  • getTypeCode() method is available in java.io package.
  • getTypeCode() method is used to retrieve character code of field type.
  • getTypeCode() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
  • getTypeCode() method does not throw an exception at the time of returning type code of field.

Syntax:

    public char getTypeCode();

Parameter(s):

  • It does not accept any parameter.

Return value:

The return type of the method is char, it returns the typecode of the serializable field.

Example:

// Java program to demonstrate the example 
// of char getTypeCode() method 
// of ObjectStreamField

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

public class GetTypeCodeOfOSF {
 public static void main(String[] args) {
  // Instantiates ObjectStreamClass for Calendar
  ObjectStreamClass o_sc = ObjectStreamClass.lookup(Calendar.class);

  // By using getField() method is to get the field
  // value from Calendar 
  ObjectStreamField field1 = o_sc.getField("isTimeSet");
  ObjectStreamField field2 = o_sc.getField("fields");

  // By using getTypeCode() method is to return
  // the type code of the field

  char field1_typecode = field1.getTypeCode();
  System.out.println("field1.getTypeCode(): " + field1_typecode);

  char field2_typecode = field2.getTypeCode();
  System.out.println("field2.getTypeCode(): " + field2_typecode);
 }
}

Output

field1.getTypeCode(): Z
field2.getTypeCode(): [


Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.