@hashgraph/solo
    Preparing search index...

    Type Parameters

    • T extends object

    Hierarchy (View Summary)

    Implements

    Implemented by

    Index

    Constructors

    Properties

    forest: Forest

    The forest model of the configuration keys and values.

    key: string
    mapper: ObjectMapper
    prefix?: string
    schema: Schema<T>

    Accessors

    Methods

    • Retrieves the value of the specified key from the configuration source and converts it to a boolean.

      Parameters

      • key: string

        The key to use to retrieve the value from the configuration source.

      Returns boolean

      The value of the specified key as a boolean.

    • Retrieves the value of the specified key from the configuration source and converts it to a number.

      Parameters

      • key: string

        The key to use to retrieve the value from the configuration source.

      Returns number

      The value of the specified key as a number.

    • Retrieves the value of the specified key from the configuration source and converts it an object of the specified type. If the key is not specified, the method returns the entire configuration as an object.

      Type Parameters

      • T

      Parameters

      • cls: ClassConstructor<T>

        The class of the object to which the value should be converted.

      • Optionalkey: string

        The key to use to retrieve the value from the configuration source.

      Returns T

      The value of the specified key as a boolean.

    • Retrieves the value of the specified key from the configuration source and converts it to an array of objects of the specified type. If the key is not specified, the method returns the entire configuration as an array of objects.

      Type Parameters

      • T extends T[]

      Parameters

      • cls: ClassConstructor<T>

        The class of the objects to which the values should be converted.

      • key: string

        The key to use to retrieve the values from the configuration source.

      Returns T[]

    • Retrieves the value of the specified key from the configuration source and converts it to a string.

      Parameters

      • key: string

        The key to use to retrieve the value from the configuration source.

      Returns string

      The value of the specified key as a string.

    • Retrieves the value of the specified key from the configuration source and converts it to a string array.

      Parameters

      • key: string

        The key to use to retrieve the value from the configuration source.

      Returns string[]

      The value of the specified key as a string array.

    • Enumerates the key-value pairs that are available in the configuration source.

      Returns Map<string, string>

      A map of key-value pairs that are available in the configuration source.

    • Enumerates the set of property names that are available in the configuration source.

      Returns Set<string>

      A set of property names that are available in the configuration source.