Enum Class EFileStatType

java.lang.Object
java.lang.Enum<EFileStatType>
be.gaudry.model.file.chart.EFileStatType
All Implemented Interfaces:
Serializable, Comparable<EFileStatType>, Constable

public enum EFileStatType extends Enum<EFileStatType>
Since:
1.0 Sep 14, 2009
Author:
Steph GAUDRY
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Statistics by file attribute
    Statistics by file count
    Statistics by file extension
    Statistics by file size (size of all files in the directory, excluding subdirectories)
    Statistics by directory size (size of all files in the directory, including subdirectories)
    Statistics by file last access group (today, this week, this month, this year)
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a localized description of an EFileStatType, or the name of this enum constant (as contained in the declaration) if an error occurs when trying to use the language resource file.
    Returns a localized representation of an EFileStatType, or the name of this enum constant (as contained in the declaration) if an error occurs when trying to use the language resource file.
    valueOf​(String name)
    Returns the enum constant of this class with the specified name.
    static EFileStatType[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • EXTENSION

      public static final EFileStatType EXTENSION
      Statistics by file extension
    • ATTRIBUTE

      public static final EFileStatType ATTRIBUTE
      Statistics by file attribute
    • LAST_ACCESS

      public static final EFileStatType LAST_ACCESS
      Statistics by file last access group (today, this week, this month, this year)
    • FILE_SIZE

      public static final EFileStatType FILE_SIZE
      Statistics by file size (size of all files in the directory, excluding subdirectories)
    • FOLDER_SIZE

      public static final EFileStatType FOLDER_SIZE
      Statistics by directory size (size of all files in the directory, including subdirectories)
    • COUNT

      public static final EFileStatType COUNT
      Statistics by file count
  • Method Details

    • values

      public static EFileStatType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EFileStatType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Returns a localized representation of an EFileStatType, or the name of this enum constant (as contained in the declaration) if an error occurs when trying to use the language resource file.
      Overrides:
      toString in class Enum<EFileStatType>
      See Also:
      LanguageHelper
    • getDescription

      public String getDescription()
      Returns a localized description of an EFileStatType, or the name of this enum constant (as contained in the declaration) if an error occurs when trying to use the language resource file.
      See Also:
      LanguageHelper