Enum EventType

    • Enum Constant Detail

      • AUTOSCALING_STATS_REPORT

        public static final EventType AUTOSCALING_STATS_REPORT
      • CREATING

        public static final EventType CREATING
      • DBFS_DOWN

        public static final EventType DBFS_DOWN
      • DID_NOT_EXPAND_DISK

        public static final EventType DID_NOT_EXPAND_DISK
      • DRIVER_HEALTHY

        public static final EventType DRIVER_HEALTHY
      • DRIVER_NOT_RESPONDING

        public static final EventType DRIVER_NOT_RESPONDING
      • DRIVER_UNAVAILABLE

        public static final EventType DRIVER_UNAVAILABLE
      • EDITED

        public static final EventType EDITED
      • EXPANDED_DISK

        public static final EventType EXPANDED_DISK
      • FAILED_TO_EXPAND_DISK

        public static final EventType FAILED_TO_EXPAND_DISK
      • INIT_SCRIPTS_FINISHED

        public static final EventType INIT_SCRIPTS_FINISHED
      • INIT_SCRIPTS_STARTED

        public static final EventType INIT_SCRIPTS_STARTED
      • METASTORE_DOWN

        public static final EventType METASTORE_DOWN
      • NODES_LOST

        public static final EventType NODES_LOST
      • NODE_BLACKLISTED

        public static final EventType NODE_BLACKLISTED
      • NODE_EXCLUDED_DECOMMISSIONED

        public static final EventType NODE_EXCLUDED_DECOMMISSIONED
      • PINNED

        public static final EventType PINNED
      • RESIZING

        public static final EventType RESIZING
      • RESTARTING

        public static final EventType RESTARTING
      • RUNNING

        public static final EventType RUNNING
      • SPARK_EXCEPTION

        public static final EventType SPARK_EXCEPTION
      • STARTING

        public static final EventType STARTING
      • TERMINATING

        public static final EventType TERMINATING
      • UNPINNED

        public static final EventType UNPINNED
      • UPSIZE_COMPLETED

        public static final EventType UPSIZE_COMPLETED
    • Method Detail

      • values

        public static EventType[] 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 (EventType c : EventType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EventType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null