Enum RetryType

java.lang.Object
java.lang.Enum<RetryType>
com.sun.corba.ee.spi.protocol.RetryType
All Implemented Interfaces:
Serializable, Comparable<RetryType>

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

    • NONE

      public static final RetryType NONE
    • BEFORE_RESPONSE

      public static final RetryType BEFORE_RESPONSE
    • AFTER_RESPONSE

      public static final RetryType AFTER_RESPONSE
  • Field Details

    • isRetry

      private final boolean isRetry
  • Constructor Details

    • RetryType

      private RetryType(boolean isRetry)
  • Method Details

    • values

      public static RetryType[] 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 RetryType 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
    • isRetry

      public boolean isRetry()