c

sbt.io

LinkOptionPath

final class LinkOptionPath extends RichNioPath

Linear Supertypes
RichNioPath, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LinkOptionPath
  2. RichNioPath
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LinkOptionPath(p: java.nio.file.Path, lo: Vector[LinkOption])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def aclFileAttributeView: AclFileAttributeView
    Definition Classes
    RichNioPath
  5. def addPermission(permission: PosixFilePermission): Unit

    Adds permission to this file.

    Adds permission to this file. This operation requires underlying filesystem to support IO.isPosix.

    permission

    the permission to add

    Definition Classes
    RichNioPath
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val asPath: java.nio.file.Path
    Definition Classes
    LinkOptionPathRichNioPath
  8. def attributes: BasicFileAttributes
    Definition Classes
    RichNioPath
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. def dosAttributes: DosFileAttributes
    Definition Classes
    RichNioPath
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def group: GroupPrincipal

    Returns the group owner of a file.

    Returns the group owner of a file. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    Definition Classes
    RichNioPath
  16. def groupName: String

    Returns the group owner of a file.

    Returns the group owner of a file. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    Definition Classes
    RichNioPath
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def isGroupExecutable: Boolean

    Tests if this file has the group+execute permission.

    Tests if this file has the group+execute permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  19. def isGroupReadable: Boolean

    Tests if this file has the group+read permission.

    Tests if this file has the group+read permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  20. def isGroupWritable: Boolean

    Tests if this file has the group+write permission.

    Tests if this file has the group+write permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def isOthersExecutable: Boolean

    Tests if this file has the others+execute permission.

    Tests if this file has the others+execute permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  23. def isOthersReadable: Boolean

    Tests if this file has the others+read permission.

    Tests if this file has the others+read permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  24. def isOthersWritable: Boolean

    Tests if this file has the others+write permission.

    Tests if this file has the others+write permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  25. def isOwnerExecutable: Boolean

    Tests if this file has the owner+execute permission.

    Tests if this file has the owner+execute permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  26. def isOwnerReadable: Boolean

    Tests if this file has the owner+read permission.

    Tests if this file has the owner+read permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  27. def isOwnerWritable: Boolean

    Tests if this file has the owner+write permission.

    Tests if this file has the owner+write permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. def owner: UserPrincipal

    Returns the owner of a file.

    Returns the owner of a file. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    Definition Classes
    RichNioPath
  32. def ownerName: String

    Returns the owner of a file.

    Returns the owner of a file. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    Definition Classes
    RichNioPath
  33. def permissions: Set[PosixFilePermission]

    Returns this file's POSIX permissions.

    Returns this file's POSIX permissions. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  34. def permissionsAsString: String

    Returns this file's POSIX permissions.

    Returns this file's POSIX permissions. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  35. def posixAttributes: PosixFileAttributes
    Definition Classes
    RichNioPath
  36. def removePermission(permission: PosixFilePermission): Unit

    Removes permission from this file.

    Removes permission from this file. This operation requires underlying filesystem to support IO.isPosix.

    permission

    the permission to remove

    Definition Classes
    RichNioPath
  37. def setGroup(group: String): Unit

    Updates the group owner of the file.

    Updates the group owner of the file. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    group

    the new group owner

    Definition Classes
    RichNioPath
  38. def setOwner(owner: String): Unit

    Updates the file owner.

    Updates the file owner. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    owner

    the new group owner

    Definition Classes
    RichNioPath
  39. def setPermissions(permissions: Set[PosixFilePermission]): Unit

    Updates permission of this file.

    Updates permission of this file. This operation requires underlying filesystem to support IO.isPosix.

    permissions

    the permissions to add

    Definition Classes
    RichNioPath
  40. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  41. def testPermission(permission: PosixFilePermission): Boolean

    Tests if this file has the given permission.

    Tests if this file has the given permission. This operation requires underlying filesystem to support IO.isPosix.

    permission

    the permission to remove

    Definition Classes
    RichNioPath
  42. def toString(): String
    Definition Classes
    AnyRef → Any
  43. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from RichNioPath

Inherited from AnyRef

Inherited from Any

Ungrouped