Enum Class NFileTimeType

java.lang.Object
java.lang.Enum<NFileTimeType>
net.sf.sevenzipjbinding.NFileTimeType
All Implemented Interfaces:
Serializable, Comparable<NFileTimeType>, Constable

public enum NFileTimeType extends Enum<NFileTimeType>
Enumeration of the file-time formats used by 7-Zip, mirroring 7-Zip's native NFileTimeType constants.
Since:
9.20-2.00
Author:
Boris Brodski
  • Enum Constant Details

    • WINDOWS

      public static final NFileTimeType WINDOWS
      Microsoft Windows file time format
    • UNIX

      public static final NFileTimeType UNIX
      Unix file time format
    • DOS

      public static final NFileTimeType DOS
      Old Microsoft DOS file time format
  • Method Details

    • values

      public static NFileTimeType[] 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 NFileTimeType 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