পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Wednesday, January 18, 2017

Java.io.ObjectInputStream.GetField Class

Introduction

The Java.io.ObjectInputStream.GetField class provide access to the persistent fields read from the input stream.

Class declaration

Following is the declaration for Java.io.ObjectInputStream.GetField class:
public abstract static class ObjectInputStream.GetField
  extends Object

Class constructors

S.N. Constructor & Description
1 ObjectInputStream.GetField()
Single Constructor

Class methods

S.N. Method & Description
1 abstract boolean defaulted(String name)
This method return true if the named field is defaulted and has no value in this stream.
2 abstract boolean get(String name, boolean val)
This method gets the value of the named boolean field from the persistent field.
3 abstract byte get(String name, byte val)
This method gets the value of the named byte field from the persistent field.
4 abstract char get(String name, char val)
This method gets the value of the named char field from the persistent field.
5 abstract double get(String name, double val)
This method gets the value of the named double field from the persistent field.
6 abstract float get(String name, float val)
This method gets the value of the named float field from the persistent field.
7 abstract int get(String name, int val)
This method gets the value of the named int field from the persistent field.
8 abstract long get(String name, long val)
This method gets the value of the named long field from the persistent field.
9 abstract Object get(String name, Object val)
This method get the value of the named Object field from the persistent field.
10 abstract short get(String name, short val)
This method gets the value of the named short field from the persistent field.
11 abstract ObjectStreamClass getObjectStreamClass()
This method gets the ObjectStreamClass that describes the fields in the stream.

Methods inherited

This class inherits methods from the following classes:
  • Java.io.Object

No comments:

Post a Comment