Enum ForkedProcessEvent

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ForkedProcessEvent>

    public enum ForkedProcessEvent
    extends java.lang.Enum<ForkedProcessEvent>
    Events sent back to the plugin process.
    Since:
    3.0.0-M4
    • Field Detail

      • EVENTS

        public static final java.util.Map<java.lang.String,​ForkedProcessEvent> EVENTS
      • opcode

        private final java.lang.String opcode
    • Constructor Detail

      • ForkedProcessEvent

        private ForkedProcessEvent​(java.lang.String opcode)
    • Method Detail

      • values

        public static ForkedProcessEvent[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ForkedProcessEvent c : ForkedProcessEvent.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ForkedProcessEvent valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getOpcode

        public java.lang.String getOpcode()
      • isSysPropCategory

        public boolean isSysPropCategory()
      • isTestCategory

        public boolean isTestCategory()
      • isStandardStreamCategory

        public boolean isStandardStreamCategory()
      • isConsoleCategory

        public boolean isConsoleCategory()
      • isConsoleErrorCategory

        public boolean isConsoleErrorCategory()
      • isControlCategory

        public boolean isControlCategory()
      • isJvmExitError

        public boolean isJvmExitError()