class ConfigUpdateBuilder extends AnyRef
- Alphabetic
- By Inheritance
- ConfigUpdateBuilder
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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
- def apply(): Boolean
Applies current configuration in a persistent way.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def fromPath(file: File): ConfigUpdateBuilder
Sets a configs from an existing file.
- def fromPath(path: String): ConfigUpdateBuilder
Sets a configs from an existing file.
- def fromString(configStr: String): ConfigUpdateBuilder
Sets a configs from a JSON config string.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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 reset(): ConfigUpdateBuilder
Clear the current state of config.
- 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(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withDataFrameShapeBelow(active: Boolean): ConfigUpdateBuilder
Print the dataframe shape below the dataframe when displaying tables.
Print the dataframe shape below the dataframe when displaying tables.
For more details, see this.
- def withMaxTableColumns(nCols: Int): ConfigUpdateBuilder
Set the max number of columns used to print tables.
Set the max number of columns used to print tables.
If n < 0, then print all the columns.
For more details, see this.
- def withMaxTableRows(nRows: Int): ConfigUpdateBuilder
Set the max number of rows used to print tables.
Set the max number of rows used to print tables.
If n < 0, then print all the rows.
For more details, see this.
- def withOption(key: String, value: String): ConfigUpdateBuilder
Sets a config option from a key and value pair.
- def withOptions(opts: Iterable[(String, String)]): ConfigUpdateBuilder
Sets a configs from an Iterable of key and value pairs.
Sets a configs from an Iterable of key and value pairs.
For more details, see this.
- def withOptions(opts: Map[String, String]): ConfigUpdateBuilder
Sets a configs from a Java Map.
Sets a configs from a Java Map.
For more details, see this.
- def withTableFormatting(format: TableFormat): ConfigUpdateBuilder
Set table formatting style.
Set table formatting style.
For more details, see this.