BuiltinKeys

public class BuiltinKeys

Built-in key types which you can use to define configurable values. More key types may be added here if they are deemed important for

Constructors

Link copied to clipboard
public void BuiltinKeys()

Properties

Link copied to clipboard
public static IKeyDeserializer<Boolean> BOOL
Link copied to clipboard
public static IntDeserializer INT
Link copied to clipboard
public static IKeyDeserializer<String> STRING

Functions

Link copied to clipboard
public static IKeyDeserializer<T> enumOf<T extends Enum<? extends Object>>(Class<T> enumClass)
Produce an IKeyDeserializer that deserializes an enum of type {@param }
Link copied to clipboard
public static IKeyDeserializer<Set<T>> setOf<T>(IKeyDeserializer<T> deserializableKey)
Produce a IKeyDeserializer that deserializes a set of type {@param } Due to the limitations of some configuration providers, a set is the only type which can contain multiple keys that require additional sub-keys.