public enum TcclLookupPrecedence extends Enum<TcclLookupPrecedence>
ClassLoader should be
done according to the other ones.| 枚举常量和说明 |
|---|
AFTER
The class lookup will be done in the thread context
ClassLoader if
the former hasn't been found in the other ClassLoaders. |
BEFORE
The class lookup will be done in the thread context
ClassLoader prior
to the other ClassLoaders. |
NEVER
The current thread context
ClassLoader will never be used during
the class lookup. |
public static final TcclLookupPrecedence NEVER
ClassLoader will never be used during
the class lookup.public static final TcclLookupPrecedence BEFORE
ClassLoader prior
to the other ClassLoaders.public static final TcclLookupPrecedence AFTER
ClassLoader if
the former hasn't been found in the other ClassLoaders.
This is the default value.public static TcclLookupPrecedence[] values()
for (TcclLookupPrecedence c : TcclLookupPrecedence.values()) System.out.println(c);
public static TcclLookupPrecedence valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.