Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Terminology for path till class name in Java

Tags:

java

Suppose, I've package org.test.selenium and class which is defined for it is TestClass. Then, what is the terminology for the path org.test.selenium.TestClass in Java?

Actually, I want to pass the variable which contains this path to a method and hence want to give correct name to the variable.

like image 963
Alpha Avatar asked Aug 05 '26 17:08

Alpha


1 Answers

It's commonly called the "Fully Qualified Class Name" (FQCN), and shows up as such in various online acronym dictionaries.

The Java specification mostly uses the terms "fully qualified name" or "canonical name" of a class, interface, type, etc.

like image 151
Robby Cornelissen Avatar answered Aug 09 '26 02:08

Robby Cornelissen



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!