Package org.apache.http.annotation
Enum ThreadingBehavior
- All Implemented Interfaces:
Serializable
,Comparable<ThreadingBehavior>
,java.lang.constant.Constable
Defines types of threading behavior enforced at runtime.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInstances of classes with the given contract are expected to be fully immutable and thread-safe.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.Instances of classes with the given contract are expected to be fully thread-safe.Instances of classes with the given contract are expected to be thread-safe if their dependencies injected at construction time are thread-safe.Instances of classes with the given contract are expected to be non thread-safe. -
Method Summary
Modifier and TypeMethodDescriptionstatic ThreadingBehavior
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
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
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 Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-