public class TypeMessage {
public static enum GRAPH_ERROR {
ERROR_INPUT, ERROR_GRAPH
}
public enum INPUT_TYPE {
INTEGER, DOUBLE
}
}
第一个枚举是静态的,第二个不是静态的。我使用TypeMessage.GRAPH_ERROR
和TypeMessage.INPUT_TYPE
。
答案 0 :(得分:2)
答案 1 :(得分:1)
对于枚举而言并不重要。您可以采用相同的方式访问这两个枚举:TypeMessage.GAPH_ERROR
和Typemessage.INPUT_TYPE
。