Package org.elasticsearch.test
Record Class PrivilegedOperations.ClosableURLClassLoader
java.lang.Object
java.lang.Record
org.elasticsearch.test.PrivilegedOperations.ClosableURLClassLoader
- All Implemented Interfaces:
AutoCloseable
- Enclosing class:
PrivilegedOperations
public static record PrivilegedOperations.ClosableURLClassLoader(URLClassLoader classloader)
extends Record
implements AutoCloseable
-
Constructor Summary
ConstructorsConstructorDescriptionClosableURLClassLoader(URLClassLoader classloader) Creates an instance of aClosableURLClassLoaderrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theclassloaderrecord component.voidclose()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ClosableURLClassLoader
Creates an instance of aClosableURLClassLoaderrecord class.- Parameters:
classloader- the value for theclassloaderrecord component
-
-
Method Details
-
close
- Specified by:
closein interfaceAutoCloseable- Throws:
Exception
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
classloader
Returns the value of theclassloaderrecord component.- Returns:
- the value of the
classloaderrecord component
-