Enum Class BlockingDefault

java.lang.Object
java.lang.Enum<BlockingDefault>
org.jboss.resteasy.reactive.common.processor.BlockingDefault
All Implemented Interfaces:
Serializable, Comparable<BlockingDefault>, Constable

public enum BlockingDefault extends Enum<BlockingDefault>
  • Enum Constant Details

    • AUTOMATIC

      public static final BlockingDefault AUTOMATIC
      The nature of the method is determined by the return type
    • BLOCKING

      public static final BlockingDefault BLOCKING
    • NON_BLOCKING

      public static final BlockingDefault NON_BLOCKING
    • RUN_ON_VIRTUAL_THREAD

      public static final BlockingDefault RUN_ON_VIRTUAL_THREAD
  • Method Details

    • values

      public static BlockingDefault[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static BlockingDefault valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null