|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ThreadingBehavior> org.apache.http.annotation.ThreadingBehavior
public enum ThreadingBehavior
Defines types of threading behavior enforced at runtime.
Enum Constant Summary | |
---|---|
IMMUTABLE
Instances of classes with the given contract are expected to be fully immutable and thread-safe. |
|
IMMUTABLE_CONDITIONAL
Instances of classes with the given contract are expected to be immutable if their dependencies injected at construction time are immutable and are expected to be thread-safe if their dependencies are thread-safe. |
|
SAFE
Instances of classes with the given contract are expected to be fully thread-safe. |
|
SAFE_CONDITIONAL
Instances of classes with the given contract are expected to be thread-safe if their dependencies injected at construction time are thread-safe. |
|
UNSAFE
Instances of classes with the given contract are expected to be non thread-safe. |
Method Summary | |
---|---|
static ThreadingBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ThreadingBehavior[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ThreadingBehavior IMMUTABLE
public static final ThreadingBehavior IMMUTABLE_CONDITIONAL
public static final ThreadingBehavior SAFE
public static final ThreadingBehavior SAFE_CONDITIONAL
public static final ThreadingBehavior UNSAFE
Method Detail |
---|
public static ThreadingBehavior[] values()
for (ThreadingBehavior c : ThreadingBehavior.values()) System.out.println(c);
public static ThreadingBehavior valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |