section

fun section(path: String, notFoundError: Boolean = true): Set<String>?

セクションを取得する。

Return

取得したセクション

Since

1.3.0

Parameters

path

コンフィグパス

notFoundError

存在しないデータの場合にエラーを出す default: true

fun <T> section(path: String, type: ConfigSectionType<T>, notFoundError: Boolean = true): List<T>?

セクションを取得し、ConfigSectionType で任意の型に変換する。

Return

取得したセクション

Since

1.3.0

Parameters

path

コンフィグパス

type

セクションタイプ

notFoundError

存在しないデータの場合にエラーを出す default: true