Packages

package ini

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ini
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class ConfigParser() extends Product with Serializable

    INI-syle config parser.

  2. case class ParseException(position: Position, message: String, line: String) extends Exception with Product with Serializable
  3. case class Parseable(readable: Readable, filename: String) extends Product with Serializable
  4. case class Position(file: String, line: Int, col: Int) extends Product with Serializable
  5. case class Section(value: LinkedHashMap[String, Value]) extends Value with Product with Serializable
  6. case class Str(value: String) extends Value with Product with Serializable
  7. sealed trait Value extends AnyRef

Value Members

  1. def read(inputs: Parseable*): Section

    Priority-ordered input files.

    Priority-ordered input files. When config values will be looked up, the entry first encountered in this list will be used.

  2. object Parseable extends Serializable
  3. object Section extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped