Enum Procedures.NoopProcedure

java.lang.Object
java.lang.Enum<Procedures.NoopProcedure>
org.eclipse.collections.impl.block.factory.Procedures.NoopProcedure
All Implemented Interfaces:
Serializable, Comparable<Procedures.NoopProcedure>, java.lang.constant.Constable, Consumer<Object>, Procedure<Object>
Enclosing class:
Procedures

private static enum Procedures.NoopProcedure extends Enum<Procedures.NoopProcedure> implements Procedure<Object>
  • Enum Constant Details

  • Field Details

  • Constructor Details

    • NoopProcedure

      private NoopProcedure()
  • Method Details

    • values

      public static Procedures.NoopProcedure[] 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 Procedures.NoopProcedure 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
    • value

      public void value(Object each)
      Specified by:
      value in interface Procedure<Object>