-
- 类型参数:
T
- 泛型
- 所有已知子接口:
ResourceEvent<T>
- 所有已知实现类:
ResourceEvent.ResourceChangeEvent
public interface ResourceEvent<T>
详情见: https://redkale.org- 从以下版本开始:
- 2.7.0
- 作者:
- zhangjx
-
-
嵌套类概要
嵌套类 修饰符和类型 接口 说明 static class
ResourceEvent.ResourceChangeEvent<T>
-
方法概要
所有方法 静态方法 实例方法 抽象方法 默认方法 修饰符和类型 方法 说明 static boolean
containsName(ResourceEvent[] events, String... names)
default String
coverNewValue()
default String
coverOldValue()
static <V> ResourceEvent<V>
create(String name, V newValue, V oldValue)
static List<ResourceEvent>
create(Properties oldProps, Properties newProps)
String
name()
T
newValue()
T
oldValue()
-
-
-
方法详细资料
-
name
String name()
-
newValue
T newValue()
-
oldValue
T oldValue()
-
coverNewValue
default String coverNewValue()
-
coverOldValue
default String coverOldValue()
-
containsName
static boolean containsName(ResourceEvent[] events, String... names)
-
create
static List<ResourceEvent> create(Properties oldProps, Properties newProps)
-
create
static <V> ResourceEvent<V> create(String name, V newValue, V oldValue)
-
-