Package org.elasticsearch.core
Enum Class Releasables
- All Implemented Interfaces:
Serializable,Comparable<Releasables>,Constable
Utility methods to work with
Releasables.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Method Summary
Modifier and TypeMethodDescriptionstatic voidclose(boolean success, Iterable<Releasable> releasables) static voidclose(boolean success, Releasable... releasables) static voidclose(Iterable<? extends Releasable> releasables) Release the providedReleasables.static voidclose(Releasable releasable) Release the providedReleasable.static voidclose(Releasable... releasables) Release the providedReleasables.static voidcloseExpectNoException(Releasable releasable) Release the providedReleasableexpecting no exception to by thrown.static voidcloseExpectNoException(Releasable... releasables) Release the providedReleasables expecting no exception to by thrown by any of them.static voidcloseWhileHandlingException(Releasable... releasables) Release the providedReleasables, ignoring exceptions.static ReleasablereleaseOnce(Releasable releasable) Wraps aReleasablesuch that itsReleasable.close()method can be called multiple times without double releasing.static ReleasablesReturns the enum constant of this class with the specified name.static Releasables[]values()Returns an array containing the constants of this enum class, in the order they are declared.static Releasablewrap(Iterable<Releasable> releasables) Wrap several releasables into a single one.static Releasablewrap(Releasable... releasables)
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
close
Release the providedReleasables. -
close
Release the providedReleasable. -
close
Release the providedReleasables. -
closeExpectNoException
Release the providedReleasables expecting no exception to by thrown by any of them. -
closeExpectNoException
Release the providedReleasableexpecting no exception to by thrown. -
closeWhileHandlingException
Release the providedReleasables, ignoring exceptions. -
close
-
close
-
wrap
Wrap several releasables into a single one. This is typically useful for use with try-with-resources: for example let's assume that you store in a list several resources that you would like to see released after execution of the try block:List<Releasable> resources = ...; try (Releasable releasable = Releasables.wrap(resources)) { // do something } // the resources will be released when reaching here -
wrap
- See Also:
-
releaseOnce
Wraps aReleasablesuch that itsReleasable.close()method can be called multiple times without double releasing.
-