uk.co.bigbeeconsultants.bconfig

Parser

object Parser

Parses configuration files via the readXxx methods. This is done by creating an instance of Parser.

Note that the data source arguments used by the readXxx methods must not be null. If you would prefer to read from a nullable input stream, create your own uk.co.bigbeeconsultants.bconfig.Parser instance directly.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Parser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val SectionSeparator: Char

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  18. def readFile(file: File, delimiter: Char = '='): Parser

    Reads a file.

    Reads a file.

    file

    the source file, which must not be null

    delimiter

    provides a different delimiter between keys and their values (default is '=')

    Annotations
    @throws( classOf[ConfigException] )
  19. def readFromClasspath(resourceName: String, delimiter: Char = '='): Parser

    Reads a classpath resource via the classloader.

    Reads a classpath resource via the classloader.

    resourceName

    the name of the configuration file as a resource on the classpath

    delimiter

    provides a different delimiter between keys and their values (default is '=')

    Annotations
    @throws( classOf[ConfigException] )
  20. def readSource(source: ConfigSourceJ, delimiter: Char = '='): Parser

    Reads an arbitrary source.

    Reads an arbitrary source.

    source

    some source of data, which must not be null

    delimiter

    provides a different delimiter between keys and their values (default is '=')

    Annotations
    @throws( classOf[ConfigException] )
  21. def readStream(in: InputStream, name: String, delimiter: Char = '='): Parser

    Reads an input stream.

    Reads an input stream.

    in

    the input stream, which must not be null

    delimiter

    provides a different delimiter between keys and their values (default is '=')

    Annotations
    @throws( classOf[ConfigException] )
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. def toString(): String

    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped