public enum TcclLookupPrecedence extends java.lang.Enum<TcclLookupPrecedence>
ClassLoader
should be
done according to the other ones.Enum Constant and Description |
---|
AFTER
The class lookup will be done in the thread context
ClassLoader if
the former hasn't been found in the other ClassLoader s. |
BEFORE
The class lookup will be done in the thread context
ClassLoader prior
to the other ClassLoader s. |
NEVER
The current thread context
ClassLoader will never be used during
the class lookup. |
Modifier and Type | Method and Description |
---|---|
static TcclLookupPrecedence |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TcclLookupPrecedence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TcclLookupPrecedence NEVER
ClassLoader
will never be used during
the class lookup.public static final TcclLookupPrecedence BEFORE
ClassLoader
prior
to the other ClassLoader
s.public static final TcclLookupPrecedence AFTER
ClassLoader
if
the former hasn't been found in the other ClassLoader
s.
This is the default value.public static TcclLookupPrecedence[] values()
for (TcclLookupPrecedence c : TcclLookupPrecedence.values()) System.out.println(c);
public static TcclLookupPrecedence valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.