Enum RequestHandler.Result

java.lang.Object
java.lang.Enum<RequestHandler.Result>
org.apache.sshd.common.channel.RequestHandler.Result
All Implemented Interfaces:
Serializable, Comparable<RequestHandler.Result>, java.lang.constant.Constable
Enclosing interface:
RequestHandler<T>

public static enum RequestHandler.Result extends Enum<RequestHandler.Result>
  • Enum Constant Details

  • Field Details

  • Method Details

    • values

      public static RequestHandler.Result[] 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 RequestHandler.Result 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
    • fromName

      public static RequestHandler.Result fromName(String name)
      Parameters:
      name - The result name - ignored if null/empty
      Returns:
      The matching RequestHandler.Result value (case insensitive) or null if no match found