Interface ContainerOperationResult.Operation<T>
-
- All Known Implementing Classes:
ContainerOperationResult.GenericOperation
- Enclosing class:
- ContainerOperationResult<T>
public static interface ContainerOperationResult.Operation<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContainergetContainer()ThrowablegetFailure()TgetObject()ContainerOperationResult.TypegetType()booleanhasFailed()
-
-
-
Method Detail
-
getType
ContainerOperationResult.Type getType()
-
getContainer
Container getContainer()
-
hasFailed
boolean hasFailed()
-
getFailure
Throwable getFailure()
-
getObject
T getObject()
-
-