Uses of Class
com.impossibl.postgres.system.Setting.Group
-
Packages that use Setting.Group Package Description com.impossibl.postgres.jdbc com.impossibl.postgres.system -
-
Uses of Setting.Group in com.impossibl.postgres.jdbc
Fields in com.impossibl.postgres.jdbc declared as Setting.Group Modifier and Type Field Description static Setting.Group
JDBCSettings. CLIENT_INFO
static Setting.Group
DataSourceSettings. DS
static Setting.Group
JDBCSettings. JDBC
-
Uses of Setting.Group in com.impossibl.postgres.system
Fields in com.impossibl.postgres.system declared as Setting.Group Modifier and Type Field Description static Setting.Group
SystemSettings. PROTO
static Setting.Group
SystemSettings. SERVER
static Setting.Group
SystemSettings. SYS
Methods in com.impossibl.postgres.system that return Setting.Group Modifier and Type Method Description static Setting.Group
Setting.Group. declare()
Forward declare a group that will be initialized by annotation processing.Setting.Group
Setting. getGroup()
Retrieve the setting's groupMethods in com.impossibl.postgres.system that return types with arguments of type Setting.Group Modifier and Type Method Description static Map<String,Setting.Group>
Setting.Group. getAll()
Name base map of all defined setting groupsMethods in com.impossibl.postgres.system with parameters of type Setting.Group Modifier and Type Method Description Settings
Settings. duplicateKnowing(Setting.Group... groups)
Duplicates the bag of settings knowing settings from the specified groupsConstructors in com.impossibl.postgres.system with parameters of type Setting.Group Constructor Description Setting(Setting.Group group, String description, Class<T> type, Supplier<String> dynamicDefaultSupplier, Setting.Converter<T> fromString, Function<T,String> toString, String[] names)
Constructs a new setting instance with a dynamic default value and without support via the annotation processor.Setting(Setting.Group group, String description, Class<T> type, T defaultValue, Setting.Converter<T> fromString, Function<T,String> toString, String[] names)
Constructs a new setting instance with a static default value and without support via the annotation processor.Settings(Setting.Group... groups)
Creates a bag of settings that recognizes only settings from the provided groups.
-