public class TypeMessage {
public static enum GRAPH_ERROR {
ERROR_INPUT, ERROR_GRAPH
}
public enum INPUT_TYPE {
INTEGER, DOUBLE
}
}
First enum is static, second is not static. I use TypeMessage.GRAPH_ERROR
and TypeMessage.INPUT_TYPE
.
Q: Does the fact that I wrote the word static in this situation has no effect?