PermSet

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

Companion:
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

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
Definition Classes
Any

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product