Package be.gaudry.model.file.chart
Enum Class EFileStatType
- All Implemented Interfaces:
Serializable
,Comparable<EFileStatType>
,Constable
- 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 ConstantDescriptionStatistics by file attributeStatistics by file countStatistics by file extensionStatistics 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 TypeMethodDescriptionReturns a localized description of an EFileStatType, or thename
of this enum constant (as contained in the declaration) if an error occurs when trying to use the language resource file.toString()
Returns a localized representation of an EFileStatType, or thename
of this enum constant (as contained in the declaration) if an error occurs when trying to use the language resource file.static EFileStatType
Returns the enum constant of this class with the specified name.static EFileStatType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXTENSION
Statistics by file extension -
ATTRIBUTE
Statistics by file attribute -
LAST_ACCESS
Statistics by file last access group (today, this week, this month, this year) -
FILE_SIZE
Statistics by file size (size of all files in the directory, excluding subdirectories) -
FOLDER_SIZE
Statistics by directory size (size of all files in the directory, including subdirectories) -
COUNT
Statistics by file count
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
toString
Returns a localized representation of an EFileStatType, or thename
of this enum constant (as contained in the declaration) if an error occurs when trying to use the language resource file.- Overrides:
toString
in classEnum<EFileStatType>
- See Also:
LanguageHelper
-
getDescription
Returns a localized description of an EFileStatType, or thename
of this enum constant (as contained in the declaration) if an error occurs when trying to use the language resource file.- See Also:
LanguageHelper
-