Enum ThreadingBehavior

java.lang.Object
java.lang.Enum<ThreadingBehavior>
org.apache.http.annotation.ThreadingBehavior
All Implemented Interfaces:
Serializable, Comparable<ThreadingBehavior>, java.lang.constant.Constable

public enum ThreadingBehavior extends Enum<ThreadingBehavior>
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 Constants
    Enum Constant
    Description
    Instances 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 Type
    Method
    Description
    Returns the enum constant of this type with the specified name.
    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

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • IMMUTABLE

      public static final ThreadingBehavior IMMUTABLE
      Instances of classes with the given contract are expected to be fully immutable and thread-safe.
    • IMMUTABLE_CONDITIONAL

      public static final ThreadingBehavior 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

      public static final ThreadingBehavior SAFE
      Instances of classes with the given contract are expected to be fully thread-safe.
    • SAFE_CONDITIONAL

      public static final ThreadingBehavior 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

      public static final ThreadingBehavior UNSAFE
      Instances of classes with the given contract are expected to be non thread-safe.
  • Method Details

    • values

      public static ThreadingBehavior[] 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

      public static ThreadingBehavior valueOf(String name)
      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 name
      NullPointerException - if the argument is null