package com.qianwen.core.tool.metadata.config; public interface ConfigKeyValue extends ConfigKey { V getValue(); default boolean isNull() { return null == getValue(); } default boolean isNotNull() { return null != getValue(); } }