return validate(value);
}
public <T> T decodeObject(@Nonnull Class<T> type, ConfigValue configValue)
throws JsonProcessingException, IOException {
ConfigTraversingParser configParser = new ConfigTraversingParser(configValue, objectMapper);
return validate(configParser.readValueAs(type));
}