Enum SystemFileTimeSource

java.lang.Object
java.lang.Enum<SystemFileTimeSource>
io.roastedroot.zerofs.SystemFileTimeSource
All Implemented Interfaces:
FileTimeSource, Serializable, Comparable<SystemFileTimeSource>

enum SystemFileTimeSource extends Enum<SystemFileTimeSource> implements FileTimeSource
Implementation of of FileTimeSource that gets the current time from the system.
  • Enum Constant Details

  • Constructor Details

    • SystemFileTimeSource

      private SystemFileTimeSource()
  • Method Details

    • values

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

      public static SystemFileTimeSource valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • now

      public FileTime now()
      Description copied from interface: FileTimeSource
      Returns the current time according to this source as a FileTime.
      Specified by:
      now in interface FileTimeSource
    • toString

      public String toString()
      Overrides:
      toString in class Enum<SystemFileTimeSource>