All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.nio.file.StandardFileWatchEventKinds.scala Maven / Gradle / Ivy

The newest version!
package java.nio.file

object StandardWatchEventKinds {
  val ENTRY_CREATE =
    new WatchEvent.Kind[Path] {
      override val name   = "ENTRY_CREATE"
      override val `type` = classOf[Path]
    }

  val ENTRY_DELETE =
    new WatchEvent.Kind[Path] {
      override val name   = "ENTRY_DELETE"
      override val `type` = classOf[Path]
    }

  val ENTRY_MODIFY =
    new WatchEvent.Kind[Path] {
      override val name   = "ENTRY_MODIFY"
      override val `type` = classOf[Path]
    }

  val OVERFLOW =
    new WatchEvent.Kind[Object] {
      override val name   = "OVERFLOW"
      override val `type` = classOf[Object]
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy