class OpenOptions extends AnyRef
Describes how an io.vertx.scala.core.file.AsyncFile should be opened.
- Alphabetic
- By Inheritance
- OpenOptions
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new OpenOptions(_asJava: core.file.OpenOptions)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def asJava: core.file.OpenOptions
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getPerms: String
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def isAppend: Boolean
- def isCreate: Boolean
- def isCreateNew: Boolean
- def isDeleteOnClose: Boolean
- def isDsync: Boolean
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isRead: Boolean
- def isSparse: Boolean
- def isSync: Boolean
- def isTruncateExisting: Boolean
- def isWrite: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
setAppend(value: Boolean): OpenOptions
Whether the file should be opened in append mode.
Whether the file should be opened in append mode. Defaults to
false
. -
def
setCreate(value: Boolean): OpenOptions
Set whether the file should be created if it does not already exist.
-
def
setCreateNew(value: Boolean): OpenOptions
Set whether the file should be created and fail if it does exist already.
-
def
setDeleteOnClose(value: Boolean): OpenOptions
Set whether the file should be deleted when it's closed, or the JVM is shutdown.
-
def
setDsync(value: Boolean): OpenOptions
Set whether every write to the file's content ill be written synchronously to the underlying hardware.
-
def
setPerms(value: String): OpenOptions
Set the permissions string
-
def
setRead(value: Boolean): OpenOptions
Set whether the file is to be opened for reading
-
def
setSparse(value: Boolean): OpenOptions
Set whether a hint should be provided that the file to created is sparse
-
def
setSync(value: Boolean): OpenOptions
Set whether every write to the file's content and meta-data will be written synchronously to the underlying hardware.
-
def
setTruncateExisting(value: Boolean): OpenOptions
Set whether the file should be truncated to zero length on opening if it exists and is opened for write
-
def
setWrite(value: Boolean): OpenOptions
Set whether the file is to be opened for writing
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )