Enum DirectoryStrategyType

    • Enum Constant Detail

      • MAX_DISK_USABLE_SPACE_FIRST_STRATEGY

        public static final DirectoryStrategyType MAX_DISK_USABLE_SPACE_FIRST_STRATEGY
      • MIN_FOLDER_OCCUPIED_SPACE_FIRST_STRATEGY

        public static final DirectoryStrategyType MIN_FOLDER_OCCUPIED_SPACE_FIRST_STRATEGY
      • RANDOM_ON_DISK_USABLE_SPACE_STRATEGY

        public static final DirectoryStrategyType RANDOM_ON_DISK_USABLE_SPACE_STRATEGY
    • Method Detail

      • values

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

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