I have seen a question related to c#
How to create alias of System Constants class
Can you tell me does java provides similar feature
for eg.
System.out.println(sc.Hello); //see previous question
//here sc is the alias of class name SystemConstants sc
SystemConstants.java class
class SystemConstants
{
public static final Hello = "Hello";
public static final Youth = "Youth";
}