PermSet

replpp.shaded.os.PermSet
See thePermSet companion object
case class PermSet(value: Int)

A set of permissions; can be converted easily to the rw-rwx-r-x form via toString, or to a set of PosixFilePermissions via toSet and the other way via PermSet.fromString/PermSet.fromSet

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def +(elem: PosixFilePermission): PermSet
def ++(other: PermSet): PermSet
def -(elem: PosixFilePermission): PermSet
def --(other: PermSet): PermSet
def contains(elem: PosixFilePermission): Boolean
def toInt(): Int
def toSet(): Set[PosixFilePermission]
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product