ConfigValue

laika.config.ConfigValue
sealed trait ConfigValue extends Product, Serializable

The base trait for all configuration values.

This data structure is quite similar to those found in common JSON libraries (HOCON is a JSON superset after all).

The only exception is one special type: the ASTValue which can hold an instance of a document AST obtained from parsing text markup.

This can be useful in scenarios where substitution variables in templates or markup want to refer to other AST elements and include them into their AST tree as is.

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Known subtypes
class ASTValue
class ArrayValue
class ObjectValue
class BooleanValue
class DoubleValue
class LongValue
object NullValue.type
class StringValue
Show all

Members list

Value members

Inherited methods

def canEqual(that: Any): Boolean

Attributes

Inherited from:
Equals
def productArity: Int

Attributes

Inherited from:
Product
def productElement(n: Int): Any

Attributes

Inherited from:
Product
def productElementName(n: Int): String

Attributes

Inherited from:
Product
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def productPrefix: String

Attributes

Inherited from:
Product