如果我在 Java 类中有一个 Enum 作为助手,有没有办法在它所帮助的类之外引用该 Enum?
基本上,我所拥有的是:
class Account extends MyClass {
HashMap<Property, String> property = new HashMap<Property, String>();
public Account() {
}
public enum Property {
USERID,
PASSWORD;
}
}
我希望能够在 Account 类之外访问 Property 枚举。我想这样做的原因是因为这是另一个的子类,并且我希望能够在不引用唯一枚举名称的情况下访问给定子类的属性(即:不将每个子类称为,比如说, AccountProperty 或 ResearchProperty 或 TaskProperty... 等)。