Skip to content

supported types

Ofer Skolsky edited this page Oct 6, 2020 · 1 revision

The following is a list of supported types (out of the box)

  • Boolean
  • BytesConfig
  • Duration
  • enum
  • int
  • Integer
  • long
  • Long
  • double
  • Double
  • Object
  • StringsConfig
  • List
    • List<Integer>
    • List<String>
    • List<Double>
    • List<Long>
    • List<Object>
    • List<Boolean>
    • List<Config>
    • List<ConfigObject>
    • List<ConfigValue>
    • List<Duration>
    • List<ConfigMemorySize>
    • List<StringsConfig>
  • Set
    • Set<Integer>
    • Set<String>
    • Set<Double>
    • Set<Long>
    • Set<Object>
    • Set<Boolean>
    • Set<Config>
    • Set<ConfigObject>
    • Set<ConfigValue>
    • Set<Duration>
    • Set<ConfigMemorySize>
    • Set<StringsConfig>
  • Map<String, Object>

what to do if my type is not supported?

create a setter that takes in a supported type, and convert it internaly to your type.

Clone this wiki locally