Category Archives

Static method in Interface in Java

Static Methods in Interface are those methods, which are defined in the interface with the keyword static. Unlike other...

Static method in Interface in Java

Static Methods in Interface are those methods, which are defined in the interface with the keyword static. Unlike other...

Marker interface in Java

It is an empty interface (no field or methods). Examples of marker interface are Serializable, Clonnable and Remote interface....

Marker interface in Java

It is an empty interface (no field or methods). Examples of marker interface are Serializable, Clonnable and Remote interface....

Functional Interfaces In Java

A functional interface is an interface that contains only one abstract method. They can have only one functionality to...

Functional Interfaces In Java

A functional interface is an interface that contains only one abstract method. They can have only one functionality to...

Local Inner Class in Java

Local Inner Classes are the inner classes that are defined inside a block. Generally, this block is a method...

Local Inner Class in Java

Local Inner Classes are the inner classes that are defined inside a block. Generally, this block is a method...

Inner class in java

Inner class means one class which is a member of another class. There are basically four types of inner...

Inner class in java

Inner class means one class which is a member of another class. There are basically four types of inner...

Nested Classes in Java

In Java, it is possible to define a class within another class, such classes are known as nested classes....

Nested Classes in Java

In Java, it is possible to define a class within another class, such classes are known as nested classes....

Nested Interface in Java

We can declare interfaces as member of a class or another interface. Such an interface is called as member...

Nested Interface in Java

We can declare interfaces as member of a class or another interface. Such an interface is called as member...

Java Interface methods

There is a rule that every member of interface is only and only public whether you define or not....

Java Interface methods

There is a rule that every member of interface is only and only public whether you define or not....