public enum Scope extends Enum<Scope>
| 限定符和类型 | 方法和说明 |
|---|---|
protected abstract <T> net.isger.brick.inject.InternalFactory<? extends T> |
factory(Class<T> type,
String name,
net.isger.brick.inject.InternalFactory<? extends T> factory)
工厂方法
|
static Scope |
get(Class<?> clazz)
获取作用域
|
protected <T> Callable<? extends T> |
toCallable(net.isger.brick.inject.InternalContext context,
net.isger.brick.inject.InternalFactory<? extends T> factory)
回调方法
|
static Scope |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static Scope[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final Scope DEFAULT
public static final Scope SINGLETON
public static final Scope THREAD
public static final Scope STRATEGY
public static Scope[] values()
for (Scope c : Scope.values()) System.out.println(c);
public static Scope valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值protected <T> Callable<? extends T> toCallable(net.isger.brick.inject.InternalContext context, net.isger.brick.inject.InternalFactory<? extends T> factory)
context - factory - protected abstract <T> net.isger.brick.inject.InternalFactory<? extends T> factory(Class<T> type, String name, net.isger.brick.inject.InternalFactory<? extends T> factory)
type - name - factory - Copyright © 2024. All rights reserved.