Enum Class RetryCount

java.lang.Object
java.lang.Enum<RetryCount>
org.refcodes.data.RetryCount
All Implemented Interfaces:
Serializable, Comparable<RetryCount>, Constable, org.refcodes.mixin.ValueAccessor<Integer>

public enum RetryCount extends Enum<RetryCount> implements org.refcodes.mixin.ValueAccessor<Integer>
The RetryCount defined values used inside a control flow.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>

    Nested classes/interfaces inherited from interface org.refcodes.mixin.ValueAccessor

    org.refcodes.mixin.ValueAccessor.ValueBuilder<V extends Object,B extends org.refcodes.mixin.ValueAccessor.ValueBuilder<V,B>>, org.refcodes.mixin.ValueAccessor.ValueMutator<V extends Object>, org.refcodes.mixin.ValueAccessor.ValueProperty<V extends Object>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
     
     
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static RetryCount
    Returns the enum constant of this class with the specified name.
    static RetryCount[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface org.refcodes.mixin.ValueAccessor

    getValueOr
  • Enum Constant Details

  • Method Details

    • values

      public static RetryCount[] 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 RetryCount 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
    • getValue

      public Integer getValue()
      Specified by:
      getValue in interface org.refcodes.mixin.ValueAccessor<Integer>