Enum Class SystemFileTimeSource

java.lang.Object
java.lang.Enum<SystemFileTimeSource>
com.google.common.jimfs.SystemFileTimeSource
All Implemented Interfaces:
FileTimeSource, Serializable, Comparable<SystemFileTimeSource>, Constable

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 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 SystemFileTimeSource 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
    • 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>