Class CheckedObjectIntProcedure<T>
- java.lang.Object
-
- org.eclipse.collections.impl.block.procedure.checked.CheckedObjectIntProcedure<T>
-
- All Implemented Interfaces:
java.io.Serializable
,java.util.function.ObjIntConsumer<T>
,ObjectIntProcedure<T>
public abstract class CheckedObjectIntProcedure<T> extends java.lang.Object implements ObjectIntProcedure<T>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description CheckedObjectIntProcedure()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract void
safeValue(T object, int index)
void
value(T object, int index)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure
accept
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
value
public final void value(T object, int index)
- Specified by:
value
in interfaceObjectIntProcedure<T>
-
safeValue
public abstract void safeValue(T object, int index) throws java.lang.Exception
- Throws:
java.lang.Exception
-
-