in this question i m confused how all this .class is generated classes are A$Enum$1,A$Enum$2,A$Enum,A$Enum,A plz expalin the concept behind it, i opened the .class file in which i dont understand the A$Enum$2,A$Enum$1 class code plz expalin me concept what that.string means
class A
{
enum Enum
{
Q1,Q2,Q3{
},
Q4 {
},
Q5;
}
enum Enum1
{}
}
A$Enum$1.class code
class .String extends .String
{
.String(String s, int i)
{
super(s, i, null);
}
}
A total of 6 classes are created.
Here is the decompiled code for
A$Enum$1Disassembled code for the same.