Enum FileNotifyAction

    • Enum Constant Detail

      • FILE_ACTION_MODIFIED

        public static final FileNotifyAction FILE_ACTION_MODIFIED
      • FILE_ACTION_RENAMED_OLD_NAME

        public static final FileNotifyAction FILE_ACTION_RENAMED_OLD_NAME
      • FILE_ACTION_RENAMED_NEW_NAME

        public static final FileNotifyAction FILE_ACTION_RENAMED_NEW_NAME
      • FILE_ACTION_ADDED_STREAM

        public static final FileNotifyAction FILE_ACTION_ADDED_STREAM
      • FILE_ACTION_REMOVED_STREAM

        public static final FileNotifyAction FILE_ACTION_REMOVED_STREAM
      • FILE_ACTION_MODIFIED_STREAM

        public static final FileNotifyAction FILE_ACTION_MODIFIED_STREAM
      • FILE_ACTION_REMOVED_BY_DELETE

        public static final FileNotifyAction FILE_ACTION_REMOVED_BY_DELETE
      • FILE_ACTION_ID_NOT_TUNNELLED

        public static final FileNotifyAction FILE_ACTION_ID_NOT_TUNNELLED
      • FILE_ACTION_TUNNELLED_ID_COLLISION

        public static final FileNotifyAction FILE_ACTION_TUNNELLED_ID_COLLISION
    • Method Detail

      • values

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

        public static FileNotifyAction 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